diff --git a/code/game/area/CC_areas_vr.dm b/code/game/area/CC_areas_vr.dm
new file mode 100644
index 0000000000..170fd71cc6
--- /dev/null
+++ b/code/game/area/CC_areas_vr.dm
@@ -0,0 +1,11 @@
+/area/centcom/terminal/tramfluff
+ name = "Orange Line Tram"
+ icon_state = "centcom_dock"
+ ambience = AMBIENCE_ARRIVALS
+ base_turf = /turf/simulated/floor/tiled/techfloor/grid
+
+/area/centcom/terminal/shuttlefluff
+ name = "NRV Transfer Shuttle"
+ icon_state = "centcom_dock"
+ ambience = AMBIENCE_ARRIVALS
+ base_turf = /turf/simulated/floor/reinforced
diff --git a/code/game/objects/effects/job_start_landmarks.dm b/code/game/objects/effects/job_start_landmarks.dm
new file mode 100644
index 0000000000..56711c46f8
--- /dev/null
+++ b/code/game/objects/effects/job_start_landmarks.dm
@@ -0,0 +1,92 @@
+/obj/effect/landmark/start/captain
+ name = "Site Manager"
+/obj/effect/landmark/start/hop
+ name = "Head of Personnel"
+/obj/effect/landmark/start/commandsecretary
+ name = "Command Secretary"
+/obj/effect/landmark/start/hos
+ name = "Head of Security"
+/obj/effect/landmark/start/warden
+ name = "Warden"
+/obj/effect/landmark/start/detective
+ name = "Detective"
+/obj/effect/landmark/start/security
+ name = "Security Officer"
+/obj/effect/landmark/start/ce
+ name = "Chief Engineer"
+/obj/effect/landmark/start/atmostech
+ name = "Atmospheric Technician"
+/obj/effect/landmark/start/engineer
+ name = "Station Engineer"
+/obj/effect/landmark/start/cmo
+ name = "Chief Medical Officer"
+/obj/effect/landmark/start/chemist
+ name = "Chemist"
+/obj/effect/landmark/start/medical
+ name = "Medical Doctor"
+/obj/effect/landmark/start/paramedic
+ name = "Paramedic"
+/obj/effect/landmark/start/psych
+ name = "Psychiatrist"
+/obj/effect/landmark/start/rd
+ name = "Research Director"
+/obj/effect/landmark/start/roboticist
+ name = "Roboticist"
+/obj/effect/landmark/start/scientist
+ name = "Scientist"
+/obj/effect/landmark/start/xenobio
+ name = "Xenobiologist"
+/obj/effect/landmark/start/xenobot
+ name = "Xenobotanist"
+/obj/effect/landmark/start/qm
+ name = "Quartermaster"
+/obj/effect/landmark/start/cargo
+ name = "Cargo Technician"
+/obj/effect/landmark/start/miner
+ name = "Shaft Miner"
+/obj/effect/landmark/start/pf
+ name = "Pathfinder"
+/obj/effect/landmark/start/explorer
+ name = "Explorer"
+/obj/effect/landmark/start/fieldmedic
+ name = "Field Medic"
+/obj/effect/landmark/start/bartender
+ name = "Bartender"
+/obj/effect/landmark/start/botanist
+ name = "Botanist"
+/obj/effect/landmark/start/chaplain
+ name = "Chaplain"
+/obj/effect/landmark/start/chef
+ name = "Chef"
+/obj/effect/landmark/start/clown
+ name = "Clown"
+/obj/effect/landmark/start/entertainer
+ name = "Entertainer"
+/obj/effect/landmark/start/intern
+ name = "Intern"
+/obj/effect/landmark/start/iaa
+ name = "Internal Affairs Agent"
+/obj/effect/landmark/start/janitor
+ name = "Janitor"
+/obj/effect/landmark/start/librarian
+ name = "Librarian"
+/obj/effect/landmark/start/mime
+ name = "Mime"
+/obj/effect/landmark/start/pilot
+ name = "Pilot"
+/obj/effect/landmark/start/visitor
+ name = "Visitor"
+/obj/effect/landmark/start/ai
+ name = "AI"
+/obj/effect/landmark/start/cyborg
+ name = "Cyborg"
+/obj/effect/landmark/start/taloncap
+ name = "Talon Captain"
+/obj/effect/landmark/start/talondoc
+ name = "Talon Doctor"
+/obj/effect/landmark/start/taloneng
+ name = "Talon Engineer"
+/obj/effect/landmark/start/talonguard
+ name = "Talon Guard"
+/obj/effect/landmark/start/talonpilot
+ name = "Talon Pilot"
diff --git a/code/game/objects/structures/crates_lockers/closets/misc_vr.dm b/code/game/objects/structures/crates_lockers/closets/misc_vr.dm
index da49626d58..a3474cefca 100644
--- a/code/game/objects/structures/crates_lockers/closets/misc_vr.dm
+++ b/code/game/objects/structures/crates_lockers/closets/misc_vr.dm
@@ -93,7 +93,7 @@
*/
/obj/structure/closet/secure_closet/pathfinder
name = "pathfinder locker"
- req_access = list(access_gateway)
+ req_access = list(access_pathfinder)
closet_appearance = /decl/closet_appearance/secure_closet/expedition/pathfinder
starts_with = list(
@@ -113,7 +113,6 @@
/obj/item/device/geiger,
/obj/item/weapon/cell/device,
/obj/item/device/radio,
- /obj/item/device/bluespaceradio/tether_prelinked,
/obj/item/stack/marker_beacon/thirty,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/weapon/material/knife/machete/deluxe,
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
index 028f67f06d..b5e3e39150 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
@@ -49,3 +49,15 @@
else
add_overlay("open")
+//VOREStation Add Start
+/obj/structure/closet/secure_closet/guncabinet/excursion
+ name = "expedition weaponry cabinet"
+ req_one_access = list(access_explorer,access_armory)
+
+/obj/structure/closet/secure_closet/guncabinet/excursion/New()
+ ..()
+ for(var/i = 1 to 2)
+ new /obj/item/weapon/gun/energy/locked/frontier(src)
+ for(var/i = 1 to 2)
+ new /obj/item/weapon/gun/energy/locked/frontier/holdout(src)
+//VOREStation Add End
\ No newline at end of file
diff --git a/code/game/turfs/flooring/flooring_decals_vr.dm b/code/game/turfs/flooring/flooring_decals_vr.dm
index ada7aba806..80b26db2e5 100644
--- a/code/game/turfs/flooring/flooring_decals_vr.dm
+++ b/code/game/turfs/flooring/flooring_decals_vr.dm
@@ -134,6 +134,14 @@
/obj/effect/floor_decal/emblem/itgdauntless
icon_state = "itgdauntless"
+/obj/effect/floor_decal/emblem/stellardelight
+ icon_state = "stellar_delight"
+/obj/effect/floor_decal/emblem/stellardelight/center
+ icon_state = "stellar_delight_center"
+
+/obj/effect/floor_decal/emblem/orangeline
+ icon_state = "orange_line"
+
/obj/effect/floor_decal/emblem/aronai
icon_state = "aronai"
diff --git a/code/game/turfs/simulated/angled_walls_and_doors_department_colors.dm b/code/game/turfs/simulated/angled_walls_and_doors_department_colors.dm
new file mode 100644
index 0000000000..84f762944a
--- /dev/null
+++ b/code/game/turfs/simulated/angled_walls_and_doors_department_colors.dm
@@ -0,0 +1,329 @@
+/turf/simulated/wall/bay/steel
+ desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#3d5e80"
+/turf/simulated/wall/bay/red
+ desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#8c1d11"
+/turf/simulated/wall/bay/brown
+ desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#785134"
+/turf/simulated/wall/bay/purple
+ desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#5a19a8"
+/turf/simulated/wall/bay/blue
+ desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#2e2aa1"
+/turf/simulated/wall/bay/orange
+ desc = "It has a orange stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#e6ab22"
+/turf/simulated/wall/bay/white
+ desc = "It has a white stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#ffffff"
+/turf/simulated/wall/bay/black
+ desc = "It has a black stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#2e2e2e"
+/turf/simulated/wall/bay/green
+ desc = "It has a green stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#00ab03"
+/////R-Wall
+/turf/simulated/wall/bay/r_wall/steel
+ desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#3d5e80"
+/turf/simulated/wall/bay/r_wall/red
+ desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#8c1d11"
+/turf/simulated/wall/bay/r_wall/brown
+ desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#785134"
+/turf/simulated/wall/bay/r_wall/purple
+ desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#5a19a8"
+/turf/simulated/wall/bay/r_wall/blue
+ desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#2e2aa1"
+/turf/simulated/wall/bay/r_wall/orange
+ desc = "It has a orange stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#e6ab22"
+/turf/simulated/wall/bay/r_wall/white
+ desc = "It has a white stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#ffffff"
+/turf/simulated/wall/bay/r_wall/black
+ desc = "It has a black stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#2e2e2e"
+/turf/simulated/wall/bay/r_wall/green
+ desc = "It has a green stripe! A huge chunk of metal used to seperate rooms."
+ stripe_color = "#00ab03"
+/////Low wall
+/obj/structure/low_wall/bay/steel
+ desc = "It has a steel stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#3d5e80"
+/obj/structure/low_wall/bay/red
+ desc = "It has a red stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#8c1d11"
+/obj/structure/low_wall/bay/brown
+ desc = "It has a brown stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#785134"
+/obj/structure/low_wall/bay/purple
+ desc = "It has a purple stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#5a19a8"
+/obj/structure/low_wall/bay/blue
+ desc = "It has a blue stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#2e2aa1"
+/obj/structure/low_wall/bay/orange
+ desc = "It has a orange stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#e6ab22"
+/obj/structure/low_wall/bay/white
+ desc = "It has a white stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#ffffff"
+/obj/structure/low_wall/bay/black
+ desc = "It has a black stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#2e2e2e"
+/obj/structure/low_wall/bay/green
+ desc = "It has a green stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#00ab03"
+/////R-Low wall
+/obj/structure/low_wall/bay/reinforced/steel
+ desc = "It has a steel stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#3d5e80"
+/obj/structure/low_wall/bay/reinforced/red
+ desc = "It has a red stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#8c1d11"
+/obj/structure/low_wall/bay/reinforced/brown
+ desc = "It has a brown stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#785134"
+/obj/structure/low_wall/bay/reinforced/purple
+ desc = "It has a purple stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#5a19a8"
+/obj/structure/low_wall/bay/reinforced/blue
+ desc = "It has a blue stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#2e2aa1"
+/obj/structure/low_wall/bay/reinforced/orange
+ desc = "It has a orange stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#e6ab22"
+/obj/structure/low_wall/bay/reinforced/white
+ desc = "It has a white stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#ffffff"
+/obj/structure/low_wall/bay/reinforced/black
+ desc = "It has a black stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#2e2e2e"
+/obj/structure/low_wall/bay/reinforced/green
+ desc = "It has a green stripe! A low wall section which serves as the base of windows, amongst other things."
+ stripe_color = "#00ab03"
+/////BAY DOORS
+/obj/machinery/door/airlock/angled_bay/standard/color/common
+ name = "Airlock"
+ door_color = "#9c9c9c"
+ fill_color = "#5c5c5c"
+ stripe_color = "#89bd66"
+/obj/machinery/door/airlock/angled_bay/standard/glass/common
+ name = "Glass Airlock"
+ door_color = "#9c9c9c"
+ stripe_color = "#89bd66"
+/obj/machinery/door/airlock/angled_bay/hatch/common
+ name = "maintenance access"
+ stripe_color = "#89bd66"
+/obj/machinery/door/airlock/angled_bay/double/glass/common
+ name = "Glass Airlock"
+ door_color = "#9c9c9c"
+ stripe_color = "#89bd66"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/silver
+ name = "Airlock"
+ door_color = "#9fccc7"
+ fill_color = "#333333"
+ stripe_color = "#ffffff"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/research
+ name = "Research Airlock"
+ req_access = list(47)
+ door_color = "#ffffff"
+ fill_color = "#ead9ff"
+ stripe_color = "#5a19a8"
+/obj/machinery/door/airlock/angled_bay/standard/glass/research
+ name = "Glass Research Airlock"
+ req_access = list(47)
+ door_color = "#ffffff"
+ stripe_color = "#5a19a8"
+/obj/machinery/door/airlock/angled_bay/hatch/research
+ name = "maintenance access"
+ req_access = list(47)
+ stripe_color = "#5a19a8"
+/obj/machinery/door/airlock/angled_bay/double/glass/research
+ name = "Glass Research Airlock"
+ req_access = list(47)
+ door_color = "#ffffff"
+ stripe_color = "#5a19a8"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/medical
+ name = "Medical Airlock"
+ req_access = list(5)
+ door_color = "#ffffff"
+ fill_color = "#ead9ff"
+ stripe_color = "#5a96bb"
+/obj/machinery/door/airlock/angled_bay/standard/glass/medical
+ name = "Glass Medical Airlock"
+ req_access = list(5)
+ door_color = "#ffffff"
+ stripe_color = "#5a96bb"
+/obj/machinery/door/airlock/angled_bay/hatch/medical
+ name = "maintenance access"
+ req_access = list(5)
+ stripe_color = "#5a96bb"
+/obj/machinery/door/airlock/angled_bay/double/glass/medical
+ name = "Glass Medical Airlock"
+ req_access = list(5)
+ door_color = "#ffffff"
+ stripe_color = "#5a96bb"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/explo
+ name = "Exploration Airlock"
+ req_one_access = list(19,43,67)
+ door_color = "#333333"
+ stripe_color = "#5a19a8"
+/obj/machinery/door/airlock/angled_bay/standard/glass/explo
+ name = "Glass Exploration Airlock"
+ req_one_access = list(19,43,67)
+ door_color = "#333333"
+ stripe_color = "#5a19a8"
+/obj/machinery/door/airlock/angled_bay/hatch/explo
+ name = "maintenance access"
+ req_one_access = list(19,43,67)
+ stripe_color = "#5a19a8"
+/obj/machinery/door/airlock/angled_bay/double/glass/explo
+ name = "Glass Exploration Airlock"
+ req_one_access = list(19,43,67)
+ door_color = "#333333"
+ stripe_color = "#5a19a8"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/security
+ name = "Security Airlock"
+ req_access = list(1)
+ door_color = "#8c1d11"
+ fill_color = "#854a44"
+ stripe_color = "#d27428"
+/obj/machinery/door/airlock/angled_bay/standard/glass/security
+ name = "Glass Security Airlock"
+ req_access = list(1)
+ door_color = "#8c1d11"
+ stripe_color = "#d27428"
+/obj/machinery/door/airlock/angled_bay/hatch/security
+ name = "maintenance access"
+ req_access = list(1)
+ stripe_color = "#8c1d11"
+/obj/machinery/door/airlock/angled_bay/double/glass/security
+ name = "Glass Security Airlock"
+ req_access = list(1)
+ door_color = "#8c1d11"
+ stripe_color = "#d27428"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/engineering
+ name = "Engineering Airlock"
+ req_access = list(10)
+ door_color = "#e6ab22"
+ fill_color = "#877242"
+ stripe_color = "#913013"
+/obj/machinery/door/airlock/angled_bay/standard/glass/engineering
+ name = "Glass Engineering Airlock"
+ req_access = list(10)
+ door_color = "#e6ab22"
+ stripe_color = "#913013"
+/obj/machinery/door/airlock/angled_bay/hatch/engineering
+ name = "maintenance access"
+ req_access = list(10)
+ stripe_color = "#e6ab22"
+/obj/machinery/door/airlock/angled_bay/double/glass/engineering
+ name = "Glass Engineering Airlock"
+ req_access = list(10)
+ door_color = "#e6ab22"
+ stripe_color = "#913013"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/atmos
+ name = "Atmospherics Airlock"
+ req_access = list(24)
+ door_color = "#e6ab22"
+ fill_color = "#877242"
+ stripe_color = "#2ebfbd"
+/obj/machinery/door/airlock/angled_bay/standard/glass/atmos
+ name = "Glass Atmospherics Airlock"
+ req_access = list(24)
+ door_color = "#e6ab22"
+ stripe_color = "#2ebfbd"
+/obj/machinery/door/airlock/angled_bay/hatch/atmos
+ name = "maintenance access"
+ req_access = list(24)
+ stripe_color = "#e6ab22"
+/obj/machinery/door/airlock/angled_bay/double/glass/atmos
+ name = "Glass Atmospherics Airlock"
+ req_access = list(24)
+ door_color = "#e6ab22"
+ stripe_color = "#2ebfbd"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/cargo
+ name = "Cargo Airlock"
+ req_access = list(31)
+ door_color = "#a6753d"
+ fill_color = "#75736f"
+ stripe_color = "#3b2b1a"
+/obj/machinery/door/airlock/angled_bay/standard/glass/atmos
+ name = "Glass Cargo Airlock"
+ req_access = list(31)
+ door_color = "#a6753d"
+ stripe_color = "#3b2b1a"
+/obj/machinery/door/airlock/angled_bay/hatch/atmos
+ name = "maintenance access"
+ req_access = list(31)
+ stripe_color = "#3b2b1a"
+/obj/machinery/door/airlock/angled_bay/double/glass/atmos
+ name = "Glass Cargo Airlock"
+ req_access = list(31)
+ door_color = "#a6753d"
+ stripe_color = "#3b2b1a"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/command
+ name = "Command Airlock"
+ req_access = list(19)
+ door_color = "#323d80"
+ stripe_color = "#f7d35c"
+/obj/machinery/door/airlock/angled_bay/standard/glass/command
+ name = "Glass Command Airlock"
+ req_access = list(19)
+ door_color = "#323d80"
+ stripe_color = "#f7d35c"
+/obj/machinery/door/airlock/angled_bay/hatch/command
+ name = "maintenance access"
+ req_access = list(19)
+ stripe_color = "#323d80"
+/obj/machinery/door/airlock/angled_bay/double/glass/command
+ name = "Glass Command Airlock"
+ req_access = list(19)
+ door_color = "#323d80"
+ stripe_color = "#f7d35c"
+
+/obj/machinery/door/airlock/angled_bay/standard/color/chaplain
+ name = "Chaplain Airlock"
+ req_access = list(26)
+ door_color = "#2e2e2e"
+ fill_color = "#2e2e2e"
+ stripe_color = "#deaf43"
+/obj/machinery/door/airlock/angled_bay/standard/glass/chaplain
+ name = "Glass Chaplain Airlock"
+ req_access = list(26)
+ door_color = "#2e2e2e"
+ stripe_color = "#deaf43"
+/obj/machinery/door/airlock/angled_bay/double/glass/chaplain
+ name = "Glass Chaplain Airlock"
+ req_access = list(26)
+ door_color = "#2e2e2e"
+ stripe_color = "#deaf43"
+
+/obj/machinery/door/airlock/angled_bay/external/red
+ name = "External Airlock"
+ door_color = "#822a1e"
+/obj/machinery/door/airlock/angled_bay/external/glass/red
+ name = "External Airlock"
+ door_color = "#822a1e"
+
+/obj/machinery/door/airlock/angled_bay/standard/freezer
+ name = "Freezer"
+ req_access = list(28)
+ door_color = "#ffffff"
diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm
index f0422f4116..ffd7033c4d 100644
--- a/code/modules/asset_cache/asset_list_items.dm
+++ b/code/modules/asset_cache/asset_list_items.dm
@@ -532,5 +532,9 @@
"tether_nanomap_z10.png" = 'icons/_nanomaps/tether_nanomap_z10.png',
"tether_nanomap_z13.png" = 'icons/_nanomaps/tether_nanomap_z13.png',
"tether_nanomap_z14.png" = 'icons/_nanomaps/tether_nanomap_z14.png',
+ "stellardelight_nanomap_z1.png" = 'icons/_nanomaps/sd_deck1.png',
+ "stellardelight_nanomap_z2.png" = 'icons/_nanomaps/sd_deck2.png',
+ "stellardelight_nanomap_z3.png" = 'icons/_nanomaps/sd_deck3.png',
+
// VOREStation Edit End
)
\ No newline at end of file
diff --git a/code/modules/mob/living/simple_mob/sd_pets.dm b/code/modules/mob/living/simple_mob/sd_pets.dm
new file mode 100644
index 0000000000..855b2121d0
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/sd_pets.dm
@@ -0,0 +1,118 @@
+/mob/living/simple_mob/animal/passive/fox/syndicate/aipet
+ name = "R3N4-ULT"
+ desc = "A curiously devious robotic fox!"
+ devourable = 0
+ digestable = 0
+
+/datum/category_item/catalogue/fauna/catslug/tulidaan
+ name = "Alien Wildlife - Catslug - Tulidaan"
+ desc = "A resident of the Stellar Delight. Tulidaan usually\
+ inhabits the reading rooms. - \
+ The Catslug is an omnivorous terrestrial creature.\
+ Exhibiting properties of both a cat and a slug (hence its name)\
+ it moves somewhat awkwardly. However, the unique qualities of\
+ its body make it exceedingly flexible and smooth, allowing it to\
+ wiggle into and move effectively in even extremely tight spaces.\
+ Additionally, it has surprisingly capable hands, and moves quite\
+ well on two legs or four. Caution is advised when interacting\
+ with these creatures, they are quite intelligent, and proficient\
+ tool users."
+ value = CATALOGUER_REWARD_TRIVIAL //Worth less points since it lives on the ship
+
+/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan
+ name = "Tulidaan"
+ desc = "Watcher of the Seven. Thinker, knower."
+ icon_state = "tulidaan"
+ digestable = 0
+ catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/tulidaan)
+ holder_type = /obj/item/weapon/holder/catslug/tulidaan
+
+/obj/item/weapon/holder/catslug/tulidaan
+ item_state = "tulidaan"
+
+/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy
+ name = "Leggy"
+ desc = "Don't make fun, they have a condition."
+ digestable = 0
+
+/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy/New()
+ ..()
+ name = initial(name)
+ desc = initial(desc)
+
+/mob/living/simple_mob/animal/passive/mouse/brown/feivel
+ name = "Feivel"
+ desc = "Heading out west wasn't far enough, so he's going to space!"
+ digestable = 0
+
+/mob/living/simple_mob/animal/passive/mouse/brown/feivel/New()
+ ..()
+ name = initial(name)
+ desc = initial(desc)
+
+/mob/living/simple_mob/animal/passive/cat/jones
+ name = "Jones"
+ desc = "A polite, well groomed patchy colored feline. Doesn't like his cat carrier."
+ devourable = 0
+ digestable = 0
+ holder_type = /obj/item/weapon/holder/cat/jones
+
+/obj/item/weapon/holder/cat/jones
+ item_state = "cat2"
+
+
+/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle
+ name = "Nulle"
+ desc = "A guiding light through the black!"
+ devourable = 0
+ digestable = 0
+
+/mob/living/simple_mob/animal/passive/tindalos/twigs
+ name = "Twigs"
+ desc = "Its eyes gleam with untold knowings..."
+ devourable = 0
+ digestable = 0
+
+/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman
+ name = "Iceman"
+ desc = "You wanna know who the best is? That's him. Iceman. Ice cold, no mistakes."
+ devourable = 0
+ digestable = 0
+
+/mob/living/simple_mob/animal/passive/mimepet/gregory
+ name = "Gregory XXVI Esq."
+ desc = "It looks very distinguished."
+ devourable = 0
+ digestable = 0
+
+/mob/living/simple_mob/vore/fennec/bridgette
+ name = "Bridgette"
+ desc = "Bridgette the brig fox! She glares at you like you did something wrong!"
+ devourable = 0
+ digestable = 0
+
+/datum/category_item/catalogue/fauna/otie/cocoa
+ name = "Creature - Otie - Cocoa"
+ desc = "A resident of the Stellar Delight. Cocoa usually inhabits the bar, and is very friendly. - \
+ A bioengineered longdog, the otie is very long, and very cute, depending on if you like dogs, \
+ especially long ones. They are black-and-grey furred, typically, and tanky, hard to kill. \
+ They seem hostile at first, but are also tame-able if you can approach one. Nipnipnip-ACK \
+ **the catalogue entry ends here.**"
+ value = CATALOGUER_REWARD_TRIVIAL //Worth less points since it lives on the ship
+
+
+/mob/living/simple_mob/otie/red/chubby/cocoa
+ name = "Cocoa"
+ desc = "A good boi, eats the scraps when you're not looking."
+ devourable = 0
+ digestable = 0
+ faction = "bar"
+ mob_bump_flag = 32
+ ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/otie/cocoa
+ catalogue_data = list(/datum/category_item/catalogue/fauna/otie/cocoa)
+
+
+/datum/ai_holder/simple_mob/melee/evasive/otie/cocoa
+ hostile = 0
+ retaliate = 0
+ violent_breakthrough = 0
\ No newline at end of file
diff --git a/code/modules/xenoarcheaology/tools/equipment.dm b/code/modules/xenoarcheaology/tools/equipment.dm
index 2cdc3e5d0e..cd4a3278f2 100644
--- a/code/modules/xenoarcheaology/tools/equipment.dm
+++ b/code/modules/xenoarcheaology/tools/equipment.dm
@@ -33,3 +33,21 @@
icon_state = "cespace_helmet"
item_state = "cespace_helmet"
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100)
+
+//VOREStation Add Start
+/obj/item/clothing/suit/space/anomaly/heat
+ name = "Heat Adapted Excavation suit"
+ desc = "A pressure resistant excavation suit partially capable of insulating against exotic alien energies and heat."
+ heat_protection = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS
+ max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE+1000
+ min_pressure_protection = 0 * ONE_ATMOSPHERE
+ max_pressure_protection = 5* ONE_ATMOSPHERE
+
+/obj/item/clothing/head/helmet/space/anomaly/heat
+ name = "Heat Adapted Excavation hood"
+ desc = "A pressure resistant excavation hood partially capable of insulating against exotic alien energies and heat."
+ heat_protection = HEAD|FACE|EYES
+ max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE+1000
+ min_pressure_protection = 0 * ONE_ATMOSPHERE
+ max_pressure_protection = 5* ONE_ATMOSPHERE
+//VOREStation Add End
\ No newline at end of file
diff --git a/icons/_nanomaps/sd_deck1.png b/icons/_nanomaps/sd_deck1.png
new file mode 100644
index 0000000000..6b2be044b8
Binary files /dev/null and b/icons/_nanomaps/sd_deck1.png differ
diff --git a/icons/_nanomaps/sd_deck2.png b/icons/_nanomaps/sd_deck2.png
new file mode 100644
index 0000000000..08673c8a94
Binary files /dev/null and b/icons/_nanomaps/sd_deck2.png differ
diff --git a/icons/_nanomaps/sd_deck3.png b/icons/_nanomaps/sd_deck3.png
new file mode 100644
index 0000000000..bc46e8a5b0
Binary files /dev/null and b/icons/_nanomaps/sd_deck3.png differ
diff --git a/icons/misc/loading.dmi b/icons/misc/loading.dmi
index 8001b413fb..4935d5c71a 100644
Binary files a/icons/misc/loading.dmi and b/icons/misc/loading.dmi differ
diff --git a/icons/misc/title_vr.dmi b/icons/misc/title_vr.dmi
index 7089d239e1..d04fb979f3 100644
Binary files a/icons/misc/title_vr.dmi and b/icons/misc/title_vr.dmi differ
diff --git a/icons/obj/overmap_vr.dmi b/icons/obj/overmap_vr.dmi
index b31599d5a6..44ea512b34 100644
Binary files a/icons/obj/overmap_vr.dmi and b/icons/obj/overmap_vr.dmi differ
diff --git a/icons/turf/areas_vr.dmi b/icons/turf/areas_vr.dmi
index dc58966d83..bd8547cd30 100644
Binary files a/icons/turf/areas_vr.dmi and b/icons/turf/areas_vr.dmi differ
diff --git a/icons/turf/flooring/decals_vr.dmi b/icons/turf/flooring/decals_vr.dmi
index 29a4bb508f..af18f8d6c5 100644
Binary files a/icons/turf/flooring/decals_vr.dmi and b/icons/turf/flooring/decals_vr.dmi differ
diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm
index 460771bf9c..9042744032 100644
--- a/maps/expedition_vr/aerostat/_aerostat.dm
+++ b/maps/expedition_vr/aerostat/_aerostat.dm
@@ -174,42 +174,50 @@ VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor/ignore_mapgen)
base_turf = /turf/simulated/floor/plating/virgo2
dynamic_lighting = TRUE
-/area/tether_away/aerostat/surface
+/area/offmap/aerostat/surface
flags = RAD_SHIELDED
ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg')
base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2
-/area/tether_away/aerostat/surface/explored
+/area/offmap/aerostat/surface/explored
name = "Away Mission - Aerostat Surface (E)"
icon_state = "explored"
+ dynamic_lighting = FALSE
-/area/tether_away/aerostat/surface/unexplored
+/area/offmap/aerostat/surface/shuttleconsole
+ name = "Away Mission - Aerostat Surface Console"
+ icon_state = "explored"
+ dynamic_lighting = FALSE
+ requires_power = FALSE
+
+/area/offmap/aerostat/surface/unexplored
name = "Away Mission - Aerostat Surface (UE)"
icon_state = "unexplored"
+ dynamic_lighting = FALSE
VIRGO2_TURF_CREATE(/turf/simulated/floor/hull)
-/area/tether_away/aerostat/surface/outpost
+/area/offmap/aerostat/surface/outpost
requires_power = TRUE
dynamic_lighting = TRUE
ambience = null
-/area/tether_away/aerostat/surface/outpost/backroom
+/area/offmap/aerostat/surface/outpost/backroom
name = "V4 Outpost - Research Area"
-/area/tether_away/aerostat/surface/outpost/hallway
+/area/offmap/aerostat/surface/outpost/hallway
name = "V4 Outpost - Hallway"
-/area/tether_away/aerostat/surface/outpost/cafe
+/area/offmap/aerostat/surface/outpost/cafe
name = "V4 Outpost - Cafe"
-/area/tether_away/aerostat/surface/outpost/park
+/area/offmap/aerostat/surface/outpost/park
name = "V4 Outpost - Park"
-/area/tether_away/aerostat/surface/outpost/officerone
+/area/offmap/aerostat/surface/outpost/officerone
name = "V4 Outpost - Officer's Quarters 1"
-/area/tether_away/aerostat/surface/outpost/officertwo
+/area/offmap/aerostat/surface/outpost/officertwo
name = "V4 Outpost - Officer's Quarters 2"
-/area/tether_away/aerostat/surface/outpost/barracks
+/area/offmap/aerostat/surface/outpost/barracks
name = "V4 Outpost - Barracks"
-/area/tether_away/aerostat/surface/outpost/airlock
+/area/offmap/aerostat/surface/outpost/airlock
name = "V4 Outpost - Airlock"
-/area/tether_away/aerostat/surface/outpost/powerroom
+/area/offmap/aerostat/surface/outpost/powerroom
name = "V4 Outpost - Power Room"
-/area/tether_away/aerostat/surface/outpost/guardpost
+/area/offmap/aerostat/surface/outpost/guardpost
name = "V4 Outpost - Guard Post"
diff --git a/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm
new file mode 100644
index 0000000000..15108a8fa1
--- /dev/null
+++ b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm
@@ -0,0 +1,345 @@
+#include "../../submaps/pois_vr/aerostat/virgo2.dm"
+
+
+/obj/effect/overmap/visitable/sector/virgo2
+ name = "Virgo 2"
+ desc = "Includes the Remmi Aerostat and associated ground mining complexes."
+ scanner_desc = @{"[i]Stellar Body[/i]: Virgo 2
+[i]Class[/i]: R-Class Planet
+[i]Habitability[/i]: Low (High Temperature, Toxic Atmosphere)
+[b]Notice[/b]: Planetary environment not suitable for life. Landing may be hazardous."}
+ icon_state = "globe"
+ in_space = 0
+ initial_generic_waypoints = list("aerostat_n_w", "aerostat_n_n","aerostat_n_e","aerostat_s_w","aerostat_s_s","aerostat_s_e","aerostat_west","aerostat_east")
+ extra_z_levels = list(Z_LEVEL_AEROSTAT_SURFACE)
+ known = TRUE
+ icon_state = "chlorine"
+
+/obj/effect/overmap/visitable/sector/virgo2/Initialize()
+ for(var/obj/effect/overmap/visitable/ship/stellar_delight/sd in world)
+ docking_codes = sd.docking_codes
+ . = ..()
+
+// -- Datums -- //
+
+/datum/shuttle/autodock/ferry/aerostat
+ name = "Aerostat Ferry"
+ shuttle_area = /area/shuttle/aerostat
+ docking_controller_tag = "aerostat_shuttle_airlock"
+ warmup_time = 10 //want some warmup time so people can cancel.
+ landmark_station = "aerostat_east"
+ landmark_offsite = "aerostat_surface"
+
+/datum/random_map/noise/ore/virgo2
+ descriptor = "virgo 2 ore distribution map"
+ deep_val = 0.2
+ rare_val = 0.1
+
+/datum/random_map/noise/ore/virgo2/check_map_sanity()
+ return 1 //Totally random, but probably beneficial.
+
+// -- Objs -- //
+
+/obj/machinery/computer/shuttle_control/aerostat_shuttle
+ name = "aerostat ferry control console"
+ shuttle_tag = "Aerostat Ferry"
+
+/obj/tether_away_spawner/aerostat_inside
+ name = "Aerostat Indoors Spawner"
+ faction = "aerostat_inside"
+ atmos_comp = TRUE
+ prob_spawn = 100
+ prob_fall = 50
+ //guard = 20
+ mobs_to_pick_from = list(
+ /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic = 3,
+ /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion = 1,
+ /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser = 3,
+ /mob/living/simple_mob/vore/aggressive/corrupthound = 1
+ )
+
+/obj/tether_away_spawner/aerostat_surface
+ name = "Aerostat Surface Spawner"
+ faction = "aerostat_surface"
+ atmos_comp = TRUE
+ prob_spawn = 100
+ prob_fall = 50
+ //guard = 20
+ mobs_to_pick_from = list(
+ /mob/living/simple_mob/animal/space/jelly = 6,
+ /mob/living/simple_mob/mechanical/viscerator = 6,
+ /mob/living/simple_mob/vore/aggressive/corrupthound = 3,
+ /mob/living/simple_mob/vore/oregrub = 2,
+ /mob/living/simple_mob/vore/oregrub/lava = 1
+ )
+
+/obj/structure/old_roboprinter
+ name = "old drone fabricator"
+ desc = "Built like a tank, still working after so many years."
+ icon = 'icons/obj/machines/drone_fab.dmi'
+ icon_state = "drone_fab_idle"
+ anchored = TRUE
+ density = TRUE
+
+/obj/structure/metal_edge
+ name = "metal underside"
+ desc = "A metal wall that extends downwards."
+ icon = 'icons/turf/cliff.dmi'
+ icon_state = "metal"
+ anchored = TRUE
+ density = FALSE
+
+// -- Turfs -- //
+
+//Atmosphere properties
+#define VIRGO2_ONE_ATMOSPHERE 312.1 //kPa
+#define VIRGO2_AVG_TEMP 612 //kelvin
+
+#define VIRGO2_PER_N2 0.10 //percent
+#define VIRGO2_PER_O2 0.03
+#define VIRGO2_PER_N2O 0.00 //Currently no capacity to 'start' a turf with this. See turf.dm
+#define VIRGO2_PER_CO2 0.87
+#define VIRGO2_PER_PHORON 0.00
+
+//Math only beyond this point
+#define VIRGO2_MOL_PER_TURF (VIRGO2_ONE_ATMOSPHERE*CELL_VOLUME/(VIRGO2_AVG_TEMP*R_IDEAL_GAS_EQUATION))
+#define VIRGO2_MOL_N2 (VIRGO2_MOL_PER_TURF * VIRGO2_PER_N2)
+#define VIRGO2_MOL_O2 (VIRGO2_MOL_PER_TURF * VIRGO2_PER_O2)
+#define VIRGO2_MOL_N2O (VIRGO2_MOL_PER_TURF * VIRGO2_PER_N2O)
+#define VIRGO2_MOL_CO2 (VIRGO2_MOL_PER_TURF * VIRGO2_PER_CO2)
+#define VIRGO2_MOL_PHORON (VIRGO2_MOL_PER_TURF * VIRGO2_PER_PHORON)
+
+//Turfmakers
+#define VIRGO2_SET_ATMOS nitrogen=VIRGO2_MOL_N2;oxygen=VIRGO2_MOL_O2;carbon_dioxide=VIRGO2_MOL_CO2;phoron=VIRGO2_MOL_PHORON;temperature=VIRGO2_AVG_TEMP
+#define VIRGO2_TURF_CREATE(x) x/virgo2/nitrogen=VIRGO2_MOL_N2;x/virgo2/oxygen=VIRGO2_MOL_O2;x/virgo2/carbon_dioxide=VIRGO2_MOL_CO2;x/virgo2/phoron=VIRGO2_MOL_PHORON;x/virgo2/temperature=VIRGO2_AVG_TEMP;x/virgo2/color="#eacd7c"
+
+/turf/unsimulated/floor/sky/virgo2_sky
+ name = "virgo 2 atmosphere"
+ desc = "Be careful where you step!"
+ color = "#eacd7c"
+ VIRGO2_SET_ATMOS
+
+/turf/unsimulated/floor/sky/virgo2_sky/Initialize()
+ skyfall_levels = list(z+1)
+ . = ..()
+
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2
+ VIRGO2_SET_ATMOS
+ color = "#eacd7c"
+
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol
+ color = null
+
+VIRGO2_TURF_CREATE(/turf/unsimulated/wall/planetary)
+
+VIRGO2_TURF_CREATE(/turf/simulated/wall)
+VIRGO2_TURF_CREATE(/turf/simulated/floor/plating)
+VIRGO2_TURF_CREATE(/turf/simulated/floor/bluegrid)
+VIRGO2_TURF_CREATE(/turf/simulated/floor/tiled/techfloor)
+
+VIRGO2_TURF_CREATE(/turf/simulated/mineral)
+/////Copied from Virgo3b's ore generation, since there was concern about not being able to get the ore they need on V2
+/turf/simulated/mineral/virgo2/make_ore(var/rare_ore)
+ if(mineral)
+ return
+ var/mineral_name
+ if(rare_ore)
+ mineral_name = pickweight(list(
+ "marble" = 3,
+ "uranium" = 10,
+ "platinum" = 10,
+ "hematite" = 20,
+ "carbon" = 20,
+ "diamond" = 1,
+ "gold" = 8,
+ "silver" = 8,
+ "phoron" = 18,
+ "lead" = 2,
+ "verdantium" = 1))
+ else
+ mineral_name = pickweight(list(
+ "marble" = 2,
+ "uranium" = 5,
+ "platinum" = 5,
+ "hematite" = 35,
+ "carbon" = 35,
+ "gold" = 3,
+ "silver" = 3,
+ "phoron" = 25,
+ "lead" = 1))
+
+ if(mineral_name && (mineral_name in GLOB.ore_data))
+ mineral = GLOB.ore_data[mineral_name]
+ UpdateMineral()
+ update_icon()
+
+VIRGO2_TURF_CREATE(/turf/simulated/mineral/ignore_mapgen)
+VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor)
+VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor/ignore_mapgen)
+
+// -- Areas -- //
+
+// The aerostat shuttle
+/area/shuttle/aerostat
+ name = "\improper Aerostat Shuttle"
+
+//The aerostat itself
+/area/offmap/aerostat
+ name = "\improper Away Mission - Aerostat Outside"
+ icon_state = "away"
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky
+ requires_power = FALSE
+ dynamic_lighting = FALSE
+
+/area/offmap/aerostat/inside
+ name = "\improper Away Mission - Aerostat Inside"
+ icon_state = "crew_quarters"
+ base_turf = /turf/simulated/floor/plating/virgo2
+ requires_power = TRUE
+ dynamic_lighting = TRUE
+// forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/argitoth.ogg', 'sound/ambience/tension/burning_terror.ogg')
+
+/area/offmap/aerostat/solars
+ name = "\improper Away Mission - Aerostat Solars"
+ icon_state = "crew_quarters"
+ base_turf = /turf/simulated/floor/plating/virgo2
+ dynamic_lighting = FALSE
+
+/area/offmap/aerostat/surface
+ flags = RAD_SHIELDED
+ ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg')
+ base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2
+
+/area/offmap/aerostat/surface/explored
+ name = "Away Mission - Aerostat Surface (E)"
+ icon_state = "explored"
+
+/area/offmap/aerostat/surface/unexplored
+ name = "Away Mission - Aerostat Surface (UE)"
+ icon_state = "unexplored"
+
+VIRGO2_TURF_CREATE(/turf/simulated/floor/hull)
+/area/offmap/aerostat/surface/outpost
+ requires_power = TRUE
+ dynamic_lighting = TRUE
+ ambience = null
+
+/area/offmap/aerostat/surface/outpost/backroom
+ name = "V2 Outpost - Research Area"
+/area/offmap/aerostat/surface/outpost/hallway
+ name = "V2 Outpost - Hallway"
+/area/offmap/aerostat/surface/outpost/cafe
+ name = "V2 Outpost - Cafe"
+/area/offmap/aerostat/surface/outpost/park
+ name = "V2 Outpost - Park"
+/area/offmap/aerostat/surface/outpost/officerone
+ name = "V2 Outpost - Officer's Quarters 1"
+/area/offmap/aerostat/surface/outpost/officertwo
+ name = "V2 Outpost - Officer's Quarters 2"
+/area/offmap/aerostat/surface/outpost/barracks
+ name = "V2 Outpost - Barracks"
+/area/offmap/aerostat/surface/outpost/airlock
+ name = "V2 Outpost - Airlock"
+/area/offmap/aerostat/surface/outpost/powerroom
+ name = "V2 Outpost - Power Room"
+/area/offmap/aerostat/surface/outpost/guardpost
+ name = "V2 Outpost - Guard Post"
+
+/area/offmap/aerostat/inside
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "blublasqu"
+
+/area/offmap/aerostat/inside/toxins
+ name = "Toxins Lab"
+ icon_state = "purwhisqu"
+
+/area/offmap/aerostat/inside/xenoarch
+ name = "Xenoarchaeolegy Lab"
+ icon_state = "yelwhisqu"
+/area/offmap/aerostat/inside/xenoarch/chamber
+ name = "Xenoarchaeolegy Vent Chamber"
+
+/area/offmap/aerostat/inside/genetics
+ name = "Genetics Lab"
+ icon_state = "grewhisqu"
+
+/area/offmap/aerostat/inside/telesci
+ name = "Telescience Lab"
+ icon_state = "bluwhisqu"
+
+/area/offmap/aerostat/inside/atmos
+ name = "Atmospherics"
+ icon_state = "orawhisqu"
+
+/area/offmap/aerostat/inside/firingrange
+ name = "Firing Range"
+ icon_state = "orawhisqu"
+
+/area/offmap/aerostat/inside/south
+ name = "Miscellaneous Labs A"
+ icon_state = "blublasqu"
+
+/area/offmap/aerostat/inside/south/b
+ name = "Miscellaneous Labs B"
+ icon_state = "blublasqu"
+
+
+/area/offmap/aerostat/inside/powercontrol
+ name = "Power Control"
+ icon_state = "orawhicir"
+
+/area/offmap/aerostat/inside/westhall
+ name = "West Hall"
+ icon_state = "orablacir"
+/area/offmap/aerostat/inside/easthall
+ name = "East Hall"
+ icon_state = "orablacir"
+
+/area/offmap/aerostat/inside/northchamb
+ name = "North Chamber"
+ icon_state = "orablacir"
+/area/offmap/aerostat/inside/southchamb
+ name = "South Chamber"
+ icon_state = "orablacir"
+
+/area/offmap/aerostat/inside/drillstorage
+ name = "Drill Storage"
+ icon_state = "orablacir"
+
+/area/offmap/aerostat/inside/zorrenoffice
+ name = "Zorren Reception"
+ icon_state = "orablacir"
+
+/area/offmap/aerostat/inside/lobby
+ name = "Lobby"
+ icon_state = "orablacir"
+/area/offmap/aerostat/inside/misclab
+ name = "Miscellaneous Lab"
+ icon_state = "orablacir"
+
+/area/offmap/aerostat/inside/airlock
+ name = "Airlock"
+ icon_state = "redwhicir"
+/area/offmap/aerostat/inside/airlock/north
+ name = "North Airlock"
+/area/offmap/aerostat/inside/airlock/east
+ name = "East Airlock"
+/area/offmap/aerostat/inside/airlock/west
+ name = "West Airlock"
+/area/offmap/aerostat/inside/airlock/south
+ name = "South Airlock"
+
+/area/offmap/aerostat/inside/arm/ne
+ name = "North-East Solar Arm"
+/area/offmap/aerostat/inside/arm/nw
+ name = "North-West Solar Arm"
+/area/offmap/aerostat/inside/arm/se
+ name = "South-East Solar Arm"
+/area/offmap/aerostat/inside/arm/sw
+ name = "South-West Solar Arm"
+
+/area/offmap/aerostat/glassgetsitsownarea
+ name = "Aerostat Glass"
+ icon_state = "crew_quarters"
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky
+ dynamic_lighting = FALSE
diff --git a/maps/expedition_vr/aerostat/aerostat_science_outpost.dmm b/maps/expedition_vr/aerostat/aerostat_science_outpost.dmm
new file mode 100644
index 0000000000..04ca0dadcb
--- /dev/null
+++ b/maps/expedition_vr/aerostat/aerostat_science_outpost.dmm
@@ -0,0 +1,31779 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol,
+/area/offmap/aerostat/inside/airlock/east)
+"ab" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ cycle_to_external_air = 1;
+ id_tag = "aerostat_northwest_airlock";
+ name = "Aerostat Airlock Controller";
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"ac" = (
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"ae" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"af" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aj" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ id_tag = "anomaly_airlock_pump";
+ name = "Anomaly Airlock Pump"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/airlock_sensor{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"ak" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"al" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"an" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 5
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"ap" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/powered/pump/huge/stationary/purge,
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"aq" = (
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"ar" = (
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 6
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"as" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 5
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"at" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"au" = (
+/obj/machinery/button/remote/blast_door{
+ id = "anomaly_testing_v";
+ name = "Panic Chamber Vent";
+ pixel_x = 6;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"av" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aw" = (
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"ax" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"ay" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"az" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"aB" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 5
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aD" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aE" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/west)
+"aF" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/obj/structure/window/basic,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"aG" = (
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aH" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/misclab)
+"aI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"aJ" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/telecomms/relay/preset/sd,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"aK" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"aM" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aN" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ master_tag = "aerostat_n_n_airlock";
+ pixel_x = 24;
+ pixel_y = 24;
+ tag = "aerostat_n_n_sensint"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"aO" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/directions/science/toxins{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"aP" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"aQ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"aR" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"aS" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aT" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aU" = (
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"aW" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"aX" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"aY" = (
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"aZ" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"ba" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"bb" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"bd" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/aerostat)
+"bf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"bg" = (
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"bh" = (
+/obj/machinery/door/airlock/glass_external{
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/aerostat)
+"bi" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_n_exterior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"bj" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"bk" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_n_exterior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"bl" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = "aerostat_n_n_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "aerostat_n_n_airlock";
+ pixel_x = -25;
+ tag_airpump = "aerostat_n_n_pump";
+ tag_chamber_sensor = "aerostat_n_n_sensor";
+ tag_exterior_door = "aerostat_n_n_exterior";
+ tag_exterior_sensor = "aerostat_n_n_sensext";
+ tag_interior_door = "aerostat_n_n_interior";
+ tag_interior_sensor = "aerostat_n_n_sensint"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/north)
+"bm" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"bn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_w_interior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"bo" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"bp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_e_interior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"bq" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"br" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"bs" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"bt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"bu" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"bw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"bx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"bz" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"bA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 5
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"bC" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"bE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/xenoarch)
+"bG" = (
+/obj/structure/table/standard,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/tool/wirecutters,
+/obj/item/stack/cable_coil,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/weapon/tank/phoron,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"bI" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/shuttle/aerostat)
+"bJ" = (
+/obj/machinery/button/remote/blast_door{
+ id = "burn_chamber_v";
+ name = "Burn Chamber Vent";
+ pixel_x = -26;
+ pixel_y = 6
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "burn_chamber_p";
+ name = "Burn Chamber Purge";
+ pixel_x = -26;
+ pixel_y = -8
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"bK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"bL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"bM" = (
+/obj/machinery/airlock_sensor{
+ id_tag = "anomaly_chamber_airlock_sensor";
+ pixel_x = -25;
+ pixel_y = -10
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ cycle_to_external_air = 1;
+ id_tag = "aerostat_anomaly_airlock";
+ name = "Aerostat Airlock Controller";
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"bN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"bO" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"bP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"bQ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"bR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"bS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"bT" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"bU" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"bV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"bW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"bY" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/blue{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/toxins)
+"bZ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"ca" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"ce" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/toxins)
+"cf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"ch" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"cj" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"ck" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"cl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"cm" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"cn" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/north)
+"co" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"cp" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"cq" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"cr" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = "anomaly_testing_exterior";
+ locked = 1;
+ name = "Anomaly Secure Testing";
+ req_access = list(65);
+ req_one_access = list(47)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/xenoarch)
+"ct" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_w_exterior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"cu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 1;
+ master_tag = "aerostat_s_s_airlock";
+ pixel_x = -24;
+ pixel_y = -24;
+ tag = "aerostat_s_s_sensint"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"cv" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_west_airlock";
+ landmark_tag = "aerostat_west";
+ name = "Virgo 2 Aerostat (W)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"cw" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"cx" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"cy" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 10
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 8;
+ pixel_x = 32
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"cz" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"cA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"cB" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/atmos)
+"cC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"cE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"cF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"cI" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ id_tag = null;
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/west)
+"cJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"cO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/north)
+"cP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"cR" = (
+/obj/structure/bed/chair/sofa/purp/left,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"cU" = (
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"cV" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"cW" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"cX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"cZ" = (
+/obj/effect/blocker,
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"da" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = "anomaly_airlock_pump";
+ name = "Anomaly Airlock Pump"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"db" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"de" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/northchamb)
+"df" = (
+/obj/machinery/power/tracker,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dg" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dh" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"di" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dk" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dl" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dm" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dn" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"do" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dp" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dq" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dr" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ cycle_to_external_air = 1;
+ id_tag = "aerostat_northeast_airlock";
+ name = "Aerostat Airlock Controller";
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"ds" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/nw)
+"dt" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"du" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"dw" = (
+/obj/structure/metal_edge,
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat/solars)
+"dx" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dy" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"dA" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dB" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dC" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dD" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dE" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dF" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dG" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dH" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"dI" = (
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dJ" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 6
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dK" = (
+/obj/structure/cable,
+/obj/machinery/power/smes/buildable{
+ charge = 2e+006;
+ input_attempt = 1;
+ input_level = 100000;
+ output_level = 200000
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"dL" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"dM" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ charge = 2e+006;
+ input_attempt = 1;
+ input_level = 100000;
+ output_level = 200000
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"dN" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"dO" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"dP" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1452
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/east)
+"dQ" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dR" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/power/solar,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dS" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dT" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 6
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dU" = (
+/obj/effect/floor_decal/rust,
+/obj/random/powercell,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"dV" = (
+/obj/machinery/access_button{
+ frequency = 1089;
+ master_tag = "aerostat_doors";
+ name = "Aerostat Shuttle Dock";
+ pixel_x = 25;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"dW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"dX" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"dY" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"dZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"eb" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1452
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ cycle_to_external_air = 1;
+ frequency = 1380;
+ id_tag = "aerostat_east_airlock";
+ pixel_y = 29
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/east)
+"ec" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1452
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/east)
+"ed" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"ef" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"ei" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"ek" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/easthall)
+"el" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"er" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"ey" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"ez" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"eE" = (
+/obj/structure/bed/chair/sofa/purp/right,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"eG" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = "anomaly_testing_interior";
+ locked = 1;
+ name = "Anomaly Secure Testing";
+ req_access = list(65);
+ req_one_access = list(47)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/xenoarch)
+"eL" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"eM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"eN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"eO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"eP" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"eR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"eT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"eU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"eW" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"eX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"eZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"fa" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/east)
+"fb" = (
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"fe" = (
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/floor_decal/rust,
+/obj/machinery/power/solar_control,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"ff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"fg" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"fh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"fi" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/atmoscontrol/laptop{
+ monitored_alarm_ids = list("anomaly_testing");
+ req_one_access = list(47,24,11)
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"fj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 8;
+ master_tag = "aerostat_n_e_airlock";
+ pixel_x = 32;
+ tag = "aerostat_n_e_sensint"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"fn" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"fo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"fp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"ft" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"fw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"fx" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"fA" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"fD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"fH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"fI" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ pixel_y = -5
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"fJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"fK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"fL" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"fM" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"fQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"fR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"fS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/south)
+"fT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"fV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/atmos)
+"fW" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/north)
+"fY" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"ga" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"gd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"ge" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"gf" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/genetics)
+"gh" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"gi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"gk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"gs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"gt" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"gv" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/northchamb)
+"gw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"gx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"gy" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"gC" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"gD" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"gG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"gK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"gL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"gN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/north)
+"gO" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"gP" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"gQ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"gR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"gS" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_e_exterior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"gT" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"gV" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "N2O pump"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"gW" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"gX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"gZ" = (
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/zorrenoffice)
+"ha" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"he" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/west)
+"hf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"hh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"hj" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"hk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"hn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"hp" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"hq" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"hs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"hu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"hv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"hA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"hB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"hC" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"hF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"hG" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "science_outpost"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"hJ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"hL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"hM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"hN" = (
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"hO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"hQ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"hS" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"hU" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "CO2 Filter";
+ tag_east = 5;
+ tag_north = 2;
+ tag_west = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"hX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"hY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"ib" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"id" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"ie" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/zorrenoffice)
+"if" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"ig" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"ii" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"il" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"io" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/bomb_tester,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"it" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"iv" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"iy" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = 25
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/east)
+"iB" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"iC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"iH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"iK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"iM" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"iN" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/shuttle/aerostat)
+"iU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"iV" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"iW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"iX" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"iY" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"iZ" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"ja" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"je" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"jf" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"ji" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/medical_kiosk,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"jj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8;
+ icon_state = "freezer"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"jl" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1452
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"jn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/research_outpost,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"jo" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"ju" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"jw" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"jy" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"jF" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/xenoarch)
+"jG" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"jH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"jI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"jJ" = (
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol,
+/area/offmap/aerostat/inside/airlock/east)
+"jL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/west)
+"jM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"jN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"jQ" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"jR" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"jS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"jT" = (
+/obj/structure/table/standard,
+/obj/item/weapon/tool/wrench{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/tool/wrench{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"jU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"jV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"jW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"jZ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"ka" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/east)
+"kb" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/se)
+"kc" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/easthall)
+"ke" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"kf" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"kg" = (
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ dir = 6
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol,
+/area/offmap/aerostat/inside/airlock/east)
+"kk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"km" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/atmos)
+"ko" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"kp" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"kq" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"ks" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"kt" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"ky" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/purp,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"kB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"kC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"kD" = (
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "aerostat_n_n_sensor";
+ master_tag = "aerostat_n_n_airlock";
+ pixel_x = 23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = "aerostat_n_n_pump"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/north)
+"kF" = (
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/toxins)
+"kG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/toxins)
+"kH" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"kI" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"kJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"kN" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"kO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"kR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/binary/pump/on,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"kV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"kY" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"la" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"lb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"lc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/autolathe,
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"ld" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"le" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"lh" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"li" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_w_exterior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"lk" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(7)
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"ll" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 5
+ },
+/obj/machinery/sparker{
+ id = "burn_chamber";
+ pixel_x = -22;
+ pixel_y = -22
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"lo" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"lq" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"ls" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"lt" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"lu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"lv" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"lx" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"lA" = (
+/obj/machinery/mining/drill,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"lD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"lG" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"lH" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"lI" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 1;
+ req_access = null
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"lK" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"lL" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/west)
+"lO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"lR" = (
+/obj/machinery/medical_kiosk,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"lT" = (
+/obj/machinery/pipedispenser,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"lW" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"lX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"lZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"mc" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"mg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"mi" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"mj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"mk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 10
+ },
+/obj/machinery/meter,
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"mn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external/public,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"mo" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"mt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"mu" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"mx" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_e_exterior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"mz" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/structure/anomaly_container,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"mA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"mD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/greengrid,
+/area/offmap/aerostat/inside/toxins)
+"mE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"mF" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"mG" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced/full{
+ icon_state = "phoronwindow0"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"mH" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"mL" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen/fountain,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"mM" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"mN" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/arm/nw)
+"mQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ locked = 1
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 4;
+ frequency = 1380;
+ master_tag = "aerostat_toxins";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"mR" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_s_s_airlock";
+ landmark_tag = "aerostat_s_s";
+ name = "Virgo 2 Aerostat (South Arm South)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"mT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"mU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/atmos)
+"mX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/easthall)
+"mY" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"mZ" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/power/solar,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"nb" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"nf" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"nh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"nm" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"no" = (
+/obj/machinery/atmospherics/omni/mixer{
+ name = "Air Mixer";
+ tag_east_con = null;
+ tag_north = 1;
+ tag_north_con = 0.21;
+ tag_south = 1;
+ tag_south_con = 0.79;
+ tag_west = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"np" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"nr" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"ns" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"nu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"nv" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab";
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"nw" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_s_exterior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"nx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"nz" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"nB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"nE" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"nF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"nJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/firingrange)
+"nK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"nL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"nN" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"nO" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"nQ" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"nS" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"nU" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"nV" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"nW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"nY" = (
+/obj/structure/table/rack,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/storage/belt/archaeology,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/anomaly/heat,
+/obj/item/clothing/head/helmet/space/anomaly/heat,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/storage/excavation,
+/obj/item/stack/flag/yellow,
+/obj/item/weapon/tool/wrench,
+/obj/item/device/measuring_tape,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"oc" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"od" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"oe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"og" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"oj" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"ol" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"om" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"oo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"op" = (
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/xenoarch)
+"os" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"ov" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/westhall)
+"oy" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1089;
+ icon_state = "door_locked";
+ id_tag = "aerostat_door_outer";
+ locked = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/east)
+"oA" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/firingrange)
+"oG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"oJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/power/apc,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"oK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/dispenser,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"oL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_n_interior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"oM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"oS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_s_interior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"oU" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1452
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/east)
+"oV" = (
+/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/toxins)
+"oW" = (
+/obj/structure/sign/warning/hot_exhaust,
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/toxins)
+"oY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/anobattery{
+ pixel_x = 5;
+ pixel_y = 2
+ },
+/obj/item/weapon/anobattery,
+/obj/item/weapon/anobattery{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/weapon/anobattery{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"oZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/closet/wardrobe/genetics_white,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"pd" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ pixel_y = 25
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_east_airlock";
+ landmark_tag = "aerostat_east";
+ name = "Virgo 2 Aerostat (E)"
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"pe" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/ne)
+"pf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"pj" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"pm" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"pn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"pq" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ dir = 2;
+ req_access = null;
+ req_one_access = list(1337)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "zorrenpartyroom";
+ layer = 3.3;
+ name = "shutter"
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/zorrenoffice)
+"pr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"ps" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"pu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"py" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"pz" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"pA" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 2;
+ req_access = list(1337)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "zorrenpartyroom";
+ layer = 3.3;
+ name = "shutter"
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/zorrenoffice)
+"pC" = (
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"pD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_s_interior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"pF" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"pH" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"pL" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"pM" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"pP" = (
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"pT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"pV" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"pW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"pX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/glass_external{
+ locked = 1
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1380;
+ master_tag = "aerostat_toxins";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"pY" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"pZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"qb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"qc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/southchamb)
+"qe" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"qf" = (
+/obj/structure/window/reinforced,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"qh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"qi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/obj/item/stack/material/algae,
+/obj/item/stack/material/algae,
+/obj/item/stack/material/algae,
+/obj/item/stack/material/algae,
+/obj/item/stack/material/algae,
+/obj/item/stack/material/algae,
+/obj/structure/closet/walllocker_double{
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"qj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"ql" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"qp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"qq" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"qw" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"qx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Firing Range";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/firingrange)
+"qB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/airlock/east)
+"qC" = (
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"qE" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ cycle_to_external_air = 1;
+ dir = 8;
+ id_tag = "aerostat_southeast_airlock";
+ name = "Aerostat Airlock Controller";
+ pixel_x = 25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"qF" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"qH" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"qJ" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "N2O Filter";
+ tag_east = 7;
+ tag_north = 1;
+ tag_south = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"qL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"qM" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/north)
+"qN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"qP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"qQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"qR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/research_outpost,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"qS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"qT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"qU" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/vending/phoronresearch{
+ name = "Toximate 2556";
+ products = list(/obj/item/device/transfer_valve = 3, /obj/item/device/assembly/timer = 6, /obj/item/device/assembly/signaler = 6, /obj/item/device/assembly/prox_sensor = 6, /obj/item/device/assembly/igniter = 12)
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"qZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"rd" = (
+/obj/machinery/atmospherics/pipe/simple/insulated,
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "burn_chamber_v";
+ name = "Burn Chamber Vent"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"re" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"rg" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"ri" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_n_interior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"rk" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"rq" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/firingrange)
+"rr" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoarchaeology"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/xenoarch)
+"rs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"rv" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"rw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/atmos)
+"rx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"ry" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/xenoarch)
+"rF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"rH" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"rI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"rJ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"rM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"rS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/firingrange)
+"rT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/east)
+"sb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/excavation,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"sc" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"se" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"sg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/telesci)
+"sh" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced/full{
+ icon_state = "phoronwindow0"
+ },
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"sk" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"sm" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(7)
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"sn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"so" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/atmos)
+"sp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"sr" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"sw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"sz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"sD" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"sE" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"sI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"sJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"sK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"sN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"sO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"sP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"sQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"sT" = (
+/obj/machinery/computer/shuttle_control/aerostat_shuttle,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"sU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/xenoarch)
+"sW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"sX" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "aerostat_s_e_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "aerostat_s_e_airlock";
+ pixel_y = 29;
+ tag_airpump = "aerostat_s_e_pump";
+ tag_chamber_sensor = "aerostat_s_e_sensor";
+ tag_exterior_door = "aerostat_s_e_exterior";
+ tag_exterior_sensor = "aerostat_s_e_sensext";
+ tag_interior_door = "aerostat_s_e_interior";
+ tag_interior_sensor = "aerostat_s_e_sensint"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/south)
+"sZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"tg" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_n_w_airlock";
+ landmark_tag = "aerostat_n_w";
+ name = "Virgo 2 Aerostat (North Arm West)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"ti" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"tk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"tm" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_w_exterior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"tq" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "aerostat_n_w_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "aerostat_n_w_airlock";
+ pixel_y = 29;
+ tag_airpump = "aerostat_n_w_pump";
+ tag_chamber_sensor = "aerostat_n_w_sensor";
+ tag_exterior_door = "aerostat_n_w_exterior";
+ tag_exterior_sensor = "aerostat_n_w_sensext";
+ tag_interior_door = "aerostat_n_w_interior";
+ tag_interior_sensor = "aerostat_n_w_sensint"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/north)
+"ts" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/shuttle/aerostat)
+"tu" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"tv" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab";
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"ty" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/easthall)
+"tA" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"tD" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"tE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"tF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"tG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"tH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"tI" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"tJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"tL" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"tM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"tP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"tS" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/light/small,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"tU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"tV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"tY" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/east)
+"ua" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"ud" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"uh" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"uj" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"uk" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"um" = (
+/obj/machinery/door/airlock/external,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/northchamb)
+"un" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"uq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"ur" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced/full{
+ icon_state = "phoronwindow0"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"us" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"uu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"uv" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"ux" = (
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = null;
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"uy" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"uA" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"uD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"uG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/research_outpost,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"uS" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/arm/sw)
+"uV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"uX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"vb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/toxins)
+"vc" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"vd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"ve" = (
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "burn_chamber_v";
+ name = "Burn Chamber Vent"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"vg" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/lobby)
+"vj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_e_interior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"vm" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(7)
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"vo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"vp" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"vq" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"vt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"vy" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"vz" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"vA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/shuttle/wall,
+/area/shuttle/aerostat)
+"vB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"vC" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/west)
+"vI" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"vJ" = (
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"vK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"vL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"vM" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/ears/earmuffs,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"vP" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Firing Range";
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/firingrange)
+"vR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"vT" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/firingrange)
+"vW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"vX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall,
+/area/shuttle/aerostat)
+"wb" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"wc" = (
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/aerostat)
+"wg" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"wh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"wi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"wj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/se)
+"wm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/aerostat)
+"wo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"wp" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"wq" = (
+/obj/structure/closet/crate/science,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"wr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"wz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"wC" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/northchamb)
+"wD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"wE" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ external_pressure_bound = 0;
+ frequency = 1445;
+ icon_state = "map_vent_in";
+ id_tag = "burn_out";
+ initialize_directions = 4;
+ pump_direction = 0
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"wF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"wG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"wI" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ cycle_to_external_air = 1;
+ dir = 4;
+ id_tag = "aerostat_southwest_airlock";
+ name = "Aerostat Airlock Controller";
+ pixel_x = -25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"wK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"wQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"wR" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"wY" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"wZ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ dir = 2;
+ id = "burn_chamber_p";
+ name = "Burn Chamber Purge"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"xa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/airlock/glass_mining{
+ name = "Drilling Equipment"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/drillstorage)
+"xc" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"xe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"xf" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xg" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"xl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"xn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"xp" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"xq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"xs" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/bio_suit/anomaly,
+/obj/item/clothing/head/bio_hood/anomaly,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/clothing/glasses/science,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"xt" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/drillstorage)
+"xu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"xx" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"xy" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xC" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"xF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"xG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"xK" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"xN" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/sw)
+"xO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xP" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"xR" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"xS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"xU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"xW" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"yc" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/atmos)
+"yi" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/obj/machinery/door/blast/regular{
+ dir = 2;
+ id = "burn_chamber_p";
+ name = "Burn Chamber Purge"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"yk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"yp" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"yq" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"yr" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/drillstorage)
+"ys" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"yu" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"yv" = (
+/obj/machinery/atmospherics/pipe/tank/nitrogen{
+ dir = 8
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/atmos)
+"yy" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "aerostat_s_e_pump"
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "aerostat_s_e_sensor";
+ master_tag = "aerostat_s_e_airlock";
+ pixel_y = -25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/south)
+"yA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"yD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_e_interior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"yG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"yH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"yI" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"yK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"yN" = (
+/obj/machinery/light/floortube{
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"yO" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"yT" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"yU" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"yX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"yZ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/heavyduty,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"zb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"zc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/misclab)
+"ze" = (
+/obj/machinery/artifact_analyser,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"zg" = (
+/obj/machinery/atmospherics/pipe/simple/insulated,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"zk" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"zn" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/item/modular_computer/console/preset/research{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"zo" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"zp" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"zq" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/power/solar_control,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"zr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"zt" = (
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/zorrenoffice)
+"zu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"zw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"zx" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"zA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"zB" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"zC" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_w_exterior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"zE" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"zF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green,
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"zG" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"zI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"zJ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"zM" = (
+/obj/machinery/door/airlock/external,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"zQ" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"zR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"zV" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"zW" = (
+/obj/machinery/computer/general_air_control/supermatter_core{
+ frequency = 1445;
+ input_tag = "burn_in";
+ name = "Burn Chamber Air Control";
+ output_tag = "burn_out";
+ pressure_setting = 0;
+ sensors = list("burn_sensor" = "Burn Chamber Sensor")
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"zX" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/nw)
+"Aa" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Distro Loop Drain"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Ab" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ color = "#eacd7c";
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/arm/se)
+"Ad" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"Ae" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/storage/belt/archaeology,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/anomaly/heat,
+/obj/item/clothing/head/helmet/space/anomaly/heat,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/storage/excavation,
+/obj/item/stack/flag/yellow,
+/obj/item/weapon/tool/wrench,
+/obj/item/device/measuring_tape,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ah" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"Ak" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"Al" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"Ao" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/southchamb)
+"Ap" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Aq" = (
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Ar" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(7)
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"As" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Atmospherics";
+ req_one_access = list(47,10)
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/atmos)
+"At" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/structure/table/standard,
+/obj/fiftyspawner/steel,
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Au" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/southchamb)
+"Aw" = (
+/obj/machinery/air_sensor{
+ frequency = 1445;
+ id_tag = "burn_sensor";
+ output = 63
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"Ay" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Az" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/powercontrol)
+"AB" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoarchaeology"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"AC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"AD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"AE" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"AF" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/easthall)
+"AI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/computer/shuttle_control/aerostat_shuttle,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"AK" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"AL" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Air to Distro"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"AN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"AP" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/structure/target_stake,
+/obj/item/target/alien,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"AQ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"AX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"Bb" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"Bc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Be" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Bh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Bj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Bk" = (
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Bm" = (
+/obj/machinery/camera/network/research_outpost,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Bo" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1089;
+ icon_state = "door_locked";
+ id_tag = "aerostat_door_inner";
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/east)
+"Bp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Bq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Br" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Bs" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/blue,
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/powercontrol)
+"Bt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Bu" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"By" = (
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Bz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/genetics)
+"BA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"BB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"BE" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"BF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"BG" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "science_outpost"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/blue,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"BH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"BK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/east)
+"BM" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"BO" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"BP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"BR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/atmospherics/pipe/manifold/hidden/aux{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"BS" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"BU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"BV" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"BW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Distro Loop Drain"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"BX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Ca" = (
+/obj/machinery/computer/area_atmos/tag{
+ dir = 8;
+ scrub_id = "science_outpost"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Cc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Cd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/xenoarch)
+"Ce" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/atmos)
+"Cj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Ck" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/airlock_sensor{
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/west)
+"Cl" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"Cq" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ct" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Cu" = (
+/obj/structure/closet/secure_closet/xenoarchaeologist,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Cw" = (
+/obj/structure/table/standard,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/anodevice{
+ pixel_x = -2
+ },
+/obj/item/weapon/anodevice{
+ pixel_x = 1
+ },
+/obj/item/device/multitool,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"CA" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"CC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"CE" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"CF" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/machinery/sparker{
+ id = "burn_chamber";
+ pixel_x = -24
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"CJ" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 9
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"CK" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"CM" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"CO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"CQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"CR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/misclab)
+"CT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/random/firstaid,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"CV" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Da" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"Db" = (
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol,
+/area/offmap/aerostat/inside/xenoarch)
+"Dd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/east)
+"De" = (
+/obj/machinery/computer/telescience,
+/turf/simulated/floor/reinforced,
+/area/offmap/aerostat/inside/telesci)
+"Dg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Dh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Dk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"Dl" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Dq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"Ds" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Dt" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "aerostat_n_e_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "aerostat_n_e_airlock";
+ pixel_y = 29;
+ tag_airpump = "aerostat_n_e_pump";
+ tag_chamber_sensor = "aerostat_n_e_sensor";
+ tag_exterior_door = "aerostat_n_e_exterior";
+ tag_exterior_sensor = "aerostat_n_e_sensext";
+ tag_interior_door = "aerostat_n_e_interior";
+ tag_interior_sensor = "aerostat_n_e_sensint"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/north)
+"Du" = (
+/obj/machinery/atmospherics/pipe/tank/nitrogen{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/atmos)
+"Dv" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"DC" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/south)
+"DF" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ name = "Zorren Representative Kiosk";
+ req_one_access = list(1337)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"DG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"DI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"DJ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/aux{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"DK" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Toxins Lab"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"DL" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"DM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"DN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"DO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/obj/structure/cable,
+/obj/structure/table/standard,
+/obj/item/device/multitool,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"DP" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/airlock/south)
+"DU" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "aerostat_s_s_pump"
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "aerostat_s_s_sensor";
+ master_tag = "aerostat_s_s_airlock";
+ pixel_x = 25
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/south)
+"DY" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Eb" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"Eh" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Ek" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Ep" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_e_exterior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"Er" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"Es" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Eu" = (
+/obj/machinery/atmospherics/portables_connector/aux{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ev" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"Ew" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Ey" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"ED" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "N2/O2 Filter";
+ tag_east = 2;
+ tag_north = 1;
+ tag_south = 4;
+ tag_west = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"EF" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"EI" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"EK" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"EL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall,
+/area/shuttle/aerostat)
+"EN" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/west)
+"EQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"ER" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"ES" = (
+/turf/simulated/floor/reinforced,
+/area/offmap/aerostat/inside/telesci)
+"EV" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"EX" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/directions/science/xenoarch{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Ff" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Fh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Fi" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Fk" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/power/solar_control,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"Fm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Fo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/effect/floor_decal/rust,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"Fr" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Fs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Ft" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ pixel_y = -5
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Fu" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"Fw" = (
+/obj/machinery/atmospherics/trinary/atmos_filter{
+ dir = 4;
+ name = "High Power Gas filter";
+ power_rating = 15000;
+ use_power = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Fy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"FF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/research_outpost,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"FJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/west)
+"FK" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"FL" = (
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/zorrenoffice)
+"FS" = (
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"FT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"FU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"FV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ color = "#eacd7c";
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/arm/ne)
+"FW" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"FX" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Gb" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"Gc" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_n_e_airlock";
+ landmark_tag = "aerostat_n_e";
+ name = "Virgo 2 Aerostat (North Arm East)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"Gd" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Ge" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_s_e_airlock";
+ landmark_tag = "aerostat_s_e";
+ name = "Virgo 2 Aerostat (South Arm East)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"Gf" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Gi" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Gm" = (
+/obj/machinery/door/airlock/multi_tile/glass,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"Go" = (
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Gq" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Gs" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Gt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Gu" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Gv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Gy" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Gz" = (
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/west)
+"GA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 8;
+ master_tag = "aerostat_s_e_airlock";
+ pixel_x = 24;
+ tag = "aerostat_s_e_sensint"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"GB" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/powercontrol)
+"GC" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"GE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"GF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"GG" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"GK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"GL" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"GN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"GP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"GR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"GT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/mining/drill,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"GW" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"GX" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ha" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "Phoron Filter";
+ tag_east = 6;
+ tag_north = 1;
+ tag_south = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Hb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Hd" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Hj" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Hl" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Hn" = (
+/obj/machinery/artifact_harvester,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ho" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Hp" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ cycle_to_external_air = 1;
+ frequency = 1380;
+ id_tag = "aerostat_shuttle_airlock";
+ pixel_y = 29
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Hq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Ht" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/misclab)
+"Hu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ alarm_id = "anomaly_testing";
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Hv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/southchamb)
+"Hw" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Telescience"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/telesci)
+"Hx" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Hy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Hz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"HA" = (
+/obj/machinery/artifact_scanpad,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"HH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"HJ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"HK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"HL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"HM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"HN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "zorrenpartyroom";
+ layer = 3.3;
+ name = "shutter"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/zorrenoffice)
+"HO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"HQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/southchamb)
+"HR" = (
+/obj/structure/table/standard,
+/obj/item/device/gps{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/device/gps{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/device/gps{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"HT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external/public,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"HU" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"HV" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"HY" = (
+/obj/machinery/door/airlock/glass_external{
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/aerostat)
+"Id" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ig" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol,
+/area/offmap/aerostat/inside/airlock/east)
+"Ih" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ii" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Scrubber to Waste"
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Ij" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Im" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/manifold/visible/blue{
+ dir = 8
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"In" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Ip" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ir" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"Is" = (
+/obj/machinery/atmospherics/valve,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"It" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/arm/se)
+"Iu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/ore/bluespace_crystal,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"Iw" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"Iy" = (
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 6;
+ frequency = 1380;
+ id_tag = "aerostat_s_e_sensext";
+ master_tag = "aerostat_s_e_airlock"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/south)
+"IA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"IB" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/south)
+"ID" = (
+/turf/simulated/wall/r_wall,
+/area/offmap/aerostat/inside/firingrange)
+"IF" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"IH" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1445;
+ id = "burn_in";
+ volume_rate = 700
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"II" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/obj/machinery/mining/drill,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"IK" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"IM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/southchamb)
+"IN" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "phoron pump"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"IP" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/misclab)
+"IV" = (
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "aerostat_n_w_sensor";
+ master_tag = "aerostat_n_w_airlock";
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "aerostat_n_w_pump"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/north)
+"IY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ color = "#eacd7c";
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/arm/sw)
+"IZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"Jb" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Jc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"Jd" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/south)
+"Ji" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Jn" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Jo" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/westhall)
+"Jp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/button/ignition{
+ id = "burn_chamber";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Jq" = (
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ju" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Jz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/airlock/south)
+"JA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"JB" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_w_interior";
+ locked = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"JD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"JG" = (
+/obj/structure/metal_edge,
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"JH" = (
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "aerostat_s_w_sensor";
+ master_tag = "aerostat_s_w_airlock";
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "aerostat_s_w_pump"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/south)
+"JI" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"JJ" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced/full{
+ icon_state = "phoronwindow0"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"JM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab";
+ req_one_access = null
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"JP" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"JQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"JR" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"JS" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"JT" = (
+/obj/machinery/atmospherics/valve,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"JV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"JZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"Kc" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_s_exterior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"Kd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Ke" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Kh" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Ki" = (
+/obj/machinery/door/airlock/glass_external{
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/aerostat)
+"Kj" = (
+/obj/structure/table/standard,
+/obj/item/device/analyzer,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Kk" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1441;
+ id = "atmos_out";
+ use_power = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/northchamb)
+"Kn" = (
+/obj/structure/closet/secure_closet/xenoarchaeologist,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ko" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Kq" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Kr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Kv" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/genetics)
+"Kw" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"KC" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"KD" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"KE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"KG" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"KH" = (
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 6;
+ frequency = 1380;
+ id_tag = "aerostat_n_w_sensext";
+ master_tag = "aerostat_n_w_airlock"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/north)
+"KI" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"KJ" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 9
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"KK" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/southchamb)
+"KN" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/xenoarch)
+"KP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"KS" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"KU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"KW" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ id_tag = null;
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/west)
+"KZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Ld" = (
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"Lf" = (
+/obj/structure/anomaly_container,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"Lg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/steel_reinforced,
+/obj/random/firstaid,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Lj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ln" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Lo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"Lq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/computer/scan_consolenew,
+/obj/item/weapon/paper{
+ info = "out of order"
+ },
+/obj/machinery/camera/network/research_outpost,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Ls" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Lt" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Lu" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Ly" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"LB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"LF" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"LH" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"LI" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"LK" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/arm/ne)
+"LN" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"LR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"LS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"LT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"LW" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_s_w_airlock";
+ landmark_tag = "aerostat_s_w";
+ name = "Virgo 2 Aerostat (South Arm West)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"LY" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"LZ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"Ma" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Mb" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Mc" = (
+/obj/machinery/telepad,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/reinforced,
+/area/offmap/aerostat/inside/telesci)
+"Md" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Mg" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 1;
+ icon_state = "heater"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Mi" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "aerostat_s_w_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "aerostat_s_w_airlock";
+ pixel_y = 29;
+ tag_airpump = "aerostat_s_w_pump";
+ tag_chamber_sensor = "aerostat_s_w_sensor";
+ tag_exterior_door = "aerostat_s_w_exterior";
+ tag_exterior_sensor = "aerostat_s_w_sensext";
+ tag_interior_door = "aerostat_s_w_interior";
+ tag_interior_sensor = "aerostat_s_w_sensint"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/south)
+"Mj" = (
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"Mk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Ml" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Mn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Mp" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"Ms" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ id_tag = null;
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/west)
+"Mv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Mw" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"Mz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"MC" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"MH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"MK" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"ML" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"MM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"MO" = (
+/obj/machinery/atmospherics/pipe/tank/phoron{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"MR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/firingrange)
+"MW" = (
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 9
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"Na" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/west)
+"Ne" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Ng" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Nh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/power/apc,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/east)
+"Ni" = (
+/obj/machinery/atmospherics/trinary/mixer/m_mixer{
+ dir = 4;
+ name = "High Power Gas mixer";
+ power_rating = 15000
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Nk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/misclab)
+"Nl" = (
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Nm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Nn" = (
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"No" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/aerostat)
+"Nq" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Nu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/offmap/aerostat/inside/toxins)
+"Nw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/medical_kiosk,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"Ny" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"NC" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"NE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"NH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"NJ" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"NL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"NM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"NN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/northchamb)
+"NO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"NQ" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"NT" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"NU" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"NV" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"NW" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/directions/science/toxins{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"NX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"NZ" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Oa" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoarchaeology"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/xenoarch)
+"Ob" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Oc" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Oe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Og" = (
+/obj/machinery/radiocarbon_spectrometer,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Oj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/sw)
+"Ol" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"Os" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Ot" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ dir = 2;
+ id = "burn_chamber_p";
+ name = "Burn Chamber Purge"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"Ou" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/nw)
+"Ov" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Ow" = (
+/obj/machinery/vending/wallmed1{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ox" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Oy" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoarchaeology"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"Oz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"OE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"OF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"OG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"OI" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Genetics Closet"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/genetics)
+"OL" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"OM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"ON" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"OR" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"OU" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/aerostat)
+"OW" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"OX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"OY" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Pa" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Pe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ph" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"Pl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Po" = (
+/obj/machinery/light/floortube{
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Pq" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Pr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Ps" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/arm/ne)
+"Py" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4;
+ name = "Exterior Air Scrubber"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"PA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"PD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"PG" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_research{
+ name = "Telescience"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/telesci)
+"PJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"PN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"PO" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/misclab)
+"PQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"PR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"PS" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"PT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"PU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Qa" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Qb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/directions/science/xenoarch{
+ dir = 4;
+ pixel_y = 12
+ },
+/obj/structure/sign/directions/science/toxins{
+ dir = 8;
+ pixel_y = 6
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Qd" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Qe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Qg" = (
+/obj/structure/lattice,
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"Qh" = (
+/obj/structure/table/standard,
+/obj/item/stack/nanopaste,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"Qk" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Qm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Qq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/drillstorage)
+"Qr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Qs" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Qu" = (
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "aerostat_n_e_sensor";
+ master_tag = "aerostat_n_e_airlock";
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "aerostat_n_e_pump"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/north)
+"Qv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Qy" = (
+/obj/machinery/door/airlock/glass_external{
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/aerostat)
+"Qz" = (
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/pill_bottle/dylovene,
+/obj/item/weapon/storage/pill_bottle/dylovene,
+/obj/item/weapon/storage/box/disks,
+/obj/item/toy/figure/geneticist,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"QA" = (
+/obj/structure/table/standard,
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = -32
+ },
+/obj/machinery/reagentgrinder,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"QE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"QH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"QI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"QK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"QL" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"QN" = (
+/obj/structure/table/standard,
+/obj/item/clothing/glasses/welding,
+/obj/item/weapon/weldingtool,
+/obj/item/device/analyzer,
+/obj/item/weapon/tool/wrench,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"QO" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/blue,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"QP" = (
+/obj/machinery/atmospherics/pipe/vent/high_volume,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"QQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"QT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_n_e_interior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"QU" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced/full{
+ icon_state = "phoronwindow0"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/offmap/aerostat/inside/toxins)
+"QV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"QW" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"QX" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"QZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"Ra" = (
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 10;
+ frequency = 1380;
+ id_tag = "aerostat_n_e_sensext";
+ master_tag = "aerostat_n_e_airlock"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/north)
+"Rb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Rd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"Re" = (
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Rf" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/drillstorage)
+"Ri" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Rj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Rk" = (
+/obj/machinery/door/airlock/glass_external/public,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"Rl" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ cycle_to_external_air = 1;
+ frequency = 1380;
+ id_tag = "aerostat_west_airlock";
+ pixel_y = 29
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/west)
+"Rm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Rn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 4;
+ master_tag = "aerostat_n_w_airlock";
+ pixel_x = -32;
+ tag = "aerostat_n_w_sensint"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"Rp" = (
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Rq" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"Rr" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/toxins)
+"Rs" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"Rt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"Ru" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Rx" = (
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 10;
+ frequency = 1380;
+ id_tag = "aerostat_s_w_sensext";
+ master_tag = "aerostat_s_w_airlock"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/south)
+"Ry" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/toxins)
+"RA" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"RD" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/drillstorage)
+"RE" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"RF" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"RH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_w_interior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"RK" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"RL" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/ears/earmuffs,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"RM" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"RN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"RO" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"RP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"RU" = (
+/obj/machinery/chem_master,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"RV" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"RW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"Sa" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"Sb" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Sd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"Si" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external/public,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/north)
+"Sl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"So" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Sp" = (
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 5;
+ frequency = 1380;
+ id_tag = "aerostat_n_n_sensext";
+ master_tag = "aerostat_n_n_airlock"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/north)
+"Sr" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Sv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Sw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"SE" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"SG" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/machinery/power/solar_control,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/sw)
+"SJ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"SL" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"SN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/suspension_gen,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"SO" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"SP" = (
+/obj/machinery/vending/tool,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"SQ" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"SR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"SS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/nw)
+"ST" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"SU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"SV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"SW" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"SY" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"Td" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/toxins)
+"Te" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Tg" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Th" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"Ti" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"Tn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Tq" = (
+/obj/effect/overmap/visitable/sector/virgo2,
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"Tr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Tv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"TB" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/offmap/aerostat/inside/powercontrol)
+"TF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"TG" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"TO" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "aerostat_s_s_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "aerostat_s_s_airlock";
+ pixel_x = -25;
+ tag_airpump = "aerostat_s_s_pump";
+ tag_chamber_sensor = "aerostat_s_s_sensor";
+ tag_exterior_door = "aerostat_s_s_exterior";
+ tag_exterior_sensor = "aerostat_s_s_sensext";
+ tag_interior_door = "aerostat_s_s_interior";
+ tag_interior_sensor = "aerostat_s_s_sensint"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/airlock/south)
+"TP" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"TR" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"TT" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_e_exterior";
+ locked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"TU" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"TV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"TW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"TX" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ pixel_x = 6
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"TY" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"TZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"Ub" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Ue" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Uf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"Uh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"Ui" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Miscellaneous Lab"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/misclab)
+"Uj" = (
+/obj/machinery/artifact_scanpad,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ul" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Um" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/heavyduty,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"Up" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"Uq" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"Us" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Ut" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ color = "#eacd7c";
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/arm/nw)
+"Uv" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "zorrenpartyroom";
+ name = "Shutter Control";
+ pixel_x = -32;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Uw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"Uy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"UA" = (
+/obj/machinery/washing_machine,
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"UB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"UC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"UD" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/sw)
+"UG" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/firingrange)
+"UH" = (
+/obj/structure/closet/excavation,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"UL" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/offmap/aerostat/inside/powercontrol)
+"US" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Atmospherics";
+ req_one_access = list(47,10)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/atmos)
+"UV" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"UW" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/genetics)
+"UZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Va" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Vc" = (
+/obj/machinery/button/remote/blast_door{
+ id = "anomaly_testing_v";
+ name = "Panic Chamber Vent";
+ pixel_x = 6;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Vd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/toxins)
+"Ve" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Vi" = (
+/obj/structure/table/standard,
+/obj/item/device/assembly_holder/timer_igniter,
+/obj/item/weapon/tool/screwdriver,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Vk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/xenoarch)
+"Vl" = (
+/obj/machinery/atmospherics/binary/algae_farm/filled{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"Vs" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Vt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/suspension_gen,
+/obj/machinery/camera/network/research_outpost{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Vu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Vx" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Vz" = (
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"VA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/telesci)
+"VB" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"VE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall,
+/area/shuttle/aerostat)
+"VG" = (
+/turf/simulated/floor/glass/reinforced{
+ color = "#eacd7c"
+ },
+/area/offmap/aerostat/glassgetsitsownarea)
+"VI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"VJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"VM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall,
+/area/shuttle/aerostat)
+"VO" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"VQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"VR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"VS" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"VU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"VX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"VY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Wb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Wd" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner{
+ stripe_color = "#00FF00"
+ },
+/area/offmap/aerostat/inside/airlock/north)
+"We" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"Wf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Wh" = (
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"Wk" = (
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Wn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/toxins)
+"Wo" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/powercontrol)
+"Wr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"Wt" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Wu" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/se)
+"Ww" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"Wx" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Wz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"WC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"WD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"WF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"WJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "aerostat_s_w_interior";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/south)
+"WN" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"WQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"WS" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/offmap/aerostat;
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky;
+ docking_controller = "aerostat_n_n_airlock";
+ landmark_tag = "aerostat_n_n";
+ name = "Virgo 2 Aerostat (North Arm North)"
+ },
+/turf/unsimulated/floor/sky/virgo2_sky,
+/area/offmap/aerostat)
+"WU" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = null;
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"WW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/airlock_sensor{
+ pixel_y = 25
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"WX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/tool/screwdriver,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"WZ" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Xa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Xb" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Xe" = (
+/obj/machinery/alarm{
+ pixel_y = 26
+ },
+/obj/item/modular_computer/console/preset/command,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Xo" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 6
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/toxins)
+"Xp" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/aerostat)
+"Xr" = (
+/obj/structure/window/reinforced,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Xt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Xx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Xz" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"XA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"XD" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"XF" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"XJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/misclab)
+"XK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/inside/arm/ne)
+"XL" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoarchaeology"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/xenoarch)
+"XM" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"XO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/telesci)
+"XP" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/xenoarch)
+"XQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/atmos)
+"XT" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"XV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"XX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/west)
+"XZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Ya" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Yb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Yc" = (
+/obj/machinery/mining/brace,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/drillstorage)
+"Yg" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"Yh" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/westhall)
+"Yi" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "east bump";
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"Yl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/north)
+"Ym" = (
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"Yn" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/telesci)
+"Yo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Yp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Yq" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"Ys" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ name = "Zorren Representative Kiosk";
+ req_one_access = list(1337)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Yt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Yu" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+"Yv" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/misclab)
+"Yw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Yx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/airlock/west)
+"YB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"YE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"YJ" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "science_outpost"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"YN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch)
+"YS" = (
+/obj/machinery/door/blast/regular{
+ dir = 2;
+ id = "anomaly_testing_v";
+ name = "Anomaly Testing Vent"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/xenoarch/chamber)
+"YT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"YV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"YX" = (
+/obj/structure/reagent_dispensers/coolanttank,
+/obj/machinery/camera/network/research_outpost{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Zb" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"Zc" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/xenoarch)
+"Ze" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"Zg" = (
+/obj/machinery/camera/network/research_outpost,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"Zi" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Zj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Zn" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Zo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Zp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/offmap/aerostat/inside/toxins)
+"Zs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"Zu" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Zv" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ cycle_to_external_air = 1;
+ frequency = 1380;
+ id_tag = "aerostat_toxins";
+ pixel_y = 29
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"Zw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/wardrobe/genetics_white,
+/obj/machinery/camera/network/research_outpost{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/genetics)
+"Zx" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/door/airlock/external{
+ frequency = 1089;
+ icon_state = "door_locked";
+ id_tag = "aerostat_door_outer";
+ locked = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/offmap/aerostat/inside/airlock/east)
+"Zz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/southchamb)
+"ZA" = (
+/turf/simulated/floor/tiled,
+/area/offmap/aerostat/inside/xenoarch)
+"ZG" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/arm/ne)
+"ZH" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"ZJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/zorrenoffice)
+"ZK" = (
+/turf/simulated/wall,
+/area/offmap/aerostat/inside/westhall)
+"ZL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/offmap/aerostat/inside/firingrange)
+"ZM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 4;
+ master_tag = "aerostat_s_w_airlock";
+ pixel_x = -24;
+ tag = "aerostat_s_w_sensint"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/airlock/south)
+"ZN" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/offmap/aerostat/inside/lobby)
+"ZO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/easthall)
+"ZR" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/northchamb)
+"ZS" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/offmap/aerostat/inside/toxins)
+"ZU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/green/virgo2,
+/area/offmap/aerostat/inside/arm/se)
+"ZV" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/floortube{
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/offmap/aerostat/inside/westhall)
+"ZZ" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/simulated/floor/plating/virgo2,
+/area/offmap/aerostat/solars)
+
+(1,1,1) = {"
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+"}
+(2,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Tq
+cZ
+"}
+(3,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(4,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(5,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(6,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(7,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(8,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(9,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(10,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(11,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(12,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(13,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(14,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(15,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(16,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(17,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(18,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(19,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(20,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(21,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(22,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(23,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(24,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(25,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+CA
+iv
+VB
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(26,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+pj
+aD
+pj
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aT
+aT
+aT
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(27,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+ei
+df
+vq
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(28,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ZZ
+qF
+qF
+bb
+aD
+fL
+qF
+qF
+RA
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aZ
+df
+dt
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(29,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+NQ
+qF
+qF
+gt
+aD
+fg
+qF
+qF
+RK
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(30,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ae
+aT
+aT
+aT
+aT
+nE
+aT
+nE
+aT
+aT
+aT
+aT
+dF
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(31,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+af
+aG
+aG
+aG
+aG
+Vs
+aD
+Vs
+aG
+aG
+aG
+aG
+dG
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ae
+aT
+aT
+aT
+aT
+kp
+do
+kp
+aT
+aT
+aT
+aT
+dF
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(32,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+af
+aG
+aG
+aG
+aG
+ON
+aD
+ON
+aG
+aG
+aG
+aG
+dG
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(33,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+bt
+aD
+ba
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(34,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(35,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cv
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+GG
+aD
+Yu
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(36,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(37,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Gz
+Na
+Ms
+EN
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+GG
+aD
+Yu
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(38,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+XX
+Ck
+vC
+EN
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(39,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+XX
+Rl
+aE
+EN
+UW
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+GG
+aD
+Yu
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(40,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+PS
+he
+Yx
+cI
+KW
+EN
+gf
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(41,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+PS
+PS
+he
+FJ
+lL
+jL
+EN
+Bt
+Bz
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+GG
+aD
+Yu
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(42,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+PS
+PS
+PS
+PS
+Rr
+Wt
+qN
+Jo
+if
+Go
+Bz
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(43,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+PS
+PS
+PS
+PS
+Rr
+Re
+qN
+Jo
+Lq
+Xa
+Go
+Bz
+UW
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+GG
+aD
+Yu
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(44,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+VO
+aD
+sE
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kF
+kF
+kF
+kF
+oW
+PS
+Rr
+Lt
+qN
+Jo
+Bu
+if
+Go
+Go
+UW
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(45,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aq
+aU
+aU
+aU
+aU
+Vs
+aD
+Vs
+aU
+aU
+aU
+aU
+dI
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kF
+kF
+ap
+ap
+ap
+kF
+PS
+Rr
+NV
+Hq
+Jo
+Kv
+Kr
+Go
+Go
+Go
+Bz
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+GG
+aD
+Yu
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(46,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+as
+dg
+dg
+dg
+dg
+rv
+aS
+kH
+dD
+dD
+dD
+dD
+dJ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kF
+kF
+kF
+wZ
+Ot
+yi
+kF
+PS
+Qd
+Zg
+HH
+FU
+Kv
+yG
+Go
+Qz
+Go
+Go
+UW
+UW
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aq
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dI
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(47,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+gT
+aD
+gT
+aD
+aD
+aD
+aD
+JG
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+oW
+kF
+CF
+od
+nU
+Fu
+ll
+ve
+PS
+Qd
+Tr
+Sl
+Lt
+Kv
+tU
+Go
+Go
+Go
+Go
+Go
+Bz
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+as
+dg
+dg
+dg
+dg
+bu
+aS
+dp
+dD
+dD
+dD
+dD
+dJ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(48,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+gT
+aD
+gT
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+PS
+ve
+wE
+yT
+Aw
+nU
+Fu
+IH
+rd
+an
+Qd
+ZK
+tk
+Xt
+OI
+oo
+Ey
+kR
+fo
+Ml
+Go
+Go
+Bz
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(49,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+pL
+di
+nQ
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+PS
+oW
+ur
+JJ
+kF
+mG
+sh
+QU
+oW
+nO
+TY
+ZK
+wF
+Lt
+Kv
+jS
+Yw
+ey
+Bh
+ef
+Go
+Go
+Go
+Bz
+Bz
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(50,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+DY
+dj
+aM
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+ce
+Py
+Xo
+MW
+QP
+GC
+rI
+iK
+ar
+zg
+KJ
+xM
+ZK
+pP
+yN
+Kv
+tA
+LN
+jj
+Zw
+oZ
+Oe
+qS
+Oe
+hM
+UW
+UW
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+cx
+di
+dq
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(51,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cy
+Im
+CJ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+Rr
+Qd
+Dh
+nu
+hL
+NC
+qL
+qL
+LZ
+nu
+Qd
+Qd
+pX
+ZK
+wF
+Lt
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+gf
+UW
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+ON
+dj
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(52,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ac
+ds
+dW
+ac
+ac
+ac
+bf
+bf
+ac
+ac
+bf
+bf
+ac
+ac
+bf
+bf
+ac
+ac
+ac
+Rr
+Rr
+ce
+Eu
+Eu
+Dh
+Jp
+lv
+Zn
+zW
+bJ
+pF
+bQ
+Qd
+Zv
+CQ
+Qd
+wF
+Lt
+iX
+pu
+Nl
+Nl
+yX
+kq
+Nl
+Nl
+Ke
+Ke
+yX
+sz
+rq
+rq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rq
+dk
+aS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(53,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ac
+ab
+dX
+BR
+Ou
+zX
+hC
+Ou
+Ou
+Ou
+Ou
+Ou
+vI
+Ou
+Ou
+Ou
+Ou
+Ou
+Ou
+bz
+pV
+pV
+DJ
+Lj
+Dh
+hu
+Pe
+xu
+qC
+qC
+qC
+hu
+Qd
+ux
+yO
+Qd
+wF
+Lt
+iX
+fR
+Nl
+Nl
+Nl
+Nl
+Nl
+Nl
+Ls
+Ls
+Nl
+jN
+Nl
+oA
+rq
+rq
+cU
+cU
+cU
+IZ
+IZ
+cU
+cU
+IZ
+IZ
+cU
+cU
+IZ
+IZ
+cU
+cU
+cU
+lo
+Oj
+cU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(54,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ac
+fe
+KE
+cw
+os
+ls
+SS
+QZ
+ac
+ac
+sQ
+sQ
+ac
+ac
+bo
+sQ
+ac
+ac
+mN
+ce
+Qd
+Qd
+jM
+un
+Dh
+Yp
+CE
+Qa
+GX
+Yt
+Mv
+yI
+Qd
+Qd
+mQ
+Qd
+il
+co
+vP
+Dl
+HJ
+HJ
+HJ
+HJ
+HJ
+qe
+mY
+bm
+UG
+jw
+bO
+bO
+bO
+vT
+nN
+nN
+nN
+nN
+nN
+nN
+Mw
+nN
+nN
+nN
+nN
+nN
+xW
+xN
+nN
+wI
+zB
+aW
+cU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(55,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ac
+np
+sn
+sn
+Mz
+Ut
+fM
+fM
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+QN
+Vi
+bG
+Qd
+tP
+un
+Dh
+mu
+MH
+Zi
+Zj
+Zj
+Ay
+kO
+Qd
+WU
+DI
+Qd
+Ek
+ZH
+iX
+Qe
+Nl
+Nl
+Nl
+Nl
+Nl
+tJ
+Nl
+Nl
+Nl
+Nl
+Nl
+Nl
+Nl
+oA
+uS
+cU
+cU
+xw
+xw
+cU
+cU
+xw
+xw
+cU
+cU
+UD
+Ev
+QI
+SG
+Fo
+cJ
+oj
+cU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(56,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+Rr
+Rr
+mL
+ig
+oK
+Qd
+IA
+un
+Dh
+FF
+Tn
+GL
+uv
+uA
+Id
+BU
+nz
+qC
+EI
+Qd
+Ek
+ZH
+iX
+Nl
+Nl
+Nl
+Nl
+Nl
+Nl
+fJ
+vM
+Dq
+ZL
+TX
+ZL
+ZL
+ID
+ID
+oA
+rq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+nr
+nr
+IY
+Er
+Rt
+cU
+cU
+cU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(57,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+Rr
+Rr
+qU
+MM
+qC
+io
+vR
+jM
+un
+Dh
+Gt
+TF
+HV
+Sa
+aF
+bR
+Br
+Qd
+Zu
+DI
+Qd
+PR
+ZH
+iX
+wY
+Nl
+Nl
+Nl
+Nl
+Nl
+yK
+NJ
+lI
+Ld
+XD
+Ld
+AP
+ID
+ID
+ID
+oA
+rq
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(58,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+de
+ce
+hG
+xC
+zu
+qC
+mD
+Vd
+Hb
+nV
+bW
+YJ
+Sw
+xK
+Qd
+Qd
+fh
+YJ
+Qd
+qC
+HU
+kf
+ck
+Md
+iX
+Nl
+Nl
+Nl
+at
+Nl
+Nl
+fJ
+vM
+sp
+Ld
+Ld
+Ld
+Ld
+ID
+ID
+ID
+ID
+oA
+rq
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(59,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+de
+de
+Qd
+Qd
+Qd
+Bc
+Gu
+TW
+Qd
+WQ
+LR
+Qd
+Qd
+JV
+Qd
+Qd
+Qd
+Qd
+Qd
+Qd
+MM
+Sv
+Wn
+VJ
+ZV
+iX
+DG
+Nl
+Nl
+at
+Nl
+Nl
+FT
+NJ
+lI
+Ld
+XD
+Ld
+AP
+ID
+ID
+ID
+ID
+ID
+oA
+KK
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(60,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+de
+wC
+xP
+Qd
+ol
+qC
+hB
+Yb
+xO
+JM
+gL
+ud
+jy
+GR
+xy
+jy
+jy
+jy
+jy
+GR
+jy
+TP
+DL
+nv
+LF
+Sb
+iX
+at
+Nl
+Nl
+at
+Nl
+Nl
+fJ
+vM
+sp
+Ld
+Ld
+Ld
+Ld
+ID
+ID
+ID
+ID
+ID
+iX
+KK
+KK
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(61,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+de
+wC
+Xr
+Hy
+tv
+NU
+Yb
+wG
+Zo
+Ox
+Qd
+ji
+ib
+ib
+ib
+nh
+aI
+aI
+aI
+aI
+wr
+qC
+qC
+CC
+Wn
+NW
+jo
+iX
+at
+fx
+Nl
+Nl
+Nl
+Nl
+yK
+NJ
+lI
+Ld
+XD
+Ld
+AP
+ID
+ID
+ID
+ID
+ID
+iX
+Kd
+KK
+KK
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(62,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+de
+wC
+Gf
+Xr
+mt
+Qd
+NH
+Oz
+CM
+hU
+QV
+Qd
+nb
+qC
+FK
+qC
+zb
+Ca
+qC
+qC
+qC
+jM
+hs
+qC
+QV
+Wn
+XT
+ZH
+iX
+Rm
+bx
+bx
+Ew
+mA
+Ne
+RW
+RL
+sp
+Ld
+nF
+Ld
+Ld
+ID
+ID
+ID
+ID
+ID
+iX
+PJ
+eW
+KK
+KK
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(63,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+de
+wC
+ZR
+Gf
+Xr
+ch
+Qd
+Qd
+Qd
+Qd
+Ov
+SU
+GK
+OM
+OM
+nK
+OM
+zV
+OM
+Td
+OM
+OM
+JD
+nK
+OM
+kG
+Ry
+Yh
+ov
+rS
+nJ
+qb
+qb
+qb
+xn
+qx
+eT
+eN
+eN
+eN
+eN
+eN
+MR
+us
+iX
+iX
+iX
+iX
+iX
+Nm
+eW
+eW
+KK
+KK
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(64,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+de
+wC
+ju
+ZR
+Gf
+Xr
+mt
+Ce
+cB
+yc
+cB
+cB
+GF
+gD
+qC
+Ly
+oc
+qC
+mc
+qC
+qC
+oc
+kt
+QO
+JT
+bY
+Nu
+Rr
+AQ
+Md
+vg
+eE
+rs
+BH
+Lg
+vL
+pf
+wo
+eP
+Ym
+Ym
+qp
+Jn
+xD
+Bp
+Mk
+hS
+lx
+VI
+ie
+JS
+eW
+eW
+wz
+KK
+KK
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(65,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+tg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+de
+de
+mi
+ju
+ZR
+Gf
+Xr
+lX
+Ce
+bK
+CO
+Cl
+PN
+GF
+qC
+qC
+qC
+qC
+qC
+mc
+qC
+qC
+qC
+qC
+Fi
+qC
+Kw
+mo
+Rr
+Gs
+Ft
+vg
+ky
+Ym
+Ym
+Ym
+Ym
+Ym
+xe
+Ym
+Ym
+Ym
+Ym
+Ym
+Jn
+Bp
+XZ
+Ya
+Ya
+Ru
+ie
+jn
+eW
+eW
+Rj
+zG
+qc
+Ao
+Ao
+Ao
+Hv
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+LW
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(66,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+iW
+la
+la
+la
+BA
+KD
+sm
+Ar
+lk
+vm
+qf
+Pl
+As
+bw
+AL
+WF
+XQ
+bC
+qC
+qC
+zJ
+zJ
+qC
+Ih
+xU
+xU
+xU
+xU
+Wf
+Fr
+ST
+SQ
+Rr
+gQ
+jo
+vg
+cR
+Ym
+Ym
+Ym
+Ym
+Ym
+qT
+pf
+pf
+pf
+pf
+pf
+pf
+FL
+sO
+Ho
+Tv
+Vu
+zt
+hY
+iC
+iC
+sJ
+iC
+Ko
+pn
+Be
+Eh
+HQ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(67,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Ra
+tm
+li
+cn
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kk
+Wk
+UZ
+Wb
+sN
+vt
+vt
+vt
+vt
+vt
+vt
+wi
+Ce
+Ti
+bP
+no
+cC
+GF
+VU
+qC
+Vx
+HL
+Sr
+nB
+lW
+qC
+qC
+qC
+qC
+mk
+Bs
+Az
+TB
+Wo
+cp
+TB
+GB
+GB
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+IK
+Bp
+ie
+Es
+DF
+ie
+ie
+QX
+eW
+eW
+eW
+eW
+eW
+eW
+Bq
+Eh
+HQ
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Rx
+zC
+ct
+DC
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(68,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cn
+tq
+IV
+cn
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kk
+Wk
+Te
+xP
+xP
+xP
+xP
+xP
+xP
+xP
+xP
+oJ
+Ce
+qi
+Vl
+bA
+QE
+GF
+qC
+qC
+JI
+JI
+qC
+og
+qC
+qC
+qC
+qC
+Pr
+BG
+Az
+aJ
+Hz
+hq
+yZ
+nL
+lO
+GB
+KC
+Ym
+Ym
+Ym
+Ym
+hj
+Ym
+Ym
+Ym
+Ym
+Ym
+Bp
+OF
+Ya
+wD
+LH
+ie
+QX
+eW
+eW
+VG
+VG
+VG
+eW
+BP
+it
+KK
+Qg
+Qg
+aw
+aw
+aw
+aw
+aw
+Qg
+DC
+Mi
+JH
+DC
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(69,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Sp
+cn
+Wd
+JB
+bn
+Wd
+cn
+qM
+cO
+cn
+cn
+qM
+cO
+de
+qj
+cX
+Ng
+OL
+OL
+OL
+OL
+OL
+OL
+hp
+yu
+Ce
+uu
+Vl
+cA
+QE
+GF
+qC
+qC
+qC
+qC
+qC
+og
+qC
+zJ
+qC
+qC
+Fi
+lT
+GB
+aK
+aQ
+dn
+dn
+dN
+aR
+GB
+Oc
+Kh
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+WZ
+Ym
+Bp
+hN
+Ya
+Ya
+KI
+HN
+QX
+eW
+eW
+eW
+pY
+eW
+eW
+wQ
+eW
+KK
+DC
+IB
+fS
+DC
+DC
+IB
+IB
+DC
+DP
+RH
+WJ
+DP
+DC
+Iy
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(70,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+WS
+aw
+bk
+bl
+oL
+Bb
+Lo
+Rn
+HT
+rM
+BE
+OR
+rM
+BE
+rM
+um
+ge
+bN
+bj
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+wg
+Ce
+ke
+Vl
+yU
+TR
+GF
+mu
+qC
+Bk
+nf
+Sr
+nB
+qC
+Fw
+nf
+lh
+AC
+qC
+DK
+Mj
+bZ
+dK
+dM
+dO
+Mj
+Gm
+Ym
+MC
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+gO
+pC
+Bp
+Xe
+Ya
+Ya
+Uv
+pA
+QX
+eW
+eW
+eW
+eW
+eW
+eW
+Cj
+tE
+tE
+vc
+Th
+SR
+al
+kI
+Dk
+VR
+mn
+ZM
+Fy
+cu
+pD
+TO
+Kc
+aw
+mR
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(71,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bi
+kD
+ri
+aN
+PD
+fj
+Si
+TV
+Yl
+zw
+hf
+Yl
+TV
+gv
+oe
+gk
+bj
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+bq
+Ce
+fH
+vB
+Da
+SW
+Cc
+Bk
+nf
+xU
+Ni
+qC
+jH
+OX
+Hd
+xf
+OX
+eR
+OX
+fK
+UL
+cP
+dK
+dM
+dN
+Mj
+kN
+Ym
+MC
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+gO
+Ym
+Bp
+mF
+SL
+Ya
+Ya
+pq
+uh
+pH
+er
+er
+er
+er
+er
+NE
+er
+er
+zM
+uy
+Rs
+uy
+qw
+Yq
+XM
+Rk
+GA
+YT
+sk
+oS
+DU
+nw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(72,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cn
+cn
+Wd
+QT
+bp
+Wd
+cn
+fW
+gN
+cn
+cn
+fW
+gN
+de
+qj
+Ze
+wb
+In
+dY
+dY
+lH
+ua
+ua
+sc
+Ny
+Ce
+qh
+Vl
+cA
+QE
+ez
+qC
+Fi
+Bk
+ZS
+qC
+og
+qC
+Fi
+Fi
+qC
+AC
+jT
+GB
+aO
+dh
+dL
+dL
+dO
+aR
+GB
+Ym
+ZN
+bU
+bU
+bU
+bU
+bU
+bU
+bU
+AK
+Ym
+Bp
+KI
+Zs
+Ya
+KI
+HN
+eW
+QX
+eW
+eW
+gP
+eW
+eW
+OG
+eW
+KK
+DC
+Jd
+Jz
+DC
+DC
+Jd
+Jd
+DC
+DP
+yD
+vj
+DP
+DC
+DC
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(73,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cn
+Dt
+Qu
+cn
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kk
+Us
+hk
+BW
+KP
+xP
+xP
+Fh
+qZ
+qZ
+qZ
+pr
+fV
+gX
+Vl
+cA
+QE
+ez
+hG
+vW
+PU
+py
+xU
+nB
+rg
+AC
+AC
+qC
+AC
+Kj
+GB
+aP
+nL
+BO
+Um
+EQ
+yk
+GB
+zE
+Ym
+Ym
+Ym
+Ym
+OY
+Ym
+Ym
+Ym
+Ym
+Ym
+Bp
+dv
+ZJ
+Ya
+Hj
+ie
+eW
+QX
+eW
+VG
+VG
+VG
+eW
+OG
+pm
+KK
+Qg
+Qg
+aw
+aw
+aw
+aw
+aw
+Qg
+DC
+sX
+yy
+DC
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(74,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+KH
+Ep
+mx
+cn
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kk
+Us
+gG
+Aa
+Ii
+DM
+qJ
+Ha
+hn
+hn
+eM
+cF
+so
+ca
+Vl
+zF
+QE
+ez
+VU
+AC
+rx
+Ju
+xU
+Pq
+xU
+Qa
+Ju
+xU
+Wf
+At
+GB
+GB
+TB
+om
+cp
+TB
+GB
+GB
+xl
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+Ym
+IK
+Bp
+ie
+Xx
+Ys
+ie
+ie
+eW
+QX
+eW
+eW
+eW
+eW
+eW
+OG
+eW
+HQ
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Iy
+TT
+gS
+DC
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(75,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ko
+lu
+lu
+lu
+BA
+nm
+eO
+Qr
+gV
+eM
+eX
+ED
+US
+Ak
+pZ
+PA
+fD
+tL
+qC
+AC
+qC
+qC
+Bk
+KS
+iV
+rx
+xu
+qC
+qC
+EV
+oV
+oV
+Rr
+Qs
+JP
+vg
+eE
+Ym
+BF
+Ff
+Ff
+Ff
+sK
+Fs
+AN
+Fs
+Fs
+Fs
+Fs
+gZ
+QK
+sw
+pW
+GN
+Aq
+NO
+kB
+Zz
+uX
+NX
+gd
+WC
+VY
+vo
+HQ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(76,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Gc
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+de
+de
+re
+eO
+IN
+uV
+eM
+uq
+rw
+bL
+nx
+nx
+cE
+KZ
+WD
+SE
+qC
+qC
+qC
+mc
+ld
+qC
+AC
+qC
+gs
+yq
+oV
+oV
+Rr
+Hl
+fI
+vg
+ky
+Ym
+xl
+Ym
+Ym
+Ym
+xe
+Ym
+xl
+Ym
+Ym
+Ym
+Jn
+Bp
+XZ
+Ya
+Ya
+Ru
+ie
+qR
+eW
+eW
+Rj
+eW
+qc
+Au
+Au
+Au
+IM
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Ge
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(77,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+de
+de
+MO
+XV
+YB
+ff
+ff
+rw
+Du
+yv
+Du
+Du
+bV
+Zu
+ii
+NT
+hJ
+OW
+mc
+lK
+tu
+Mg
+Oz
+So
+Tg
+oV
+oV
+Rr
+ak
+RF
+vg
+cR
+hh
+xl
+Jn
+FX
+IF
+JQ
+kC
+ql
+pf
+qP
+BH
+CT
+Bp
+QQ
+Wx
+vp
+zA
+ie
+fw
+eW
+eW
+ft
+KK
+KK
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(78,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+de
+de
+el
+XV
+YB
+HK
+mU
+km
+km
+km
+km
+gR
+fQ
+fQ
+fQ
+fQ
+fQ
+AB
+Qb
+Oy
+Qm
+Qm
+qH
+OM
+OM
+Zp
+vb
+AF
+kc
+sg
+VA
+UC
+GP
+vK
+vK
+vK
+zc
+Nk
+Ui
+Nk
+Nk
+Nk
+Nk
+XJ
+aH
+aH
+aH
+aH
+aH
+OG
+eW
+eW
+KK
+KK
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(79,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+de
+de
+Ri
+xP
+ff
+jF
+aj
+bM
+da
+op
+Lf
+Lf
+Lf
+Lf
+jF
+UA
+Gi
+tV
+Mn
+nY
+QA
+Mp
+RU
+Ir
+Al
+jF
+CK
+BS
+GE
+sP
+WX
+lc
+DO
+Iu
+tH
+Gv
+Lu
+KG
+Rb
+Rb
+vy
+iZ
+cz
+vd
+vd
+Pa
+jV
+aH
+gC
+eW
+KK
+KK
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(80,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+de
+de
+xP
+ff
+jF
+au
+bS
+dZ
+eG
+eU
+eZ
+gh
+NM
+JA
+Mn
+kV
+Jq
+Jq
+Ae
+oY
+fn
+gx
+tD
+lG
+jF
+CK
+BS
+Uh
+Xz
+Vz
+Vz
+Vz
+dH
+Yn
+BB
+By
+By
+By
+By
+By
+By
+By
+By
+By
+By
+By
+aH
+Wr
+KK
+KK
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(81,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+de
+de
+ff
+jF
+az
+Ah
+ns
+op
+WW
+Hx
+Ul
+Ul
+Dg
+Ul
+ML
+Ul
+Ul
+sb
+Cw
+qQ
+ZA
+ZA
+SJ
+jF
+ak
+xp
+Uh
+OE
+Vz
+Vz
+Vz
+HR
+Yn
+gK
+By
+By
+By
+By
+By
+By
+By
+By
+By
+By
+By
+aH
+KK
+KK
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(82,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+de
+NN
+jF
+bE
+cr
+sU
+op
+vJ
+vJ
+Vc
+hX
+Fm
+zI
+VX
+Zc
+ti
+UH
+QH
+Gb
+Eb
+zn
+Qh
+jF
+qq
+Zb
+Uh
+XO
+Vz
+uj
+Vz
+Vz
+Yn
+gK
+By
+By
+By
+By
+xR
+By
+By
+By
+By
+By
+uk
+IP
+KK
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(83,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+Kk
+jl
+YS
+Bj
+cW
+Hu
+Ds
+Os
+zQ
+wh
+QL
+Ve
+GW
+Ip
+RP
+Jq
+Jq
+LS
+Jq
+Jq
+Og
+jF
+Qs
+JP
+Uh
+iH
+Vz
+De
+Vz
+Vz
+Yn
+gK
+By
+By
+By
+By
+By
+By
+By
+By
+By
+By
+Ht
+Ht
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(84,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+jl
+jW
+zo
+Ob
+se
+Rd
+LB
+Is
+wK
+ZA
+wp
+Ij
+fi
+YE
+hX
+hX
+ga
+Jq
+Jq
+YX
+jF
+xg
+BS
+Uh
+HM
+Vz
+Mc
+Vz
+Vz
+Yn
+BX
+By
+By
+By
+By
+By
+By
+By
+By
+By
+Ht
+Ht
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(85,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+NZ
+NZ
+QW
+Uy
+jI
+Os
+TG
+DN
+iY
+Ab
+tI
+rH
+xq
+Ul
+Ul
+fT
+Jq
+Jq
+Og
+jF
+CK
+BS
+Uh
+Ol
+Vz
+ES
+Vz
+Vz
+Yn
+gK
+By
+By
+By
+By
+By
+By
+By
+Ap
+Ht
+Ht
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Qg
+aw
+Ww
+Ww
+Ac
+RN
+AX
+aY
+aY
+aY
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(86,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+fb
+nW
+sZ
+sZ
+mT
+FV
+xx
+xx
+aw
+Qg
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+NZ
+kY
+vJ
+vJ
+vJ
+HO
+hX
+hX
+hX
+hX
+vz
+RP
+Jq
+Jq
+LS
+xs
+xs
+xs
+jF
+CK
+BS
+Uh
+JZ
+Vz
+jQ
+Vz
+Vz
+Yn
+gK
+By
+By
+By
+By
+Ct
+By
+By
+PO
+It
+aY
+aY
+jU
+jU
+aY
+aY
+jU
+jU
+aY
+aY
+kJ
+VQ
+ZU
+Fk
+pT
+tF
+ja
+aY
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(87,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+fb
+zq
+Yi
+ks
+ZG
+Sd
+XK
+zR
+fb
+fb
+tM
+tM
+fb
+fb
+tM
+tM
+fb
+fb
+LK
+KN
+SN
+Vt
+Ul
+Ul
+Ul
+sI
+Jq
+Jq
+gw
+Jq
+Jq
+LS
+Jq
+Jq
+JR
+jF
+EX
+cq
+Hw
+SY
+WN
+WN
+WN
+WN
+PG
+CV
+iB
+Ji
+Dv
+yp
+Gq
+Gq
+Gq
+CR
+RO
+RO
+RO
+RO
+RO
+RO
+Wu
+RO
+RO
+RO
+RO
+RO
+pz
+wj
+Uq
+qE
+Ad
+aX
+aY
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(88,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+fb
+dr
+sr
+dy
+zp
+Ps
+We
+zp
+zp
+zp
+zp
+zp
+iM
+zp
+zp
+zp
+zp
+zp
+zp
+XP
+fY
+fY
+fY
+fY
+fY
+Ln
+mj
+mj
+jZ
+gW
+XF
+Mb
+sD
+jf
+xc
+Oa
+cm
+Va
+Uh
+Nw
+Vz
+Vz
+Vz
+dH
+Yn
+ER
+tG
+tG
+By
+gK
+uk
+PO
+Ht
+Ht
+aY
+aY
+aY
+xF
+xF
+aY
+aY
+xF
+xF
+aY
+aY
+BV
+xF
+aY
+aY
+aY
+YV
+kb
+aY
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(89,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+fb
+pe
+iU
+fb
+fb
+fb
+Up
+Up
+fb
+fb
+Up
+Up
+fb
+fb
+lt
+Up
+fb
+fb
+fb
+ry
+ry
+KN
+wR
+lR
+Hn
+Uj
+LI
+Cq
+LS
+Ow
+mM
+yA
+Kn
+Cu
+Kn
+jF
+yH
+Po
+Uh
+SP
+rJ
+Wh
+dH
+mH
+Yn
+Yv
+Ub
+RE
+By
+LT
+Ht
+Ht
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Iw
+dl
+aT
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(90,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+VS
+dl
+jG
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ry
+KN
+jF
+jF
+jF
+jF
+jF
+rr
+jF
+jF
+XL
+jF
+jF
+jF
+jF
+Yo
+Va
+RD
+xt
+xt
+xt
+xt
+xt
+xt
+xt
+xt
+xt
+xt
+Rf
+yr
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+ON
+dj
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(91,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+dj
+ON
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ry
+KN
+wq
+wq
+rk
+KU
+BM
+KU
+jF
+rF
+Vk
+xS
+jF
+oG
+Wz
+ZO
+xa
+mE
+Jc
+GT
+II
+uD
+gi
+SV
+gi
+id
+yr
+yr
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+Gd
+dm
+dt
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(92,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aZ
+dm
+EK
+dA
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+Cd
+wq
+ys
+mz
+UB
+lq
+jF
+fA
+TZ
+Uf
+jF
+Bm
+xG
+dV
+xt
+cf
+Nn
+Nn
+Nn
+Nn
+Nn
+Nn
+Nn
+Qq
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(93,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+dE
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+Cd
+pM
+hA
+UV
+PT
+jF
+HA
+ze
+Ph
+ry
+RM
+fp
+ty
+xt
+Uw
+Nn
+Yc
+Yc
+Nn
+Nn
+Nn
+Qq
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(94,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+Cd
+lq
+UB
+mz
+jF
+jF
+jF
+jF
+ry
+Va
+XA
+ty
+lA
+cf
+Nn
+Yc
+Yc
+Nn
+gy
+Qq
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+av
+dx
+dx
+dx
+dx
+db
+aT
+SO
+FW
+FW
+FW
+FW
+dQ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(95,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+av
+dx
+dx
+dx
+dx
+db
+aT
+SO
+FW
+FW
+FW
+FW
+dQ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ry
+ry
+Yg
+YN
+bT
+lq
+AE
+lq
+ry
+zx
+XA
+ty
+lA
+cf
+Nn
+Yc
+Yc
+ed
+yr
+yr
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(96,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+Cd
+NL
+LY
+AD
+le
+lb
+ry
+Va
+XA
+ty
+hQ
+cf
+Nn
+Yc
+Yc
+Qq
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(97,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+ry
+ys
+lq
+EF
+lq
+ry
+Rp
+XA
+ty
+hQ
+cf
+Nn
+Nn
+yr
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(98,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ry
+Cd
+sW
+MK
+lD
+ry
+AI
+oM
+mX
+uG
+hv
+je
+Qq
+yr
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(99,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+Cd
+ys
+lq
+ry
+lZ
+Ma
+ek
+mg
+je
+Qq
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(100,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+Cd
+sW
+tY
+iy
+Nh
+tY
+zr
+Qq
+Qq
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(101,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Cd
+KN
+tY
+Bo
+Bo
+rT
+qB
+Dd
+fa
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(102,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+Db
+tY
+eb
+ec
+ka
+aa
+fa
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(103,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+jJ
+dP
+oU
+BK
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(104,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+kg
+oy
+Zx
+Ig
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(105,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+iN
+No
+EL
+wc
+bh
+HY
+wm
+bI
+bd
+bd
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(106,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bd
+bI
+bd
+TU
+vX
+pd
+tS
+vA
+Xp
+Xp
+bd
+OU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(107,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+du
+aD
+jR
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bd
+cj
+bg
+bg
+VE
+Hp
+Nq
+VM
+PQ
+cl
+bd
+bd
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(108,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ax
+aU
+aU
+aU
+aU
+ON
+aD
+ON
+aU
+aU
+aU
+aU
+dR
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bI
+FS
+bg
+bg
+VE
+Ki
+Qy
+bd
+hF
+bg
+Jb
+bd
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+Qv
+aD
+ps
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(109,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ay
+dB
+dB
+dB
+dB
+Qv
+aD
+ps
+zk
+zk
+zk
+zk
+dS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bI
+sT
+Jb
+bg
+Ue
+bg
+bg
+bg
+bg
+bg
+Jb
+bI
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bs
+eL
+eL
+eL
+eL
+ON
+aD
+ON
+eL
+eL
+eL
+eL
+mZ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(110,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bs
+eL
+eL
+eL
+eL
+ON
+aD
+ON
+eL
+eL
+eL
+eL
+mZ
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bI
+RV
+bg
+bg
+hO
+bg
+bg
+br
+br
+bg
+Jb
+bd
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aB
+dC
+dC
+dC
+dC
+Qk
+dC
+Qk
+dC
+dC
+dC
+dC
+dT
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(111,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aB
+dC
+dC
+dC
+dC
+Qk
+dC
+Qk
+dC
+dC
+dC
+dC
+dT
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bd
+cj
+bg
+bg
+hO
+bg
+bg
+bg
+bg
+bg
+bd
+bd
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(112,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+bd
+bI
+bd
+Kq
+nS
+ha
+Kq
+ha
+ha
+Gy
+bd
+OU
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+dU
+ON
+aD
+ON
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(113,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+ON
+aD
+ON
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+iN
+No
+EL
+ts
+bI
+bd
+bI
+bI
+bd
+bd
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+Xb
+df
+dq
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(114,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+Xb
+df
+dq
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(115,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aD
+aD
+aD
+aD
+aD
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aS
+aS
+aS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(116,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aS
+aS
+aS
+dw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(117,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(118,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(119,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(120,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(121,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(122,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(123,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(124,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(125,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(126,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(127,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(128,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(129,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(130,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(131,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(132,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(133,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(134,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(135,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(136,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(137,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(138,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(139,1,1) = {"
+cZ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+cZ
+"}
+(140,1,1) = {"
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+"}
diff --git a/maps/expedition_vr/aerostat/surface.dmm b/maps/expedition_vr/aerostat/surface.dmm
index b60deeb4de..18a31bb707 100644
--- a/maps/expedition_vr/aerostat/surface.dmm
+++ b/maps/expedition_vr/aerostat/surface.dmm
@@ -5,14 +5,14 @@
},
/obj/effect/catwalk_plated,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"au" = (
/obj/structure/salvageable/server,
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"aA" = (
/obj/machinery/door/airlock/security,
/obj/structure/cable/cyan{
@@ -21,7 +21,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"aD" = (
/obj/structure/cable/cyan{
icon_state = "2-4"
@@ -33,24 +33,24 @@
dir = 6
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"aK" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"aU" = (
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"bc" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 9
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"bm" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -60,13 +60,13 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"br" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"bt" = (
/obj/machinery/door/airlock/security,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -76,53 +76,53 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"bT" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"bU" = (
/obj/random/crate,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"bZ" = (
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"cq" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"cB" = (
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"cC" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"dz" = (
/obj/structure/table/steel,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"dA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 9
},
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"dE" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"dI" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"ex" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -135,7 +135,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"eD" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -151,7 +151,7 @@
},
/obj/effect/map_helper/airlock/sensor/int_sensor,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"eG" = (
/obj/structure/cable/cyan{
icon_state = "1-4"
@@ -161,84 +161,84 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"fa" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 5
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"fs" = (
/obj/tether_away_spawner/aerostat_surface,
/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"fx" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"fK" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"fS" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 9
},
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"fZ" = (
/obj/structure/table/woodentable,
/obj/item/device/flashlight/lamp/green,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"gb" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/park)
+/area/offmap/aerostat/surface/outpost/park)
"gd" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/portable_atmospherics/canister,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"gq" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"gv" = (
/obj/structure/cable/cyan{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"gx" = (
/obj/item/weapon/bedsheet/blue,
/obj/structure/bed/padded,
/obj/structure/curtain/black,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"gy" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"gN" = (
/obj/machinery/atmospherics/pipe/simple/visible/red,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"gU" = (
/obj/structure/table/woodentable,
/obj/item/device/flashlight/lamp/green,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"hi" = (
/obj/structure/prop/dominator,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"hj" = (
/obj/structure/cable/cyan{
icon_state = "1-8"
@@ -250,31 +250,31 @@
dir = 8
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"hq" = (
/obj/random/empty_or_lootable_crate,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"hr" = (
/obj/structure/table/woodentable,
/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"hB" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
},
/obj/machinery/light,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"hI" = (
/turf/unsimulated/wall/planetary/virgo2,
-/area/tether_away/aerostat/surface)
+/area/offmap/aerostat/surface)
"hM" = (
/obj/structure/table/rack/shelf/steel,
/obj/random/gun/random,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"iu" = (
/obj/machinery/power/apc/alarms_hidden{
dir = 4;
@@ -284,7 +284,7 @@
icon_state = "0-8"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"jd" = (
/obj/structure/cable/cyan{
icon_state = "4-9"
@@ -294,7 +294,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"ji" = (
/obj/machinery/door/airlock/multi_tile/glass,
/obj/structure/cable/cyan{
@@ -303,13 +303,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"jj" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 5
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"js" = (
/obj/machinery/power/apc/alarms_hidden{
dir = 8;
@@ -322,7 +322,7 @@
pixel_y = 28
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"jz" = (
/obj/machinery/power/apc/alarms_hidden{
dir = 8;
@@ -332,10 +332,10 @@
icon_state = "0-4"
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"jF" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"kp" = (
/obj/structure/cable/yellow{
icon_state = "6-8"
@@ -350,7 +350,7 @@
icon_state = "2-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"ks" = (
/obj/structure/cable/yellow{
icon_state = "4-6"
@@ -359,13 +359,13 @@
icon_state = "5-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"kz" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"ld" = (
/obj/machinery/door/airlock/multi_tile/metal{
icon_state = "door_locked";
@@ -374,21 +374,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"lI" = (
/obj/structure/closet/crate{
dir = 1
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"lP" = (
/obj/structure/closet/walllocker/medical/north,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"lZ" = (
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"mC" = (
/obj/machinery/power/apc/alarms_hidden{
dir = 1;
@@ -398,7 +398,7 @@
icon_state = "0-2"
},
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"nk" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -412,7 +412,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"nr" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -420,23 +420,23 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"nx" = (
/obj/structure/sign/painting/away_areas{
pixel_x = -32
},
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"nI" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"nK" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"nQ" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/int_door,
@@ -444,20 +444,22 @@
icon_state = "6-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"nS" = (
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"or" = (
/obj/structure/salvageable/machine,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"oB" = (
/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/outdoors/grass/heavy,
-/area/tether_away/aerostat/surface/outpost/park)
+/turf/simulated/floor/outdoors/grass/heavy{
+ outdoors = 0
+ },
+/area/offmap/aerostat/surface/outpost/park)
"oK" = (
/obj/structure/table/bench/wooden,
/obj/machinery/power/apc/alarms_hidden{
@@ -467,18 +469,20 @@
/obj/structure/cable/cyan{
icon_state = "0-2"
},
-/turf/simulated/floor/outdoors/grass/heavy,
-/area/tether_away/aerostat/surface/outpost/park)
+/turf/simulated/floor/outdoors/grass/heavy{
+ outdoors = 0
+ },
+/area/offmap/aerostat/surface/outpost/park)
"oW" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal{
dir = 4
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"pj" = (
/obj/structure/bed/alien,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"pv" = (
/obj/structure/cable/cyan{
icon_state = "5-8"
@@ -490,47 +494,51 @@
dir = 2
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"pD" = (
-/turf/simulated/floor/outdoors/grass/heavy,
-/area/tether_away/aerostat/surface/outpost/park)
+/turf/simulated/floor/outdoors/grass/heavy{
+ outdoors = 0
+ },
+/area/offmap/aerostat/surface/outpost/park)
"pK" = (
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"pS" = (
/obj/machinery/power/rtg/advanced,
/obj/structure/cable/yellow{
icon_state = "0-9"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"ql" = (
-/obj/structure/salvageable/personal,
-/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/obj/machinery/computer/shuttle_control/aerostat_shuttle,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor/virgo2,
+/area/offmap/aerostat/surface/shuttleconsole)
"qs" = (
/obj/machinery/door/airlock/command{
icon_state = "door_locked";
locked = 1
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"qJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"qP" = (
/obj/machinery/atmospherics/pipe/tank/air,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"rm" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"rn" = (
/obj/machinery/airlock_sensor/airlock_interior{
dir = 4;
@@ -540,6 +548,7 @@
/obj/effect/map_helper/airlock/sensor/chamber_sensor,
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
cycle_to_external_air = 1;
+ frequency = 1380;
id_tag = "v2outpost_airlock";
pixel_y = 25
},
@@ -548,27 +557,27 @@
},
/obj/effect/map_helper/airlock/atmos/chamber_pump,
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"rp" = (
/obj/machinery/power/rtg/advanced,
/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"ru" = (
/obj/structure/table/woodentable,
/obj/structure/sign/painting/away_areas{
pixel_x = 32
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"rA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"rC" = (
/obj/machinery/airlock_sensor/airlock_exterior{
dir = 4;
@@ -579,27 +588,27 @@
dir = 4
},
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"rS" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"sa" = (
/obj/effect/map_helper/airlock/atmos/pump_out_internal,
/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"si" = (
/obj/structure/table/rack/shelf/steel,
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"sl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 4
},
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"sm" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -611,7 +620,7 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"st" = (
/obj/structure/closet/crate{
dir = 1
@@ -629,10 +638,10 @@
/obj/item/weapon/material/kitchen/utensil/spoon,
/obj/item/weapon/material/kitchen/utensil/spoon,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"sA" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"sC" = (
/obj/machinery/door/airlock/multi_tile/glass{
dir = 2
@@ -641,7 +650,7 @@
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"sL" = (
/obj/structure/bed/chair/bay{
dir = 1
@@ -650,7 +659,7 @@
dir = 10
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"sO" = (
/obj/structure/cable/yellow{
icon_state = "4-10"
@@ -659,13 +668,13 @@
icon_state = "8-9"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"tm" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"ts" = (
/obj/structure/cable/cyan{
icon_state = "1-4"
@@ -676,7 +685,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"ty" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -685,55 +694,55 @@
dir = 1
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"tG" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"tL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"tP" = (
/obj/structure/salvageable/implant_container,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"uc" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"uD" = (
/obj/structure/railing,
/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"uG" = (
/obj/item/stack/cable_coil/green,
/obj/structure/cable/cyan{
icon_state = "1-4"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"uJ" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance/engi,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"uQ" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"uU" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"uW" = (
/obj/structure/cable/cyan{
icon_state = "1-4"
@@ -742,13 +751,13 @@
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/park)
+/area/offmap/aerostat/surface/outpost/park)
"vl" = (
/obj/structure/bed/roller/adv,
/obj/effect/decal/cleanable/blood/splatter,
/obj/machinery/light,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"vt" = (
/obj/structure/cable/cyan{
icon_state = "2-8"
@@ -757,7 +766,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"vu" = (
/obj/structure/cable/cyan{
icon_state = "1-4"
@@ -767,7 +776,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"vx" = (
/obj/machinery/door/airlock/command{
req_one_access = null
@@ -776,13 +785,13 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"vV" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"wb" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -791,22 +800,22 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"wf" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/techfloor/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"wi" = (
/obj/structure/table/marble,
/obj/machinery/door/window/brigdoor/southright,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"wN" = (
/obj/structure/cable/cyan{
icon_state = "1-8"
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"wT" = (
/obj/structure/cable/cyan{
icon_state = "6-8"
@@ -816,7 +825,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"xe" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -824,7 +833,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"xf" = (
/obj/machinery/light{
dir = 1
@@ -833,7 +842,7 @@
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"xv" = (
/obj/structure/bed/chair/bay/chair/padded/red,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -843,14 +852,14 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"xQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 4
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"yx" = (
/obj/machinery/power/apc/alarms_hidden{
req_access = null
@@ -863,14 +872,14 @@
},
/obj/effect/map_helper/airlock/atmos/chamber_pump,
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"yJ" = (
/obj/structure/table/woodentable,
/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"yK" = (
/obj/structure/closet/crate/bin,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -880,7 +889,7 @@
dir = 9
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"yL" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -892,36 +901,36 @@
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"zl" = (
/obj/structure/bed/chair/wood,
/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"zr" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/tiled/eris/steel/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"zG" = (
/obj/item/weapon/stool/baystool/padded{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"zL" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"zN" = (
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Ah" = (
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"Ao" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -934,12 +943,12 @@
dir = 9
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"AQ" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/hopdouble,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"Bb" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
@@ -951,7 +960,7 @@
dir = 6
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"Bs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 4
@@ -960,14 +969,14 @@
id = "v2outpost"
},
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"Cj" = (
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Cn" = (
/obj/structure/table/rack/shelf/steel,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"CF" = (
/obj/structure/cable/cyan{
icon_state = "2-8"
@@ -982,26 +991,26 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"CN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 6
},
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"CZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/aux{
dir = 4
},
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"Da" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Do" = (
/obj/structure/bed/chair/wood{
dir = 1
@@ -1010,7 +1019,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"DN" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -1018,78 +1027,80 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"DW" = (
/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+ dir = 1
},
/obj/structure/metal_edge,
/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"Ea" = (
/obj/structure/salvageable/autolathe,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"EL" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"EQ" = (
/obj/effect/floor_decal/rust,
/obj/effect/shuttle_landmark{
- base_area = /area/tether_away/aerostat/surface/explored;
+ base_area = /area/offmap/aerostat/surface/explored;
base_turf = /turf/simulated/floor/tiled/techfloor/virgo2;
landmark_tag = "aerostat_surface";
name = "Virgo 2 Surface"
},
/turf/simulated/floor/tiled/techfloor/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"ET" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/hopdouble,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"EV" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
},
/obj/machinery/portable_atmospherics/canister,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"Fr" = (
/obj/effect/catwalk_plated,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/supply,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"FL" = (
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"FM" = (
/obj/machinery/button/remote/blast_door{
id = "v2outpost";
pixel_y = 27
},
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 4
+ },
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"FO" = (
/obj/structure/closet/crate{
dir = 2
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"FT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"FU" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"FW" = (
/obj/structure/cable/yellow{
icon_state = "6-8"
@@ -1098,7 +1109,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"Ge" = (
/obj/structure/cable/cyan{
icon_state = "0-4"
@@ -1108,34 +1119,34 @@
req_access = null
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Gr" = (
/obj/machinery/power/rtg/advanced,
/obj/structure/cable/yellow,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"Gv" = (
/obj/structure/table/woodentable,
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"Gy" = (
/obj/structure/salvageable/server,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"GD" = (
/obj/structure/medical_stand/anesthetic,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"GH" = (
/obj/structure/table/woodentable,
/obj/structure/sign/painting/away_areas{
pixel_x = 32
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"Ha" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -1144,7 +1155,7 @@
dir = 9
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Hn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -1153,46 +1164,46 @@
dir = 8
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"Hx" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"HF" = (
/obj/machinery/light,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"HR" = (
/turf/simulated/mineral/virgo2,
-/area/tether_away/aerostat/surface/unexplored)
+/area/offmap/aerostat/surface/unexplored)
"HU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/aux{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"IB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"II" = (
/obj/machinery/atmospherics/pipe/manifold/visible/supply,
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"IO" = (
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"Jf" = (
/obj/structure/bed/chair/wood{
dir = 1
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Jp" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -1201,11 +1212,13 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Js" = (
/obj/structure/table/bench/wooden,
-/turf/simulated/floor/outdoors/grass/heavy,
-/area/tether_away/aerostat/surface/outpost/park)
+/turf/simulated/floor/outdoors/grass/heavy{
+ outdoors = 0
+ },
+/area/offmap/aerostat/surface/outpost/park)
"JS" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -1217,27 +1230,27 @@
dir = 4
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"JZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 8
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"Kf" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Kl" = (
/obj/structure/table/steel,
/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"KB" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"KJ" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
dir = 8
@@ -1245,35 +1258,43 @@
/obj/effect/map_helper/airlock/atmos/pump_out_external,
/obj/machinery/light,
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"Ll" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Lq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 4
},
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"Lr" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"Lz" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/aux,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 4;
+ frequency = 1380;
+ master_tag = "v2outpost_airlock";
+ name = "exterior access button";
+ pixel_x = -24
+ },
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"LA" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 9
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"LL" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 10
@@ -1282,14 +1303,13 @@
dir = 4
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"LN" = (
/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
+ dir = 4
},
/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"LT" = (
/obj/machinery/power/apc/alarms_hidden{
dir = 4;
@@ -1299,7 +1319,7 @@
icon_state = "0-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"LV" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -1309,17 +1329,17 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Mw" = (
/obj/structure/closet/crate/bin,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Mz" = (
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 9
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"MJ" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -1331,30 +1351,30 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"MR" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"MT" = (
/obj/machinery/button/remote/blast_door{
id = "v2outpost";
pixel_y = 27
},
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/aux{
+ dir = 1
},
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"MX" = (
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"Ng" = (
/obj/machinery/light,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Nl" = (
/obj/structure/closet/crate/bin,
/obj/structure/cable/cyan{
@@ -1365,13 +1385,13 @@
req_access = null
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"Nm" = (
/obj/structure/cable/cyan{
icon_state = "1-8"
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"Nn" = (
/obj/machinery/power/apc/alarms_hidden{
dir = 1;
@@ -1381,18 +1401,18 @@
icon_state = "0-8"
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"Ny" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/tiled/eris/white/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"NF" = (
/obj/structure/closet/crate/bin,
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"NU" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 5
@@ -1400,7 +1420,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"NW" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -1410,48 +1430,54 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Oi" = (
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Ot" = (
/obj/structure/window/reinforced/full,
/obj/structure/grille,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"ON" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/storage/box/glasses,
/obj/item/paint_brush,
/obj/item/paint_palette,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"OT" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"Pe" = (
/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"Pn" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Px" = (
/obj/structure/table/bench/wooden,
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
-/turf/simulated/floor/outdoors/grass/heavy,
-/area/tether_away/aerostat/surface/outpost/park)
+/turf/simulated/floor/outdoors/grass/heavy{
+ outdoors = 0
+ },
+/area/offmap/aerostat/surface/outpost/park)
"PE" = (
/obj/machinery/light{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"PH" = (
/obj/structure/cable/cyan{
icon_state = "4-10"
@@ -1461,43 +1487,55 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"PZ" = (
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Qp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"QF" = (
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"QJ" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
+"QZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1380;
+ master_tag = "v2outpost_airlock";
+ name = "interior access button";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/offmap/aerostat/surface/outpost/hallway)
"Ra" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Rh" = (
/obj/structure/railing/grey{
dir = 8
},
/obj/structure/salvageable/server,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Rl" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"Rw" = (
/turf/simulated/floor/hull/virgo2,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"RP" = (
/obj/machinery/door/airlock/command{
req_one_access = null
@@ -1506,14 +1544,14 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/officertwo)
+/area/offmap/aerostat/surface/outpost/officertwo)
"RQ" = (
/obj/structure/railing/grey{
dir = 8
},
/obj/structure/salvageable/implant_container,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Sr" = (
/obj/structure/closet/walllocker_double/kitchen/west,
/obj/item/weapon/storage/box/tgmc_mre,
@@ -1531,27 +1569,26 @@
pixel_y = -4
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Sx" = (
/obj/structure/railing{
- dir = 8;
- icon_state = "railing0"
+ dir = 8
},
/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"SI" = (
/turf/simulated/floor/water/indoors,
-/area/tether_away/aerostat/surface/outpost/park)
+/area/offmap/aerostat/surface/outpost/park)
"SS" = (
/turf/simulated/mineral/floor/ignore_mapgen/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"Ta" = (
/obj/structure/railing/grey{
dir = 8
},
/obj/structure/salvageable/machine,
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Tc" = (
/obj/effect/map_helper/airlock/door/ext_door,
/obj/machinery/door/airlock/glass_external,
@@ -1559,7 +1596,7 @@
dir = 4
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"TM" = (
/obj/structure/bed/chair/bay/chair/padded/red{
dir = 4
@@ -1568,51 +1605,51 @@
pixel_y = 28
},
/turf/simulated/floor/tiled/eris/steel,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Ur" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/storage/box/glasses/pint,
/obj/item/canvas/twentyfour_twentyfour,
/obj/item/canvas/nineteen_nineteen,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"UC" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
dir = 4
},
/obj/effect/map_helper/airlock/atmos/pump_out_internal,
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"UE" = (
/obj/machinery/power/terminal,
/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"UJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/park)
+/area/offmap/aerostat/surface/outpost/park)
"UN" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/tiled/eris/steel/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Vb" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"Vq" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
dir = 4
},
/obj/effect/map_helper/airlock/atmos/chamber_pump,
/turf/simulated/floor/tiled/eris/dark/danger,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"Vr" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -1621,13 +1658,13 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"VH" = (
/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"VJ" = (
/obj/structure/cable/cyan{
icon_state = "1-2"
@@ -1639,7 +1676,7 @@
dir = 10
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"VW" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -1649,33 +1686,33 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"We" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/visible/universal{
dir = 4
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
"Wg" = (
/obj/machinery/light,
/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"Wy" = (
/obj/structure/cable/cyan{
icon_state = "0-2"
},
/obj/machinery/power/smes/buildable/point_of_interest,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/powerroom)
+/area/offmap/aerostat/surface/outpost/powerroom)
"Wz" = (
/obj/random/coin,
/obj/structure/closet/crate/large,
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"WB" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable/cyan{
@@ -1688,7 +1725,7 @@
dir = 8
},
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"WC" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -1700,18 +1737,18 @@
dir = 8
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"WF" = (
/obj/machinery/door/airlock/maintenance/engi{
req_one_access = null
},
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"WV" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/int_door,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/airlock)
+/area/offmap/aerostat/surface/outpost/airlock)
"Xh" = (
/obj/structure/cable/cyan{
icon_state = "2-10"
@@ -1719,7 +1756,7 @@
/obj/machinery/atmospherics/pipe/manifold/visible/supply,
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Xq" = (
/obj/structure/cable/cyan{
icon_state = "5-8"
@@ -1729,24 +1766,24 @@
},
/obj/structure/catwalk,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"XN" = (
/obj/structure/bed/chair/wood,
/turf/simulated/floor/tiled/eris/dark,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Yk" = (
/obj/structure/salvageable/machine,
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/backroom)
+/area/offmap/aerostat/surface/outpost/backroom)
"Zb" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
/turf/simulated/floor/tiled/eris/bcircuit,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Zi" = (
/obj/structure/cable/cyan{
icon_state = "4-8"
@@ -1759,42 +1796,42 @@
req_one_access = list(777)
},
/turf/simulated/floor/tiled/eris/dark/orangecorner,
-/area/tether_away/aerostat/surface/outpost/hallway)
+/area/offmap/aerostat/surface/outpost/hallway)
"Zt" = (
/obj/structure/table/woodentable,
/obj/machinery/chemical_dispenser/bar_soft/full,
/turf/simulated/floor/tiled/eris/steel/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"Zu" = (
/obj/structure/table/rack/shelf/steel,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"Zv" = (
/obj/structure/closet/walllocker/medical/north,
/obj/machinery/washing_machine,
/turf/simulated/floor/wood,
-/area/tether_away/aerostat/surface/outpost/barracks)
+/area/offmap/aerostat/surface/outpost/barracks)
"ZJ" = (
/obj/machinery/vending/foodfast,
/turf/simulated/floor/tiled/eris/steel/techfloor_grid,
-/area/tether_away/aerostat/surface/outpost/cafe)
+/area/offmap/aerostat/surface/outpost/cafe)
"ZL" = (
/obj/random/crate,
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
/turf/simulated/floor/tiled/eris/dark/monofloor,
-/area/tether_away/aerostat/surface/outpost/officerone)
+/area/offmap/aerostat/surface/outpost/officerone)
"ZQ" = (
/turf/simulated/mineral/virgo2,
-/area/tether_away/aerostat/surface/explored)
+/area/offmap/aerostat/surface/explored)
"ZW" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 28
},
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/plating/eris/under,
-/area/tether_away/aerostat/surface/outpost/guardpost)
+/area/offmap/aerostat/surface/outpost/guardpost)
(1,1,1) = {"
hI
@@ -5325,7 +5362,7 @@ cB
LL
jj
dE
-bT
+QZ
bc
eD
gq
@@ -6319,7 +6356,7 @@ ZQ
ZQ
ZQ
rS
-Rw
+Lq
Rw
Rw
Bs
@@ -10240,7 +10277,7 @@ SS
SS
SS
SS
-SS
+wf
SS
SS
SS
@@ -10381,9 +10418,9 @@ SS
SS
SS
SS
-SS
+wf
ql
-SS
+wf
SS
SS
SS
@@ -10524,14 +10561,14 @@ LN
LN
LN
LN
-LN
-LN
+wf
+SS
wf
wf
-LN
-LN
-LN
-LN
+wf
+SS
+SS
+SS
LN
LN
LN
@@ -11095,7 +11132,7 @@ wf
wf
wf
wf
-wf
+EQ
wf
wf
wf
@@ -11379,7 +11416,7 @@ wf
wf
wf
wf
-EQ
+wf
wf
wf
wf
@@ -12513,11 +12550,11 @@ Sx
Sx
Sx
Sx
-Sx
+SS
wf
wf
-Sx
-Sx
+wf
+SS
Sx
Sx
Sx
diff --git a/maps/expedition_vr/beach/_beach.dm b/maps/expedition_vr/beach/_beach.dm
index 6d06864d2a..8bbc1765b7 100644
--- a/maps/expedition_vr/beach/_beach.dm
+++ b/maps/expedition_vr/beach/_beach.dm
@@ -14,6 +14,11 @@
known = TRUE
icon_state = "desert"
+ skybox_icon = 'icons/skybox/virgo4.dmi'
+ skybox_icon_state = "v4"
+ skybox_pixel_x = 0
+ skybox_pixel_y = 0
+
//This is a special subtype of the thing that generates ores on a map
//It will generate more rich ores because of the lower numbers than the normal one
/datum/random_map/noise/ore/beachmine
diff --git a/maps/expedition_vr/beach/beach.dmm b/maps/expedition_vr/beach/beach.dmm
index 51c4e6d2e7..e2ef0578d2 100644
--- a/maps/expedition_vr/beach/beach.dmm
+++ b/maps/expedition_vr/beach/beach.dmm
@@ -562,9 +562,6 @@
/obj/machinery/reagentgrinder,
/turf/simulated/floor/tiled/eris/cafe,
/area/tether_away/beach/resort/kitchen)
-"hN" = (
-/turf/simulated/floor/holofloor/beach/sand,
-/area/tether_away/beach/jungle)
"hQ" = (
/obj/structure/flora/sif/subterranean,
/turf/simulated/floor/outdoors/grass{
@@ -19277,7 +19274,7 @@ aa
aa
aa
aa
-hN
+aa
aa
tr
aj
diff --git a/maps/gateway_vr/carpfarm.dm b/maps/gateway_vr/carpfarm.dm
index 281ff2e01b..61658710ef 100644
--- a/maps/gateway_vr/carpfarm.dm
+++ b/maps/gateway_vr/carpfarm.dm
@@ -1,10 +1,11 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/carpfarm
+/obj/effect/overmap/visitable/sector/common_gateway/carpfarm
initial_generic_waypoints = list("carpfarm1", "carpfarm2")
name = "Carp-Infested Outpost"
scanner_desc = @{"[i]Registration[/i]: UNKNOWN
[i]Class[/i]: Installation
[i]Transponder[/i]: None Detected
[b]Notice[/b]: Many spaceborne lifesigns detected"}
+ known = FALSE
/area/awaymission/carpfarm
icon_state = "blank"
diff --git a/maps/gateway_vr/carpfarm.dmm b/maps/gateway_vr/carpfarm.dmm
index 34feaf87d4..df90d3d7fd 100644
--- a/maps/gateway_vr/carpfarm.dmm
+++ b/maps/gateway_vr/carpfarm.dmm
@@ -746,7 +746,7 @@
/turf/space,
/area/space)
"Fi" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/carpfarm,
+/obj/effect/overmap/visitable/sector/common_gateway/carpfarm,
/turf/space,
/area/space)
"Ia" = (
diff --git a/maps/gateway_vr/eggnogtown.dm b/maps/gateway_vr/eggnogtown.dm
index 9626fd1409..fd9d561383 100644
--- a/maps/gateway_vr/eggnogtown.dm
+++ b/maps/gateway_vr/eggnogtown.dm
@@ -1,4 +1,4 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/eggnogtown
+/obj/effect/overmap/visitable/sector/common_gateway/eggnogtown
name = "bluespace shimmer"
desc = "The shimmering reflection of some sort of bluespace phenomena."
scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable, if cold."}
@@ -7,19 +7,19 @@
color = "#171DFF" //bloo
in_space = 0
-/datum/map_template/tether_lateload/gateway/eggnogtown/on_map_loaded(z)
- . = ..()
- new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
- new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
+/datum/map_template/common_lateload/gateway/eggnogtown/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
-/datum/map_template/tether_lateload/gateway/eggnogtownunderground/on_map_loaded(z)
- . = ..()
- new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
- new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
+/datum/map_template/common_lateload/gateway/eggnogtownunderground/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
/obj/effect/landmark/map_data/eggnogtown
- height = 2
+ height = 2
//Areas//
diff --git a/maps/gateway_vr/eggnogtown.dmm b/maps/gateway_vr/eggnogtown.dmm
index 502a92bf54..3219728088 100644
--- a/maps/gateway_vr/eggnogtown.dmm
+++ b/maps/gateway_vr/eggnogtown.dmm
@@ -1395,7 +1395,7 @@
/turf/simulated/floor/tiled,
/area/gateway/eggnogtown/stokeswashere/bathroom)
"ma" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/eggnogtown,
+/obj/effect/overmap/visitable/sector/common_gateway/eggnogtown,
/turf/simulated/mineral/ignore_cavegen{
temperature = 258.15
},
diff --git a/maps/gateway_vr/listeningpost.dm b/maps/gateway_vr/listeningpost.dm
index 14d95aa2dd..3483d826bb 100644
--- a/maps/gateway_vr/listeningpost.dm
+++ b/maps/gateway_vr/listeningpost.dm
@@ -1,4 +1,4 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/listeningpost
+/obj/effect/overmap/visitable/sector/common_gateway/listeningpost
initial_generic_waypoints = list("tether_excursion_listeningpost")
name = "Strange Asteroid"
scanner_desc = @{"[i]Registration[/i]: UNKNOWN
diff --git a/maps/gateway_vr/listeningpost.dmm b/maps/gateway_vr/listeningpost.dmm
index 8f451550f0..a14786ace9 100644
--- a/maps/gateway_vr/listeningpost.dmm
+++ b/maps/gateway_vr/listeningpost.dmm
@@ -267,7 +267,7 @@
/turf/simulated/floor/greengrid,
/area/mine/explored)
"aW" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/listeningpost,
+/obj/effect/overmap/visitable/sector/common_gateway/listeningpost,
/turf/space,
/area/space)
"aX" = (
diff --git a/maps/gateway_vr/snow_outpost.dm b/maps/gateway_vr/snow_outpost.dm
index c840ce401a..1814683c45 100644
--- a/maps/gateway_vr/snow_outpost.dm
+++ b/maps/gateway_vr/snow_outpost.dm
@@ -1,4 +1,4 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/snowoutpost
+/obj/effect/overmap/visitable/sector/common_gateway/snowoutpost
initial_generic_waypoints = list("tether_excursion_snow_outpost")
in_space = 0
name = "Snowy Outpost"
diff --git a/maps/gateway_vr/snow_outpost.dmm b/maps/gateway_vr/snow_outpost.dmm
index f5af281984..6878639a32 100644
--- a/maps/gateway_vr/snow_outpost.dmm
+++ b/maps/gateway_vr/snow_outpost.dmm
@@ -2868,7 +2868,7 @@
/turf/simulated/floor/snow/snow2,
/area/awaymission/snow_outpost/dark)
"Uy" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/snowoutpost,
+/obj/effect/overmap/visitable/sector/common_gateway/snowoutpost,
/turf/simulated/mineral/ignore_mapgen,
/area/awaymission/snow_outpost/dark)
"Vk" = (
diff --git a/maps/gateway_vr/snowfield.dm b/maps/gateway_vr/snowfield.dm
index fc68f82aa9..3aed3117ba 100644
--- a/maps/gateway_vr/snowfield.dm
+++ b/maps/gateway_vr/snowfield.dm
@@ -1,4 +1,4 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/snowfield
+/obj/effect/overmap/visitable/sector/common_gateway/snowfield
initial_generic_waypoints = list("tether_excursion_snowfield")
in_space = 0
name = "Snowy Field"
diff --git a/maps/gateway_vr/snowfield.dmm b/maps/gateway_vr/snowfield.dmm
index 1189687dff..7292de11f1 100644
--- a/maps/gateway_vr/snowfield.dmm
+++ b/maps/gateway_vr/snowfield.dmm
@@ -1643,7 +1643,7 @@
},
/area/awaymission/snowfield/restricted)
"Bw" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/snowfield,
+/obj/effect/overmap/visitable/sector/common_gateway/snowfield,
/turf/simulated/floor/outdoors/snow{
nitrogen = 93.7835;
oxygen = 20.7263;
diff --git a/maps/gateway_vr/variable/arynthilake.dm b/maps/gateway_vr/variable/arynthilake.dm
index e710acf305..2801c092bb 100644
--- a/maps/gateway_vr/variable/arynthilake.dm
+++ b/maps/gateway_vr/variable/arynthilake.dm
@@ -1,4 +1,4 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/arynthilake
+/obj/effect/overmap/visitable/sector/common_gateway/arynthilake
name = "bluespace shimmer"
desc = "The shimmering reflection of some sort of bluespace phenomena."
scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable."}
@@ -8,29 +8,29 @@
unknown_state = "field"
known = FALSE
-/datum/map_template/tether_lateload/gateway/arynthilake/on_map_loaded(z)
- . = ..()
- new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
- new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
+/datum/map_template/common_lateload/gateway/arynthilake/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
-/datum/map_template/tether_lateload/gateway/arynthilakeunderground/on_map_loaded(z)
- . = ..()
- new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
- new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
+/datum/map_template/common_lateload/gateway/arynthilakeunderground/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
-/datum/map_template/tether_lateload/gateway/arynthilake_b/on_map_loaded(z)
- . = ..()
- new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
- new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
+/datum/map_template/common_lateload/gateway/arynthilake_b/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
-/datum/map_template/tether_lateload/gateway/arynthilakeunderground_b/on_map_loaded(z)
- . = ..()
- new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
- new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
+/datum/map_template/common_lateload/gateway/arynthilakeunderground_b/on_map_loaded(z)
+ . = ..()
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
/obj/effect/landmark/map_data/arynthilake
- height = 2
+ height = 2
//Areas//
diff --git a/maps/gateway_vr/variable/arynthilake_a.dmm b/maps/gateway_vr/variable/arynthilake_a.dmm
index 6da233bf6c..11f7326b98 100644
--- a/maps/gateway_vr/variable/arynthilake_a.dmm
+++ b/maps/gateway_vr/variable/arynthilake_a.dmm
@@ -1175,7 +1175,7 @@
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
"sl" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/arynthilake,
+/obj/effect/overmap/visitable/sector/common_gateway/arynthilake,
/turf/simulated/mineral/ignore_cavegen,
/area/gateway/arynthilake/caves)
"sA" = (
diff --git a/maps/gateway_vr/variable/arynthilake_b.dmm b/maps/gateway_vr/variable/arynthilake_b.dmm
index 5ed87dc765..9f2634d8d5 100644
--- a/maps/gateway_vr/variable/arynthilake_b.dmm
+++ b/maps/gateway_vr/variable/arynthilake_b.dmm
@@ -308,7 +308,7 @@
},
/area/gateway/arynthilake/dome)
"fC" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/arynthilake,
+/obj/effect/overmap/visitable/sector/common_gateway/arynthilake,
/turf/simulated/mineral/ignore_cavegen,
/area/gateway/arynthilake/caves)
"fX" = (
diff --git a/maps/gateway_vr/variable/honlethhighlands.dm b/maps/gateway_vr/variable/honlethhighlands.dm
index 9eb1104f22..b85d34c282 100644
--- a/maps/gateway_vr/variable/honlethhighlands.dm
+++ b/maps/gateway_vr/variable/honlethhighlands.dm
@@ -1,4 +1,4 @@
-/obj/effect/overmap/visitable/sector/tether_gateway/honlethhighlands
+/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands
name = "bluespace shimmer"
desc = "The shimmering reflection of some sort of bluespace phenomena."
scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable, if very cold."}
@@ -8,12 +8,12 @@
in_space = 0
unknown_state = "field"
-/datum/map_template/tether_lateload/gateway/honlethhighlands_a/on_map_loaded(z)
+/datum/map_template/common_lateload/gateway/honlethhighlands_a/on_map_loaded(z)
. = ..()
new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
-/datum/map_template/tether_lateload/gateway/honlethhighlands_b/on_map_loaded(z)
+/datum/map_template/common_lateload/gateway/honlethhighlands_b/on_map_loaded(z)
. = ..()
new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level.
new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map.
diff --git a/maps/gateway_vr/variable/honlethhighlands_a.dmm b/maps/gateway_vr/variable/honlethhighlands_a.dmm
index 19eebf89a3..d273f3b5fe 100644
--- a/maps/gateway_vr/variable/honlethhighlands_a.dmm
+++ b/maps/gateway_vr/variable/honlethhighlands_a.dmm
@@ -676,7 +676,7 @@
},
/area/gateway/honlethhighlands)
"jn" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/honlethhighlands,
+/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands,
/turf/simulated/floor/water/deep{
temperature = 253.15
},
diff --git a/maps/gateway_vr/variable/honlethhighlands_b.dmm b/maps/gateway_vr/variable/honlethhighlands_b.dmm
index 1e46fe78df..73e1727581 100644
--- a/maps/gateway_vr/variable/honlethhighlands_b.dmm
+++ b/maps/gateway_vr/variable/honlethhighlands_b.dmm
@@ -718,7 +718,7 @@
/turf/simulated/floor/plating,
/area/gateway/honlethhighlands/town/supply)
"kk" = (
-/obj/effect/overmap/visitable/sector/tether_gateway/honlethhighlands,
+/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands,
/turf/simulated/floor/water/deep{
temperature = 253.15
},
diff --git a/maps/gateway_vr/wildwest.dm b/maps/gateway_vr/wildwest.dm
index 632c98c171..f0328570d5 100644
--- a/maps/gateway_vr/wildwest.dm
+++ b/maps/gateway_vr/wildwest.dm
@@ -177,7 +177,7 @@
return 1
*/
-/obj/effect/overmap/visitable/sector/tether_gateway/wildwest
+/obj/effect/overmap/visitable/sector/common_gateway/wildwest
name = "redspace shimmer"
desc = "The shimmering reflection of some sort of redspace phenomena."
scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable."}
diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm
new file mode 100644
index 0000000000..41a1707af8
--- /dev/null
+++ b/maps/offmap_vr/common_offmaps.dm
@@ -0,0 +1,450 @@
+/// Away Missions
+#if AWAY_MISSION_TEST
+#include "../expedition_vr/beach/beach.dmm"
+#include "../expedition_vr/beach/cave.dmm"
+#include "../expedition_vr/alienship/alienship.dmm"
+#include "../expedition_vr/aerostat/aerostat.dmm"
+#include "../expedition_vr/aerostat/surface.dmm"
+#include "../expedition_vr/space/debrisfield.dmm"
+#include "../expedition_vr/space/fueldepot.dmm"
+#endif
+
+#include "../expedition_vr/beach/_beach.dm"
+/datum/map_template/common_lateload/away_beach
+ name = "Desert Planet - Z1 Beach"
+ desc = "The beach away mission."
+ mappath = 'maps/expedition_vr/beach/beach.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_beach
+
+/datum/map_z_level/common_lateload/away_beach
+ name = "Away Mission - Desert Beach"
+ z = Z_LEVEL_BEACH
+ base_turf = /turf/simulated/floor/outdoors/rocks/caves
+
+/datum/map_template/common_lateload/away_beach_cave
+ name = "Desert Planet - Z2 Cave"
+ desc = "The beach away mission's cave."
+ mappath = 'maps/expedition_vr/beach/cave.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_beach_cave
+
+/datum/map_template/common_lateload/away_beach_cave/on_map_loaded(z)
+ . = ..()
+ seed_submaps(list(Z_LEVEL_BEACH_CAVE), 120, /area/tether_away/cave/unexplored/normal, /datum/map_template/surface/mountains/normal)
+ //seed_submaps(list(Z_LEVEL_BEACH_CAVE), 70, /area/tether_away/cave/unexplored/normal, /datum/map_template/surface/mountains/deep)
+
+ // Now for the tunnels.
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_BEACH_CAVE, world.maxx - 4, world.maxy - 4)
+ new /datum/random_map/noise/ore/beachmine(null, 1, 1, Z_LEVEL_BEACH_CAVE, 64, 64)
+
+/datum/map_z_level/common_lateload/away_beach_cave
+ name = "Away Mission - Desert Cave"
+ z = Z_LEVEL_BEACH_CAVE
+ base_turf = /turf/simulated/floor/outdoors/rocks/caves
+
+/obj/effect/step_trigger/zlevel_fall/beach
+ var/static/target_z
+
+
+#include "../expedition_vr/alienship/_alienship.dm"
+/datum/map_template/common_lateload/away_alienship
+ name = "Alien Ship - Z1 Ship"
+ desc = "The alien ship away mission."
+ mappath = 'maps/expedition_vr/alienship/alienship.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_alienship
+
+/datum/map_z_level/common_lateload/away_alienship
+ name = "Away Mission - Alien Ship"
+
+/datum/map_z_level/common_lateload/away_aerostat
+ name = "Away Mission - Aerostat"
+ z = Z_LEVEL_AEROSTAT
+ base_turf = /turf/unsimulated/floor/sky/virgo2_sky
+
+/datum/map_template/common_lateload/away_aerostat_surface
+ name = "Remmi Aerostat - Z2 Surface"
+ desc = "The surface from the Virgo 2 Aerostat."
+ mappath = 'maps/expedition_vr/aerostat/surface.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_aerostat_surface
+
+/datum/map_template/common_lateload/away_aerostat_surface/on_map_loaded(z)
+ . = ..()
+ seed_submaps(list(Z_LEVEL_AEROSTAT_SURFACE), 120, /area/offmap/aerostat/surface/unexplored, /datum/map_template/virgo2)
+ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_AEROSTAT_SURFACE, world.maxx - 4, world.maxy - 4)
+ new /datum/random_map/noise/ore/virgo2(null, 1, 1, Z_LEVEL_AEROSTAT_SURFACE, 64, 64)
+
+/datum/map_z_level/common_lateload/away_aerostat_surface
+ name = "Away Mission - Aerostat Surface"
+ z = Z_LEVEL_AEROSTAT_SURFACE
+ base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2
+
+
+#include "../expedition_vr/space/_debrisfield.dm"
+#include "../expedition_vr/space/_fueldepot.dm"
+#include "../submaps/pois_vr/debris_field/_templates.dm"
+#include "../submaps/pois_vr/debris_field/debrisfield_things.dm"
+/datum/map_template/common_lateload/away_debrisfield
+ name = "Debris Field - Z1 Space"
+ desc = "The Virgo 3 Debris Field away mission."
+ mappath = 'maps/expedition_vr/space/debrisfield.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_debrisfield
+
+/datum/map_template/common_lateload/away_debrisfield/on_map_loaded(z)
+ . = ..()
+ //Commented out until we actually get POIs
+ seed_submaps(list(Z_LEVEL_DEBRISFIELD), 400, /area/space, /datum/map_template/debrisfield)
+
+/datum/map_z_level/common_lateload/away_debrisfield
+ name = "Away Mission - Debris Field"
+ z = Z_LEVEL_DEBRISFIELD
+
+/datum/map_template/common_lateload/away_fueldepot
+ name = "Fuel Depot - Z1 Space"
+ desc = "An unmanned fuel depot floating in space."
+ mappath = 'maps/expedition_vr/space/fueldepot.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_fueldepot
+
+/datum/map_z_level/common_lateload/away_fueldepot
+ name = "Away Mission - Fuel Depot"
+ z = Z_LEVEL_FUELDEPOT
+
+//////////////////////////////////////////////////////////////////////////////////////
+// Gateway submaps go here
+
+/obj/effect/overmap/visitable/sector/common_gateway
+ name = "Unknown"
+ desc = "Approach and perform a scan to obtain further information."
+ icon_state = "object" //or "globe" for planetary stuff
+ known = FALSE
+
+/datum/map_template/common_lateload/gateway
+ name = "Gateway Submap"
+ desc = "Please do not use this."
+ mappath = null
+ associated_map_datum = null
+
+/datum/map_z_level/common_lateload/gateway_destination
+ name = "Gateway Destination"
+ z = Z_LEVEL_GATEWAY
+/* // Removed due to heavy merc presence
+#include "../gateway_vr/snow_outpost.dm"
+/datum/map_template/common_lateload/gateway/snow_outpost
+ name = "Snow Outpost"
+ desc = "Big snowy area with various outposts."
+ mappath = 'maps/gateway_vr/snow_outpost.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+*/
+#include "../gateway_vr/zoo.dm"
+/datum/map_template/common_lateload/gateway/zoo
+ name = "Zoo"
+ desc = "Gigantic space zoo"
+ mappath = 'maps/gateway_vr/zoo.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+#include "../gateway_vr/carpfarm.dm"
+/datum/map_template/common_lateload/gateway/carpfarm
+ name = "Carp Farm"
+ desc = "Asteroid base surrounded by carp"
+ mappath = 'maps/gateway_vr/carpfarm.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+#include "../gateway_vr/snowfield.dm"
+/datum/map_template/common_lateload/gateway/snowfield
+ name = "Snow Field"
+ desc = "An old base in middle of snowy wasteland"
+ mappath = 'maps/gateway_vr/snowfield.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+#include "../gateway_vr/listeningpost.dm"
+/datum/map_template/common_lateload/gateway/listeningpost
+ name = "Listening Post"
+ desc = "Asteroid-bound mercenary listening post"
+ mappath = 'maps/gateway_vr/listeningpost.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+#include "../gateway_vr/variable/honlethhighlands.dm"
+/datum/map_template/common_lateload/gateway/honlethhighlands_a
+ name = "Honleth Highlands A"
+ desc = "The cold surface of some planet."
+ mappath = 'maps/gateway_vr/variable/honlethhighlands_a.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+/datum/map_template/common_lateload/gateway/honlethhighlands_b
+ name = "Honleth Highlands B"
+ desc = "The cold surface of some planet."
+ mappath = 'maps/gateway_vr/variable/honlethhighlands_b.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+
+#include "../gateway_vr/variable/arynthilake.dm"
+/datum/map_template/common_lateload/gateway/arynthilake
+ name = "Arynthi Lake A"
+ desc = "A grassy surface with some abandoned structures."
+ mappath = 'maps/gateway_vr/variable/arynthilake_a.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+/datum/map_template/common_lateload/gateway/arynthilakeunderground
+ name = "Arynthi Lake Underground A"
+ desc = "A grassy surface with some abandoned structures."
+ mappath = 'maps/gateway_vr/variable/arynthilakeunderground_a.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+/datum/map_template/common_lateload/gateway/arynthilake_b
+ name = "Arynthi Lake B"
+ desc = "A grassy surface with some abandoned structures."
+ mappath = 'maps/gateway_vr/variable/arynthilake_b.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+/datum/map_template/common_lateload/gateway/arynthilakeunderground_b
+ name = "Arynthi Lake Underground B"
+ desc = "A grassy surface with some abandoned structures."
+ mappath = 'maps/gateway_vr/variable/arynthilakeunderground_b.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+#include "../gateway_vr/eggnogtown.dm"
+/datum/map_template/common_lateload/gateway/eggnogtown
+ name = "Eggnog Town"
+ desc = "A comfortable snowy town."
+ mappath = 'maps/gateway_vr/eggnogtown.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+/datum/map_template/common_lateload/gateway/eggnogtownunderground
+ name = "Eggnog Town Underground"
+ desc = "A comfortable snowy town."
+ mappath = 'maps/gateway_vr/eggnogtownunderground.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+#include "../gateway_vr/wildwest.dm"
+/datum/map_template/common_lateload/gateway/wildwest
+ name = "Wild West"
+ desc = "A classic."
+ mappath = 'maps/gateway_vr/wildwest.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination
+
+//////////////////////////////////////////////////////////////////////////////////////
+// Admin-use z-levels for loading whenever an admin feels like
+#if AWAY_MISSION_TEST
+#include "../submaps/admin_use_vr/spa.dmm"
+#endif
+#include "../submaps/admin_use_vr/fun.dm"
+/datum/map_template/common_lateload/fun/spa
+ name = "Space Spa"
+ desc = "A pleasant spa located in a spaceship."
+ mappath = 'maps/submaps/admin_use_vr/spa.dmm'
+
+ associated_map_datum = /datum/map_z_level/common_lateload/fun/spa
+
+/datum/map_z_level/common_lateload/fun/spa
+ name = "Spa"
+ flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED
+
+//////////////////////////////////////////////////////////////////////////////////////
+// Code Shenanigans for Tether lateload maps
+/datum/map_template/common_lateload
+ allow_duplicates = FALSE
+ var/associated_map_datum
+
+/datum/map_template/common_lateload/on_map_loaded(z)
+ if(!associated_map_datum || !ispath(associated_map_datum))
+ log_game("Extra z-level [src] has no associated map datum")
+ return
+
+ new associated_map_datum(using_map, z)
+
+/datum/map_z_level/common_lateload
+ z = 0
+
+/datum/map_z_level/common_lateload/New(var/datum/map/map, mapZ)
+ if(mapZ && !z)
+ z = mapZ
+ return ..(map)
+
+/obj/effect/step_trigger/zlevel_fall //Don't ever use this, only use subtypes.Define a new var/static/target_z on each
+ affect_ghosts = 1
+
+/obj/effect/step_trigger/zlevel_fall/Initialize()
+ . = ..()
+
+ if(istype(get_turf(src), /turf/simulated/floor))
+ src:target_z = z
+ return INITIALIZE_HINT_QDEL
+
+/obj/effect/step_trigger/zlevel_fall/Trigger(var/atom/movable/A) //mostly from /obj/effect/step_trigger/teleporter/planetary_fall, step_triggers.dm L160
+ if(!src:target_z)
+ return
+
+ var/attempts = 100
+ var/turf/simulated/T
+ while(attempts && !T)
+ var/turf/simulated/candidate = locate(rand(5,world.maxx-5),rand(5,world.maxy-5),src:target_z)
+ if(candidate.density)
+ attempts--
+ continue
+
+ T = candidate
+ break
+
+ if(!T)
+ return
+
+ if(isobserver(A))
+ A.forceMove(T) // Harmlessly move ghosts.
+ return
+
+ A.forceMove(T)
+ if(isliving(A)) // Someday, implement parachutes. For now, just turbomurder whoever falls.
+ message_admins("\The [A] fell out of the sky.")
+ var/mob/living/L = A
+ L.fall_impact(T, 42, 90, FALSE, TRUE) //You will not be defibbed from this.
+
+/////////////////////////////
+/obj/tether_away_spawner
+ name = "RENAME ME, JERK"
+ desc = "Spawns the mobs!"
+ icon = 'icons/mob/screen1.dmi'
+ icon_state = "x"
+ invisibility = 101
+ mouse_opacity = 0
+ density = 0
+ anchored = 1
+
+ //Weighted with values (not %chance, but relative weight)
+ //Can be left value-less for all equally likely
+ var/list/mobs_to_pick_from
+
+ //When the below chance fails, the spawner is marked as depleted and stops spawning
+ var/prob_spawn = 100 //Chance of spawning a mob whenever they don't have one
+ var/prob_fall = 5 //Above decreases by this much each time one spawns
+
+ //Settings to help mappers/coders have their mobs do what they want in this case
+ var/faction //To prevent infighting if it spawns various mobs, set a faction
+ var/atmos_comp //TRUE will set all their survivability to be within 20% of the current air
+ //var/guard //# will set the mobs to remain nearby their spawn point within this dist
+
+ //Internal use only
+ var/mob/living/simple_mob/my_mob
+ var/depleted = FALSE
+
+/obj/tether_away_spawner/Initialize()
+ . = ..()
+
+ if(!LAZYLEN(mobs_to_pick_from))
+ error("Mob spawner at [x],[y],[z] ([get_area(src)]) had no mobs_to_pick_from set on it!")
+ initialized = TRUE
+ return INITIALIZE_HINT_QDEL
+ START_PROCESSING(SSobj, src)
+
+/obj/tether_away_spawner/process()
+ if(my_mob && my_mob.stat != DEAD)
+ return //No need
+
+ for(var/mob/living/L in view(src,world.view))
+ if(L.client)
+ return //I'll wait.
+
+ if(prob(prob_spawn))
+ prob_spawn -= prob_fall
+ var/picked_type = pickweight(mobs_to_pick_from)
+ my_mob = new picked_type(get_turf(src))
+ my_mob.low_priority = TRUE
+
+ if(faction)
+ my_mob.faction = faction
+
+ if(atmos_comp)
+ var/turf/T = get_turf(src)
+ var/datum/gas_mixture/env = T.return_air()
+ if(env)
+ if(my_mob.minbodytemp > env.temperature)
+ my_mob.minbodytemp = env.temperature * 0.8
+ if(my_mob.maxbodytemp < env.temperature)
+ my_mob.maxbodytemp = env.temperature * 1.2
+
+ var/list/gaslist = env.gas
+ if(my_mob.min_oxy)
+ my_mob.min_oxy = gaslist["oxygen"] * 0.8
+ if(my_mob.min_tox)
+ my_mob.min_tox = gaslist["phoron"] * 0.8
+ if(my_mob.min_n2)
+ my_mob.min_n2 = gaslist["nitrogen"] * 0.8
+ if(my_mob.min_co2)
+ my_mob.min_co2 = gaslist["carbon_dioxide"] * 0.8
+ if(my_mob.max_oxy)
+ my_mob.max_oxy = gaslist["oxygen"] * 1.2
+ if(my_mob.max_tox)
+ my_mob.max_tox = gaslist["phoron"] * 1.2
+ if(my_mob.max_n2)
+ my_mob.max_n2 = gaslist["nitrogen"] * 1.2
+ if(my_mob.max_co2)
+ my_mob.max_co2 = gaslist["carbon_dioxide"] * 1.2
+/* //VORESTATION AI TEMPORARY REMOVAL
+ if(guard)
+ my_mob.returns_home = TRUE
+ my_mob.wander_distance = guard
+*/
+ return
+ else
+ STOP_PROCESSING(SSobj, src)
+ depleted = TRUE
+ return
+
+//Shadekin spawner. Could have them show up on any mission, so it's here.
+//Make sure to put them away from others, so they don't get demolished by rude mobs.
+/obj/tether_away_spawner/shadekin
+ name = "Shadekin Spawner"
+ icon = 'icons/mob/vore_shadekin.dmi'
+ icon_state = "spawner"
+
+ faction = "shadekin"
+ prob_spawn = 1
+ prob_fall = 1
+ //guard = 10 //Don't wander too far, to stay alive.
+ mobs_to_pick_from = list(
+ /mob/living/simple_mob/shadekin
+ )
+
+//////////////////////////////////////////////////////////////////////////////
+//Overmap ship spawns
+
+#include "../offmap_vr/om_ships/hybridshuttle.dm"
+#include "../offmap_vr/om_ships/screebarge.dm"
+#include "../offmap_vr/om_ships/aro.dm"
+#include "../offmap_vr/om_ships/aro2.dm"
+#include "../offmap_vr/om_ships/aro3.dm"
+#include "../offmap_vr/om_ships/bearcat.dm"
+#include "../offmap_vr/om_ships/cruiser.dm"
+#include "../offmap_vr/om_ships/vespa.dm"
+#include "../offmap_vr/om_ships/generic_shuttle.dm"
+#include "../offmap_vr/om_ships/salamander.dm"
+#include "../offmap_vr/om_ships/geckos.dm"
+#include "../offmap_vr/om_ships/mackerels.dm"
+#include "../offmap_vr/om_ships/mercenarybase.dm"
+#include "../offmap_vr/om_ships/mercship.dm"
+#include "../offmap_vr/om_ships/curashuttle.dm"
+#include "../offmap_vr/om_ships/itglight.dm"
+#include "../offmap_vr/om_ships/abductor.dm"
+
+//////////////////////////////////////////////////////////////////////////////
+//Capsule deployed ships
+#include "../offmap_vr/om_ships/shelter_5.dm"
+#include "../offmap_vr/om_ships/shelter_6.dm"
+
+//////////////////////////////////////////////////////////////////////////////
+//Offmap Spawn Locations
+#include "../offmap_vr/talon/talon_v2.dm"
+#include "../offmap_vr/talon/talon_v2_areas.dm"
+
+#if MAP_TEST
+#include "../offmap_vr/talon/talon_v2.dmm"
+#endif
+
+/datum/map_template/common_lateload/offmap/talon_v2
+ name = "Offmap Ship - Talon V2"
+ desc = "Offmap spawn ship, the Talon."
+ mappath = 'maps/offmap_vr/talon/talon_v2.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/talon_v2
+
+/datum/map_z_level/common_lateload/talon_v2
+ name = "Talon"
+ flags = MAP_LEVEL_PLAYER|MAP_LEVEL_PERSIST|MAP_LEVEL_MAPPABLE
+ base_turf = /turf/space
+ z = Z_LEVEL_OFFMAP1
\ No newline at end of file
diff --git a/maps/stellardelight/overmap.dmm b/maps/stellardelight/overmap.dmm
new file mode 100644
index 0000000000..2890f0159b
--- /dev/null
+++ b/maps/stellardelight/overmap.dmm
@@ -0,0 +1,19898 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/unsimulated/map/edge,
+/area/overmap)
+"p" = (
+/turf/simulated/floor/carpet/retro,
+/area/space)
+"F" = (
+/turf/unsimulated/map,
+/area/overmap)
+"I" = (
+/turf/simulated/floor/carpet/deco,
+/area/space)
+"J" = (
+/obj/effect/overmap/bluespace_rift,
+/turf/unsimulated/map,
+/area/overmap)
+
+(1,1,1) = {"
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(3,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(4,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(5,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(6,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(7,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(8,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(9,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(10,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(11,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(12,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(13,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(14,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(15,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(17,1,1) = {"
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(19,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(20,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(21,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(22,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(23,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(24,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(25,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(26,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(27,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(28,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(29,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(30,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(31,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(32,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(33,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(34,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(35,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(36,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(37,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(38,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(39,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(40,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(41,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(42,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(43,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(44,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(45,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(46,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(47,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(48,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(49,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(50,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(51,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(52,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(53,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(54,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(55,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(56,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(57,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(58,1,1) = {"
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(59,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(60,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(61,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(62,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(63,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(64,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(65,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(66,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(67,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(68,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(69,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(70,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(71,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(72,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(73,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(74,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(75,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(76,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(77,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(78,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(79,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(80,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(81,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(82,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(83,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(84,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(85,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(86,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(87,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(88,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(89,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(90,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(91,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(92,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(93,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(94,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(95,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(96,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(97,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(98,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+"}
+(99,1,1) = {"
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(100,1,1) = {"
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+I
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+p
+I
+"}
+(101,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+p
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+"}
+(102,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(103,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(104,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(105,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(106,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(107,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(108,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(109,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(110,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(111,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(112,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(113,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(114,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(115,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(116,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(117,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(118,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(119,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(120,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(121,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+J
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(122,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(123,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(124,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(125,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(126,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(127,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(128,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(129,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(130,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(131,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(132,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(133,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(134,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(135,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(136,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(137,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(138,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(139,1,1) = {"
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+a
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+F
+a
+p
+"}
+(140,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+p
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+p
+"}
diff --git a/maps/stellardelight/ship_centcom.dmm b/maps/stellardelight/ship_centcom.dmm
new file mode 100644
index 0000000000..f4f9f83008
--- /dev/null
+++ b/maps/stellardelight/ship_centcom.dmm
@@ -0,0 +1,35538 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/unsimulated/wall/planetary/virgo3b,
+/area/centcom)
+"ab" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/lasercannon,
+/obj/item/weapon/gun/energy/lasercannon,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ad" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/gun/energy/xray,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ae" = (
+/obj/structure/sign/nanotrasen,
+/turf/unsimulated/wall,
+/area/centcom/specops)
+"af" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"ag" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/heavysniper,
+/obj/item/weapon/storage/box/sniperammo,
+/obj/item/weapon/storage/box/sniperammo,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ah" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/main_hall)
+"ai" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"aj" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/control)
+"ak" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"al" = (
+/turf/unsimulated/wall,
+/area/tdome/tdomeadmin)
+"am" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/launcher/rocket,
+/obj/item/weapon/gun/launcher/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"an" = (
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"ao" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/mask/gas/commando{
+ name = "Commando Mask"
+ },
+/obj/item/clothing/mask/gas/commando{
+ name = "Commando Mask"
+ },
+/obj/item/clothing/mask/gas/commando{
+ name = "Commando Mask"
+ },
+/obj/item/clothing/mask/gas/commando{
+ name = "Commando Mask"
+ },
+/obj/item/clothing/mask/gas/commando{
+ name = "Commando Mask"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ap" = (
+/obj/structure/sign/science,
+/turf/simulated/wall/r_wall,
+/area/centcom/control)
+"aq" = (
+/obj/structure/sign/department/armory,
+/turf/simulated/wall/r_wall,
+/area/centcom/control)
+"ar" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/r_wall,
+/area/centcom/control)
+"as" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/security)
+"at" = (
+/obj/structure/sign/department/armory,
+/turf/simulated/wall/r_wall,
+/area/centcom/security)
+"au" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"av" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw/ap,
+/obj/item/ammo_magazine/m545saw/ap,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"aw" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/medical)
+"ax" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/centcom/control)
+"ay" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/centcom/control)
+"az" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"aA" = (
+/obj/structure/sign/department/eva,
+/turf/simulated/wall/r_wall,
+/area/centcom/security)
+"aB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aC" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aD" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/r_wall,
+/area/centcom/main_hall)
+"aE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/netgun,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aF" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"aG" = (
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aH" = (
+/turf/simulated/wall/r_wall,
+/area/centcom)
+"aI" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/command)
+"aJ" = (
+/obj/structure/sign/department/commander,
+/turf/simulated/wall/r_wall,
+/area/centcom/security)
+"aK" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/holding)
+"aL" = (
+/obj/structure/sign/department/operational,
+/turf/simulated/wall/r_wall,
+/area/centcom/medical)
+"aM" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/bathroom)
+"aN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel_grid,
+/area/centcom/terminal)
+"aO" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"aP" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/r_wall,
+/area/centcom/security)
+"aQ" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"aR" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aT" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/centcom/main_hall)
+"aU" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"aV" = (
+/obj/structure/table/rack,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"aW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"aX" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"aY" = (
+/obj/structure/sign/department/prison,
+/turf/simulated/wall/r_wall,
+/area/centcom/security)
+"aZ" = (
+/obj/structure/sign/greencross,
+/turf/simulated/wall/r_wall,
+/area/centcom/medical)
+"ba" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/r_wall,
+/area/centcom/command)
+"bb" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bc" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bd" = (
+/obj/structure/closet/crate/medical,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/weapon/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/mask/surgical,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"be" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bf" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bg" = (
+/obj/machinery/chemical_dispenser/ert,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bh" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/living)
+"bi" = (
+/obj/structure/table/rack,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bj" = (
+/obj/effect/floor_decal/derelict/d3,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"bk" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"bl" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/restaurant)
+"bm" = (
+/obj/machinery/status_display/supply_display,
+/turf/simulated/wall/r_wall,
+/area/centcom)
+"bn" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"bo" = (
+/obj/structure/sign/department/bar,
+/turf/simulated/wall/r_wall,
+/area/centcom/restaurant)
+"bp" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/bar)
+"bq" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"br" = (
+/obj/structure/sign/warning/docking_area,
+/turf/simulated/wall/r_wall,
+/area/centcom/terminal)
+"bs" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bt" = (
+/obj/machinery/door/blast/regular{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/centcom/terminal)
+"bu" = (
+/obj/structure/sign/warning{
+ name = "\improper STAND AWAY FROM TRACK EDGE"
+ },
+/turf/simulated/wall/r_wall,
+/area/centcom/terminal)
+"bv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bw" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/terminal)
+"bx" = (
+/obj/structure/sign/warning/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/centcom/terminal)
+"by" = (
+/turf/simulated/wall/r_wall,
+/area/centcom/evac)
+"bz" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/simulated/wall/r_wall,
+/area/centcom/terminal)
+"bA" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"bE" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/closet/walllocker/medical/east,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"bJ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/storage/box/autoinjectors,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bK" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bL" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bM" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bS" = (
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ name = "When Everything else fails."
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bT" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bV" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"bW" = (
+/obj/machinery/vending/security,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"bY" = (
+/turf/unsimulated/wall,
+/area/centcom/specops)
+"bZ" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/weapon/storage/box/shotgunammo,
+/obj/item/weapon/storage/box/shotgunammo,
+/obj/item/weapon/storage/box/shotgunshells,
+/obj/item/weapon/storage/box/shotgunshells,
+/obj/item/weapon/storage/box/shotgunshells,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ca" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/weapon/gun/projectile/automatic/advanced_smg,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cb" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/weapon/gun/energy/sniperrifle,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cc" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"cd" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cf" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"cn" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"co" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cu" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cv" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/device/t_scanner/advanced,
+/obj/item/device/t_scanner/advanced,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cA" = (
+/obj/effect/floor_decal/rust/part_rusted3,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"cD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cE" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cF" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/hud/health{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/hud/health{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"cH" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/closet/walllocker/medical/west,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"cI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"cJ" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"cK" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"cL" = (
+/obj/structure/table/reinforced,
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"cN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"cO" = (
+/obj/structure/table/rack,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"cT" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"cU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"cZ" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"da" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/emps{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"db" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/handcuffs,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dc" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dd" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dh" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"di" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/plasmacutter,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dj" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"dk" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/shuttle/engine/heater,
+/obj/structure/kitchenspike{
+ desc = "Lifts engines! You could probably also impale people and monkeys on it... but why would you do that, weirdo?";
+ name = "engine lift"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"dl" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dn" = (
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"dr" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/gun/energy/gun/burst,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ds" = (
+/obj/structure/table/rack,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"du" = (
+/obj/structure/table/rack,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dv" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/gun/martin,
+/obj/item/weapon/gun/energy/gun/martin,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dw" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/launcher/grenade,
+/obj/item/weapon/gun/launcher/grenade,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dx" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/storage/box/empslite,
+/obj/item/weapon/storage/box/empslite,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dy" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dz" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/combat{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dA" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/bodybags,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dB" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dC" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dD" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/weapon/gun/projectile/revolver/detective45,
+/obj/item/weapon/gun/projectile/revolver/detective45,
+/obj/item/ammo_magazine/s45,
+/obj/item/ammo_magazine/s45,
+/obj/item/ammo_magazine/s45,
+/obj/item/ammo_magazine/s45,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dG" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "cc_landing_pad";
+ name = "docking port controller";
+ pixel_x = 24;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"dJ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"dM" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"dN" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/gun/projectile/p92x,
+/obj/item/weapon/gun/projectile/p92x,
+/obj/item/weapon/gun/projectile/p92x,
+/obj/item/weapon/gun/projectile/p92x,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"dU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"dV" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/mounted,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dW" = (
+/obj/machinery/vending/snack{
+ name = "hacked Getmore Chocolate Corp";
+ prices = list()
+ },
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"dY" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"dZ" = (
+/turf/simulated/floor/tiled,
+/area/centcom/specops)
+"ea" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"eb" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"ec" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"ef" = (
+/obj/structure/bed/chair,
+/obj/item/weapon/handcuffs,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"eh" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"ej" = (
+/obj/structure/table/reinforced,
+/obj/item/device/megaphone,
+/obj/item/weapon/storage/box/trackimp,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"ek" = (
+/obj/structure/table/rack,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"el" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/vest/ert/command,
+/obj/item/clothing/head/helmet/ert/command,
+/obj/item/weapon/storage/backpack/ert/commander,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"em" = (
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"en" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"ep" = (
+/obj/structure/sign/redcross{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"er" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"et" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"ev" = (
+/obj/machinery/vending/nifsoft_shop{
+ categories = 111;
+ emagged = 1;
+ name = "Hacked NIFSoft Shop"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ew" = (
+/obj/machinery/atm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ex" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/adv,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"ey" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/escape)
+"ez" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"eB" = (
+/obj/structure/sign/securearea{
+ name = "\improper ARMORY";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"eD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/specops)
+"eE" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"eI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"eK" = (
+/obj/machinery/light,
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"eP" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"eQ" = (
+/obj/machinery/vending/cigarette,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"eR" = (
+/obj/structure/table/reinforced,
+/obj/item/device/aicard,
+/obj/item/weapon/pinpointer/advpinpointer,
+/obj/item/weapon/stamp/centcomm,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"eS" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Commander";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"eT" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/ammo_magazine/m44,
+/obj/item/ammo_magazine/m44,
+/obj/item/weapon/gun/projectile/deagle,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"eU" = (
+/obj/structure/sign/securearea{
+ name = "ENGINEERING ACCESS";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"eV" = (
+/obj/structure/table/reinforced,
+/obj/item/device/pda/ert,
+/obj/item/device/perfect_tele,
+/obj/item/weapon/hand_tele,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"eX" = (
+/turf/simulated/floor/maglev,
+/area/centcom/terminal)
+"eY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"eZ" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"fc" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"fg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"fj" = (
+/obj/structure/table/reinforced,
+/obj/item/device/pda/ert,
+/obj/item/device/pda/ert,
+/obj/item/device/pda/ert,
+/obj/item/device/pda/ert,
+/obj/item/device/pda/ert,
+/obj/item/device/pda/ert,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fk" = (
+/obj/effect/floor_decal/rust/steel_decals_rusted2,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"fl" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/flashshells,
+/obj/item/weapon/storage/box/flashshells,
+/obj/item/weapon/storage/box/stunshells,
+/obj/item/weapon/storage/box/stunshells,
+/obj/item/weapon/storage/box/beanbags,
+/obj/item/weapon/storage/box/beanbags,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fo" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fr" = (
+/obj/effect/floor_decal/rust/part_rusted3,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"fs" = (
+/obj/structure/table/reinforced,
+/obj/item/device/megaphone,
+/obj/item/device/megaphone,
+/obj/item/device/megaphone,
+/obj/item/device/megaphone,
+/obj/item/device/megaphone,
+/obj/item/device/megaphone,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fz" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"fA" = (
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"fC" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Living Quarters";
+ req_access = list(105)
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/control)
+"fD" = (
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fF" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "tdomeobserve"
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"fG" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/centcom;
+ base_turf = /turf/simulated/floor/reinforced;
+ docking_controller = "centcom_port_dock";
+ landmark_tag = "port_escape_cc";
+ name = "Port Escape Centcom"
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"fH" = (
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fI" = (
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fJ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/handcuffs,
+/obj/item/device/flash,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"fL" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert,
+/obj/item/clothing/accessory/storage/black_vest,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"fM" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"fP" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"fR" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat,
+/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"fS" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fT" = (
+/obj/item/weapon/circuitboard/aiupload,
+/obj/item/weapon/circuitboard/borgupload,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/aiModule/nanotrasen,
+/obj/item/weapon/aiModule/reset,
+/obj/item/weapon/aiModule/freeformcore,
+/obj/item/weapon/aiModule/protectStation,
+/obj/item/weapon/aiModule/quarantine,
+/obj/item/weapon/aiModule/paladin,
+/obj/item/weapon/aiModule/robocop,
+/obj/item/weapon/aiModule/safeguard,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fW" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"fX" = (
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fY" = (
+/obj/structure/table/glass,
+/obj/item/roller/adv,
+/obj/item/roller/adv{
+ pixel_y = 6
+ },
+/obj/item/roller/adv{
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"fZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ga" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"gb" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gc" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gd" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ge" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/centcomm,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gf" = (
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gg" = (
+/obj/machinery/vending/cigarette{
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
+ },
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"gj" = (
+/obj/machinery/vending/cola{
+ name = "hacked Robust Softdrinks";
+ prices = list()
+ },
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"gl" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"gm" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/escape)
+"go" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"gp" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"gs" = (
+/obj/structure/bed/chair/shuttle,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"gv" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"gw" = (
+/obj/machinery/vending/assist,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gy" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gz" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gA" = (
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/glass/reinforced{
+ amount = 50
+ },
+/obj/item/stack/material/glass/reinforced{
+ amount = 50
+ },
+/obj/item/stack/material/glass/reinforced{
+ amount = 50
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/obj/item/stack/material/glass/phoronglass,
+/obj/item/stack/material/glass/phoronglass,
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/holding)
+"gC" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/device/taperecorder,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"gF" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"gN" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"gP" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/energy/sword/green,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"gR" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gS" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/item/weapon/storage/box/traumainjectors,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gV" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 1;
+ frequency = 1443;
+ listening = 0;
+ name = "Spec Ops Intercom";
+ pixel_y = 28
+ },
+/obj/item/modular_computer/console/preset/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"gX" = (
+/obj/machinery/computer/teleporter,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Security";
+ pixel_y = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"gZ" = (
+/obj/machinery/teleport/station,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ha" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hb" = (
+/obj/machinery/vending/engineering,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"he" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hf" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hl" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hn" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"hp" = (
+/obj/machinery/door/blast/regular{
+ id = "ArmouryC5";
+ name = "Armoury"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/control)
+"hq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/gun/martin,
+/obj/item/weapon/gun/energy/gun/martin,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"hr" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hs" = (
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"ht" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/control)
+"hv" = (
+/obj/machinery/light/flamp/noshade,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"hx" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hz" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Teleporter";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"hA" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hC" = (
+/obj/machinery/pipedispenser/orderable,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hD" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hE" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"hF" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hG" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hH" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "CentCom";
+ tele_network = "centcom"
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hI" = (
+/obj/machinery/door/blast/regular{
+ id = "ArmouryC5";
+ name = "Armoury"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC5";
+ name = "Armoury Access";
+ pixel_y = -28;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/control)
+"hL" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Special Operations";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/specops)
+"hM" = (
+/obj/machinery/pipedispenser/disposal/orderable,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"hN" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/control)
+"hP" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"hS" = (
+/obj/machinery/computer/med_data{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"hT" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"hV" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"hW" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Special Operations";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/specops)
+"hX" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC4";
+ name = "Armoury Access";
+ pixel_y = 28;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"hY" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"id" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/shuttle_landmark/shuttle_initializer/ccboat,
+/obj/effect/overmap/visitable/ship/landable/ccboat,
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/shuttle/ccboat)
+"ih" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ii" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/specops)
+"ij" = (
+/obj/machinery/shieldgen,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"il" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"im" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/clothing/glasses/welding,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"io" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"ip" = (
+/obj/machinery/mecha_part_fabricator/pros,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"iq" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"ir" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"is" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"it" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"iu" = (
+/obj/machinery/shield_gen,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"iw" = (
+/obj/machinery/power/thermoregulator,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ix" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"iy" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"iz" = (
+/obj/item/weapon/gun/energy/sizegun,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"iA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"iC" = (
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome)
+"iG" = (
+/obj/machinery/computer/communications,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"iH" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"iJ" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"iK" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"iL" = (
+/obj/item/weapon/storage/firstaid/regular,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"iO" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/table/standard,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"iR" = (
+/obj/structure/bed{
+ desc = "This is a bed..It says something close to the bottom 'I fuck the cat here too'."
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"iS" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/borderfloor/corner2,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"iT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"iU" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ icon_state = "frame";
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"iV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"iW" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"iX" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"iZ" = (
+/obj/machinery/r_n_d/protolathe,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ja" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"jc" = (
+/obj/structure/closet/secure_closet/bar,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"jd" = (
+/obj/structure/table/reinforced,
+/obj/item/device/binoculars,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"je" = (
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"jf" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Control";
+ pixel_x = -28;
+ pixel_y = -28;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"jg" = (
+/obj/machinery/door/airlock/command{
+ name = "Thunderdome";
+ req_one_access = list()
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"jh" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"ji" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/unsimulated/shuttle/plating,
+/area/tdome/tdomeadmin)
+"jj" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet,
+/area/centcom/control)
+"jm" = (
+/obj/structure/bed,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"jo" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/trackimp,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"jp" = (
+/obj/machinery/computer/rdconsole/core{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"jr" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ju" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"jw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/centcom/terminal)
+"jx" = (
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/structure/table/standard,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"jD" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"jE" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/material/phoron,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jF" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"jG" = (
+/obj/machinery/shield_gen/external,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jH" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jI" = (
+/obj/machinery/computer/pod{
+ id = "thunderdomeaxe";
+ name = "Thunderdome Axe Supply"
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"jJ" = (
+/obj/structure/table/reinforced,
+/obj/item/device/camera,
+/obj/item/weapon/storage/box/ids,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"jL" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"jN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"jO" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"jQ" = (
+/obj/effect/fancy_shuttle/orangeline{
+ dir = 1;
+ fancy_shuttle_tag = "tram"
+ },
+/obj/effect/fancy_shuttle_floor_preview/orangeline{
+ dir = 1;
+ plane = -45
+ },
+/turf/simulated/wall/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/area/centcom/terminal/tramfluff)
+"jW" = (
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"kd" = (
+/obj/machinery/computer/pod{
+ id = "thunderdomehea";
+ name = "Thunderdome Heavy Supply"
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"ke" = (
+/obj/machinery/computer/pod{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door Control"
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"kf" = (
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"kg" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Private";
+ req_access = list(105)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"kh" = (
+/obj/item/weapon/melee/baton/cattleprod,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"ki" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"kj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/control)
+"kk" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"kl" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"km" = (
+/obj/machinery/vending/snack,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"kn" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/carpet,
+/area/centcom/control)
+"ko" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"kp" = (
+/obj/item/weapon/folder/white,
+/obj/structure/table/standard,
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/reagent_containers/dropper{
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"kq" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kr" = (
+/obj/structure/table/standard,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ks" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"kt" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted/egun,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kz" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"kC" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"kD" = (
+/obj/effect/floor_decal/emblem/stellardelight/center,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"kH" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kI" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/item/rig_module/rescue_pharm,
+/obj/item/rig_module/sprinter,
+/obj/item/rig_module/sprinter,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kJ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"kK" = (
+/obj/structure/table/standard,
+/obj/structure/reagent_dispensers/acid{
+ pixel_y = -30
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"kM" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"kN" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kO" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kP" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"kQ" = (
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"kR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"kS" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"kT" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"kX" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"lb" = (
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"lc" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"ld" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"le" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lf" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lg" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Colonial Security Airlock";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"lh" = (
+/obj/item/device/camera,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"lj" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"lm" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Research and Development";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ln" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"lo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"lu" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"lw" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/device/flash,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"lx" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ door_color = "#822a1e";
+ frequency = 1380;
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/conveyor{
+ id = "cargoload"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"ly" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"lz" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-08"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"lA" = (
+/obj/structure/closet/firecloset,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"lC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"lD" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control switch for port-side blast doors.";
+ id = "CentComPort";
+ name = "Security Doors";
+ pixel_x = -12;
+ pixel_y = -25;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"lE" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"lF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"lL" = (
+/obj/machinery/door/blast/angled/open{
+ id = "ccshuttleshutter"
+ },
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/ccboat)
+"lM" = (
+/turf/simulated/wall/r_wall,
+/area/shuttle/centcom/ccbay)
+"lR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"lS" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"lT" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"lU" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"lV" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"lW" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"lX" = (
+/obj/machinery/door/airlock{
+ name = "Prison Showers"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"lZ" = (
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"mc" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9fccc7";
+ name = "Cockpit";
+ req_access = list(67);
+ stripe_color = "#ffffff"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/ccboat)
+"md" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/control)
+"me" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/weapon/melee/energy/axe,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"mf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/nanotrasen{
+ plane = -34
+ },
+/turf/simulated/floor,
+/area/centcom/control)
+"mg" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/weapon/melee/energy/axe,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"mh" = (
+/obj/machinery/door/airlock/research{
+ id_tag = "researchdoor";
+ name = "Research Division Access";
+ req_access = list(47)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"mi" = (
+/obj/machinery/door/blast/regular{
+ id = "CentComPort";
+ name = "Security Doors"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"mj" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Robotics Lab";
+ req_access = list(29,47)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"mk" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"ml" = (
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"mp" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/door/window/southright{
+ dir = 8;
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"mq" = (
+/obj/machinery/power/emitter,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"mr" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ms" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"mt" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"mu" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/item/device/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"mw" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"mC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/ccboat)
+"mF" = (
+/obj/effect/floor_decal/emblem/orangeline{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"mG" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"mI" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"mJ" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"mK" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"mL" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor,
+/area/centcom/control)
+"mM" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Centcom Autolathe"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"mP" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"mQ" = (
+/obj/structure/table/standard,
+/obj/random/forgotten_tram,
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"mR" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/energy/sword/red,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"mX" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"na" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "centcom_port_dock";
+ name = "docking port controller";
+ pixel_x = 24;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"nd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ne" = (
+/obj/machinery/camera/network/crescent,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"nf" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/pen,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"ni" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"nk" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"nl" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"nn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"nw" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"nx" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"nz" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"nB" = (
+/obj/item/weapon/stock_parts/console_screen,
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"nC" = (
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"nD" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Centcom Autolathe"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"nG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"nI" = (
+/obj/machinery/light/spot,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"nJ" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"nK" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"nL" = (
+/obj/machinery/computer/rdconsole/robotics,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"nM" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/machinery/computer/cryopod/dorms{
+ name = "Company Property Retention System";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"nN" = (
+/obj/structure/bed/chair/comfy/teal,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"nQ" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"nW" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchenC";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"nX" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"nZ" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/grill,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"oa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "centcom_dock";
+ name = "docking port controller";
+ pixel_y = 25;
+ req_one_access = list(13);
+ tag_door = "centcom_dock_airlock"
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"ob" = (
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"oj" = (
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"ol" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/obj/machinery/light/flamp/noshade,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"om" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/full,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"on" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"oo" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"op" = (
+/obj/machinery/transhuman/synthprinter,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"oq" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/computer/transhuman/resleeving,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"os" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = -1;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"ot" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"ov" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"ow" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"ox" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"oy" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"oz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"oA" = (
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"oC" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"oE" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/landmark{
+ name = "tdome2"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"oF" = (
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"oG" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"oI" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"oL" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/landmark{
+ name = "tdome1"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"oM" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/weapon/book/manual/robotics_cyborgs{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"oN" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"oQ" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"oS" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"oT" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"oU" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"oX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Living Quarters";
+ pixel_y = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"oY" = (
+/obj/effect/floor_decal/derelict/d2,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"pb" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 4;
+ frequency = 1443;
+ listening = 0;
+ name = "Spec Ops Intercom";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"pk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"pl" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"pq" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"pu" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"px" = (
+/obj/machinery/camera/network/crescent,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"py" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"pz" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"pC" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"pF" = (
+/obj/structure/closet{
+ name = "materials"
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"pG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"pI" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"pJ" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/control)
+"pN" = (
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"pO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"pZ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"qc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"qf" = (
+/obj/structure/table/standard,
+/obj/item/device/mmi,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"qg" = (
+/obj/effect/landmark{
+ name = "tdome2"
+ },
+/obj/machinery/camera/network/thunder{
+ invisibility = 101
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"qh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"qk" = (
+/obj/machinery/telecomms/allinone/antag{
+ intercept = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"ql" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"qo" = (
+/obj/machinery/flasher{
+ id = "flash";
+ name = "Thunderdome Flash"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome)
+"qp" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/folder/blue_captain,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"qq" = (
+/obj/effect/landmark{
+ name = "tdome1"
+ },
+/obj/machinery/camera/network/thunder{
+ invisibility = 101
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"qs" = (
+/obj/effect/floor_decal/derelict/d13,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"qz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"qB" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"qE" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"qK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"qQ" = (
+/obj/effect/floor_decal/derelict/d9,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"qR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/button/remote/blast_door{
+ id = "TelelockdownC";
+ name = "Teleporter Entrance Lockdown";
+ pixel_x = 6;
+ pixel_y = -5;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"qT" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"qU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"qV" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "ccboat";
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/shuttle/ccboat)
+"qZ" = (
+/obj/machinery/body_scanconsole{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"rc" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"rd" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"rf" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"rg" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"ri" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/weapon/pen/multi,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"rj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"rl" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/material/kitchen/rollingpin,
+/obj/item/weapon/material/knife/butch,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"rm" = (
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"rr" = (
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen cold room";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"rz" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"rA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"rI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"rM" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"rQ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"rR" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/shuttle/ccboat)
+"rU" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "escape_shuttle";
+ pixel_y = 25;
+ req_one_access = list(13);
+ tag_door = "escape_shuttle_hatch"
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"rZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/circular_saw,
+/obj/item/weapon/surgical/scalpel{
+ pixel_y = 12
+ },
+/obj/item/weapon/surgical/hemostat,
+/obj/item/weapon/surgical/retractor,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/control)
+"sb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"sc" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"se" = (
+/obj/effect/floor_decal/rust/mono_rusted3,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"sf" = (
+/obj/structure/flora/pottedplant,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"sg" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"sh" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"si" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/control)
+"sj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"sk" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"su" = (
+/obj/effect/floor_decal/derelict/d12,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"sw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"sz" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"sB" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"sC" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"sD" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"sE" = (
+/obj/machinery/camera/network/thunder{
+ alpha = 0;
+ invisibility = 101
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome)
+"sH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"sI" = (
+/obj/machinery/computer/communications{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"sO" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"sP" = (
+/obj/machinery/mecha_part_fabricator,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"sR" = (
+/obj/machinery/scale,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"sS" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/centcom;
+ base_turf = /turf/simulated/floor/reinforced;
+ docking_controller = "centcom_starboard_dock";
+ landmark_tag = "starboard_escape_cc";
+ name = "Starboard Escape Centcom"
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"sW" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"sX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"sY" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC4";
+ name = "Armoury Access";
+ pixel_y = -28;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/control)
+"th" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/mixer/cereal,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"tk" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ dir = 8;
+ name = "Master R&D Server Controller"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"tp" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"tq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/centcom/terminal)
+"ts" = (
+/obj/structure/closet/athletic_mixed,
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"tw" = (
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"tx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"tB" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"tE" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/mixer/cereal,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"tH" = (
+/obj/effect/floor_decal/derelict/d10,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"tJ" = (
+/obj/effect/floor_decal/derelict/d5,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"tK" = (
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"tL" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"tM" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"tO" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"tP" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/oven,
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"tQ" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/grill,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"tU" = (
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"tW" = (
+/obj/machinery/fitness/punching_bag/clown,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"tX" = (
+/obj/structure/table/standard,
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "anesthetic closet";
+ pixel_x = -32;
+ req_access = list(29)
+ },
+/obj/item/weapon/tank/anesthetic,
+/obj/item/weapon/tank/anesthetic,
+/obj/item/weapon/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/weapon/storage/box/gloves,
+/obj/item/device/defib_kit/jumper_kit,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/control)
+"tY" = (
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"tZ" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/control)
+"ua" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/computer/operating{
+ dir = 1;
+ name = "Robotics Operating Computer"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/control)
+"ub" = (
+/obj/machinery/transhuman/synthprinter,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"uf" = (
+/obj/machinery/computer/supplycomp{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"ug" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"uh" = (
+/mob/living/silicon/decoy{
+ name = "A.L.I.C.E."
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"up" = (
+/obj/machinery/door/airlock/highsecurity{
+ desc = "SHIT IS LIT";
+ name = "TACTICAL TOILET";
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"uy" = (
+/obj/effect/floor_decal/emblem/orangeline,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"uz" = (
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"uB" = (
+/obj/machinery/door/blast/regular,
+/turf/unsimulated/floor/techfloor_grid,
+/area/centcom/evac)
+"uD" = (
+/obj/machinery/door/window{
+ dir = 2;
+ name = "AI Core Door";
+ req_access = list(109)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"uE" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"uG" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m545saw/ap,
+/obj/item/ammo_magazine/m545saw/ap,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"uK" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/closet/walllocker_double/hydrant/west,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"uL" = (
+/turf/unsimulated/wall,
+/area/centcom/control)
+"uP" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "residential";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"uQ" = (
+/obj/structure/AIcore/deactivated,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"uV" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"uX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/ccboat)
+"vb" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"vc" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"vg" = (
+/obj/machinery/door/blast/regular{
+ id = "HEAVY";
+ name = "HEAVY ORDINANCE"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"vh" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"vj" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"vk" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"vl" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9fccc7";
+ name = "Airlock";
+ req_access = null;
+ stripe_color = "#ffffff"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/ccboat)
+"vm" = (
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Cargo Office";
+ req_access = list(31);
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/centcom)
+"vn" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"vo" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"vp" = (
+/obj/machinery/computer/card,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"vq" = (
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"vs" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"vu" = (
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"vw" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"vL" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"vM" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"vO" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"vR" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"vS" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"vT" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"vU" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "cargounload"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"vV" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"vW" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomehea";
+ name = "Heavy Supply"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"vZ" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/button/remote/blast_door{
+ id = "FrontlockC";
+ name = "Colony Entrance Lockdown";
+ pixel_x = 6;
+ pixel_y = -5;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "FrontlockBD";
+ name = "Colony Entrance Bottom";
+ pixel_x = -3;
+ pixel_y = -5;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"wa" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/ccboat)
+"wf" = (
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/gloves/tactical,
+/obj/item/clothing/head/helmet/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/shoes/boots/tactical,
+/obj/item/clothing/suit/armor/tactical,
+/obj/item/clothing/under/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/structure/closet{
+ desc = "It's a storage unit for standard-issue attire.";
+ name = "tactical equipment"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/weapon/storage/backpack/satchel/sec,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"wg" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"wh" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"wi" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/weapon/gun/energy/laser,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"wj" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"wk" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/weapon/gun/energy/laser,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"wn" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 6
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"wo" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"ws" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"wt" = (
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"wu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"wy" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"wz" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/toxin,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"wA" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"wC" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m95,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"wD" = (
+/obj/structure/sign/directions/elevator{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"wF" = (
+/obj/machinery/computer/robotics{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"wG" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/tiled,
+/area/centcom)
+"wO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"wP" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/snacks/cheeseburger,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"wT" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"wU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"wX" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/computer/skills,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"wY" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/storage/box/sniperammo,
+/obj/item/weapon/storage/box/sniperammo,
+/obj/item/weapon/storage/box/sniperammo,
+/obj/item/weapon/storage/box/sniperammo,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xc" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/projectile/heavysniper,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xe" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xg" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"xi" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"xk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"xt" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xu" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xw" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"xz" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"xE" = (
+/obj/machinery/button/remote/blast_door{
+ id = "HEAVY";
+ name = "SHIT IS LIT";
+ pixel_y = -28;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"xF" = (
+/obj/machinery/media/jukebox/hacked,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"xG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"xH" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"xK" = (
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"xP" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "TelelockdownC";
+ name = "Teleporter Full Lockdown";
+ pixel_x = 6;
+ pixel_y = -5;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"xQ" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/light,
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"xR" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"xS" = (
+/obj/structure/table/standard,
+/obj/item/device/mmi/digital/posibrain,
+/obj/item/device/robotanalyzer,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"xU" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"xY" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"yb" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"ye" = (
+/obj/effect/floor_decal/sign/dock/one,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"yg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"yh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"yj" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"yy" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Security Glass";
+ req_access = list(1);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"yB" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/fries,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"yC" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"yD" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC2";
+ name = "Armoury Access";
+ pixel_y = -28;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"yE" = (
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "ArmouryC2";
+ layer = 3.3;
+ name = "Armoury"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"yF" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"yG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"yI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"yM" = (
+/obj/machinery/computer/ship/engines/adv,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"yN" = (
+/turf/simulated/floor/grass,
+/area/centcom/main_hall)
+"yO" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"yR" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"yT" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"yU" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"yV" = (
+/obj/machinery/status_display{
+ pixel_y = 29
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"yX" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"yY" = (
+/obj/machinery/disease2/diseaseanalyser,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"yZ" = (
+/obj/machinery/disease2/incubator,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"za" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"ze" = (
+/turf/simulated/floor/tiled,
+/area/centcom)
+"zg" = (
+/obj/machinery/computer/ship/helm/adv,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"zi" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/centcom/terminal)
+"zl" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/obj/machinery/light/flamp/noshade,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"zn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"zo" = (
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"zq" = (
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"zr" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/centcom/main_hall)
+"zt" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Medical Glass";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"zw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"zx" = (
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ frequency = 1380;
+ id_tag = null;
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/shuttle/ccboat)
+"zy" = (
+/obj/effect/floor_decal/derelict/d11,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"zD" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/suit_cycler/security{
+ req_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"zF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"zG" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"zH" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"zJ" = (
+/obj/structure/table/standard,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/scanning_module{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"zM" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"zR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"zZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"Ab" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/shotgun/pump/USDF,
+/obj/item/weapon/gun/projectile/shotgun/pump/USDF,
+/obj/item/weapon/gun/projectile/shotgun/pump/USDF,
+/obj/item/weapon/gun/projectile/shotgun/pump/USDF,
+/obj/item/weapon/gun/projectile/shotgun/pump/USDF,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ac" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/wt550/lethal,
+/obj/item/weapon/gun/projectile/automatic/wt550/lethal,
+/obj/item/weapon/gun/projectile/automatic/wt550/lethal,
+/obj/item/weapon/gun/projectile/automatic/wt550/lethal,
+/obj/item/weapon/gun/projectile/automatic/wt550/lethal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Af" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper Main Hallway";
+ pixel_y = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Ag" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/nanotrasen_commander,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Ah" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/handcuffs,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Ak" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Am" = (
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"An" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/restaurant)
+"Ao" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Au" = (
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Av" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/l3closet/security,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Aw" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"AE" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"AF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/flame/lighter/zippo,
+/obj/item/weapon/storage/fancy/cigarettes,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"AG" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/captain,
+/turf/simulated/floor/carpet,
+/area/centcom/control)
+"AH" = (
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"AI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"AJ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/blue,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"AK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"AL" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ccshuttleshutter";
+ name = "Shutter Control";
+ pixel_x = 17;
+ pixel_y = 27
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"AO" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"AR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"AS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"AU" = (
+/obj/machinery/computer/station_alert{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"Bb" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"Bc" = (
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Bf" = (
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"Bj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"Bu" = (
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen cold room";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"Bx" = (
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"Bz" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "centcom_starboard_dock";
+ name = "docking port controller";
+ pixel_x = 24;
+ req_one_access = list(13);
+ tag_door = null
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"BD" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"BJ" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ door_color = "#822a1e";
+ frequency = 1380;
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "cargounload"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"BM" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"BR" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/shotgun/pump,
+/obj/item/weapon/gun/projectile/shotgun/pump,
+/obj/item/weapon/gun/projectile/shotgun/pump,
+/obj/item/weapon/gun/projectile/shotgun/pump,
+/obj/item/weapon/gun/projectile/shotgun/pump,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"BT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"BW" = (
+/obj/machinery/computer/shuttle_control/explore/ccboat{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"BY" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"Cg" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/turf/simulated/floor/plating,
+/area/shuttle/ccboat)
+"Cj" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"Cn" = (
+/turf/unsimulated/wall,
+/area/centcom/main_hall)
+"Cq" = (
+/obj/structure/panic_button{
+ pixel_x = -32
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"Cr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"Cv" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/supply)
+"Cy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"CA" = (
+/obj/effect/overmap/visitable/sector/virgo3b,
+/turf/unsimulated/mineral/virgo3b,
+/area/centcom)
+"CB" = (
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"CD" = (
+/obj/machinery/flasher/portable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"CE" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"CF" = (
+/obj/structure/window/reinforced,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"CG" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/purple/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"CL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/centcom/terminal)
+"CR" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"CS" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"CV" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Virology Laboratory"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"CW" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"CX" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"CZ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Da" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Dc" = (
+/turf/simulated/wall/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/area/centcom/terminal/tramfluff)
+"Dd" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Dg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Dh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ req_access = list(63);
+ req_one_access = newlist()
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "residential";
+ name = "Security Doors";
+ pixel_x = 6;
+ pixel_y = -5;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Di" = (
+/obj/machinery/telecomms/receiver/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Dk" = (
+/obj/machinery/cryopod/robot/door/dorms,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Dl" = (
+/obj/machinery/telecomms/bus/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Do" = (
+/obj/machinery/telecomms/processor/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Dp" = (
+/obj/machinery/telecomms/server/presets/centcomm,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Dq" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Dr" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"Ds" = (
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Dt" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Armoury Section";
+ req_access = list(58);
+ req_one_access = list(19)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Du" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Dv" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "kitchenC";
+ name = "Kitchen Shutters";
+ pixel_x = -26;
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"Dw" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Dx" = (
+/obj/structure/closet/wardrobe/orange,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Dy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "FrontlockC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Dz" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"DA" = (
+/obj/structure/closet/radiation,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"DB" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DC" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"DD" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/computer/arcade{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"DF" = (
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DG" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/computer/centrifuge,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DH" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DI" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DJ" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/ccboat)
+"DK" = (
+/obj/machinery/camera/network/crescent{
+ dir = 8
+ },
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"DL" = (
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"DN" = (
+/obj/machinery/computer/ship/sensors/adv,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"DO" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/bullpup,
+/obj/item/weapon/gun/projectile/automatic/bullpup,
+/obj/item/weapon/gun/projectile/automatic/bullpup,
+/obj/item/weapon/gun/projectile/automatic/bullpup,
+/obj/item/weapon/gun/projectile/automatic/bullpup,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"DR" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"DS" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"DT" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"DU" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"DV" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/skills{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"DX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/structure/table/woodentable{
+ desc = "It's a table..it has some scratch marks 'the commander likes to fuck me here'."
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"DY" = (
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"DZ" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/greenbandana,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Eb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/obj/machinery/computer/arcade{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ec" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/fire,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ef" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Eg" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Eh" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"Ei" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ek" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"El" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Em" = (
+/obj/machinery/telecomms/broadcaster/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"En" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control switch for port-side blast doors.";
+ id = "CentComPort";
+ name = "Security Doors";
+ pixel_x = -12;
+ pixel_y = -25;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Eo" = (
+/obj/machinery/button/remote/blast_door{
+ id = "crescent_checkpoint_access";
+ name = "Crescent Checkpoint Access";
+ pixel_x = -6;
+ pixel_y = -24;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Eq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Et" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ew" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ex" = (
+/obj/structure/urinal{
+ pixel_y = 31
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"Ey" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape)
+"Ez" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"EA" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Control";
+ pixel_y = -28;
+ req_access = list(101)
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/pda/captain,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"EB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"EC" = (
+/obj/machinery/telecomms/hub/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"ED" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/control)
+"EE" = (
+/obj/machinery/telecomms/relay/preset/sd,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"EF" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"EG" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"EH" = (
+/obj/structure/toilet,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"EJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/warning/lethal_turrets,
+/turf/simulated/floor,
+/area/centcom/control)
+"EK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"EL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"EM" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/battlerifle,
+/obj/item/weapon/gun/projectile/automatic/battlerifle,
+/obj/item/weapon/gun/projectile/automatic/battlerifle,
+/obj/item/weapon/gun/projectile/automatic/battlerifle,
+/obj/item/weapon/gun/projectile/automatic/battlerifle,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"EO" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"EQ" = (
+/obj/structure/table/standard,
+/obj/item/device/taperecorder,
+/obj/item/device/megaphone,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/hand_labeler,
+/obj/item/device/universal_translator,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"ET" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"EU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/red_hos,
+/obj/item/weapon/pen/multi,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"EV" = (
+/obj/machinery/door/airlock/medical{
+ name = "Virology Access";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"EW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"EX" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"EY" = (
+/obj/machinery/flasher/portable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"EZ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"Fa" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Fe" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ff" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ id = "CentComPort";
+ name = "Security Doors"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Fg" = (
+/obj/machinery/light/flamp/noshade,
+/turf/simulated/floor/grass,
+/area/centcom/main_hall)
+"Fh" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Fi" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Fj" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Fk" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Fl" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"Fn" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Fq" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Fu" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Fv" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballsoup,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Fx" = (
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Fy" = (
+/obj/structure/closet/l3closet/virology,
+/obj/item/clothing/mask/gas,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Fz" = (
+/obj/structure/table/reinforced,
+/obj/item/device/camera,
+/obj/item/weapon/storage/box/ids,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"FC" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/weapon/tool/wrench,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"FD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"FE" = (
+/obj/machinery/atmospherics/unary/freezer,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"FF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/department/commander,
+/turf/simulated/floor,
+/area/centcom/command)
+"FI" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security";
+ req_access = newlist()
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"FK" = (
+/obj/structure/sign/department/armory,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"FL" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"FM" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"FN" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"FO" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"FP" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"FS" = (
+/obj/structure/closet/l3closet/virology,
+/obj/item/clothing/mask/gas,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"FT" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"FU" = (
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "ArmouryC4";
+ layer = 3.3;
+ name = "Armoury"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"FV" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"FW" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/handcuffs,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"FX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"FY" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"FZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Gb" = (
+/obj/effect/landmark{
+ name = "tdome2"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"Gc" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access = list(6)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Gd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Gf" = (
+/obj/machinery/door/blast/regular{
+ id = "ArmouryC";
+ name = "Armoury"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Gg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Gh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"Gi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Gj" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Gk" = (
+/obj/structure/closet/l3closet/virology,
+/obj/item/clothing/mask/gas,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Gl" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Gm" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Go" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Gp" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Gq" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_y = -6
+ },
+/obj/item/device/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red,
+/obj/item/weapon/pen/blue{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Gr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Gs" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Gt" = (
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Gu" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC";
+ name = "Armoury Access";
+ pixel_y = -28;
+ req_access = list(3)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Gv" = (
+/obj/machinery/door/blast/regular{
+ id = "ArmouryC";
+ name = "Armoury"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Gw" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC";
+ name = "Armoury Access";
+ pixel_y = -28;
+ req_access = list(3)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Gy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Gz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/structure/filingcabinet,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"GA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full{
+ maxhealth = 1e+007
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/unsimulated/shuttle/plating,
+/area/centcom)
+"GD" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"GH" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"GI" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/flora/pottedplant/small{
+ name = "Audry VI";
+ pixel_x = 1;
+ pixel_y = 14
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"GJ" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomeaxe";
+ name = "Axe Supply"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"GK" = (
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"GL" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"GM" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"GN" = (
+/turf/simulated/wall/fancy_shuttle/window{
+ fancy_shuttle_tag = "tram"
+ },
+/area/centcom/terminal/tramfluff)
+"GO" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"GP" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/tdome/tdomeobserve)
+"GQ" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"GS" = (
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"GT" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"GU" = (
+/obj/machinery/door/airlock{
+ name = "Brig Restroom"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"GV" = (
+/obj/structure/bed/chair/sofa/bench/right{
+ padding_color = "#99AAFF"
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"GW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"GX" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/hemostat,
+/obj/item/weapon/surgical/cautery,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ha" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Hc" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/weapon/surgical/retractor,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hd" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Hf" = (
+/obj/effect/floor_decal/derelict/d1,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Hg" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/circular_saw{
+ pixel_y = 8
+ },
+/obj/item/weapon/surgical/scalpel,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hh" = (
+/obj/machinery/ntnet_relay,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Hi" = (
+/obj/structure/table/woodentable,
+/obj/machinery/cash_register/civilian,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Hj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Hk" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Hl" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Hn" = (
+/obj/machinery/computer/pod{
+ id = "thunderdomegen";
+ name = "Thunderdome General Supply"
+ },
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeadmin)
+"Hp" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/surgicaldrill,
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/surgical/FixOVein,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/item/stack/nanopaste/advanced,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hq" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Hs" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/computer/transhuman/designer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hv" = (
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"Hw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hy" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Hz" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/orange/bordercorner2,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"HA" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"HB" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/ccboat)
+"HD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"HE" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"HF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"HH" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ icon_state = "frame";
+ pixel_y = 30
+ },
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"HI" = (
+/obj/structure/bed/padded,
+/obj/machinery/camera/network/crescent,
+/obj/machinery/flasher{
+ id = "CellC1";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"HJ" = (
+/obj/structure/bed/padded,
+/obj/machinery/camera/network/crescent,
+/obj/machinery/flasher{
+ id = "CellC2";
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"HK" = (
+/obj/structure/table/standard,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06";
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"HL" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/item/weapon/storage/box/glasses/square,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"HM" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"HN" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"HO" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 27
+ },
+/obj/item/weapon/storage/box/donut,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"HQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"HS" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"HT" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"HV" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"HW" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"HY" = (
+/obj/machinery/chem_master,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"HZ" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ia" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ib" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Id" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ie" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"If" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ig" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ih" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ij" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ik" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Il" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ req_access = list(63);
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Im" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"In" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Io" = (
+/obj/machinery/computer/operating,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ip" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ir" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"It" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Iv" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Iw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/command)
+"Ix" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Iy" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/fryer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"IA" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"IB" = (
+/obj/machinery/door/airlock/command{
+ id_tag = "HoSdoor";
+ name = "Head of Security";
+ req_access = list(58)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"IC" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/stamp/hos,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"IE" = (
+/obj/structure/table/standard,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06";
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"IF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"IG" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/folder/red_hos,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"IH" = (
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"IJ" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"IK" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/device/megaphone,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"IM" = (
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/gloves/tactical,
+/obj/item/clothing/head/helmet/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/shoes/boots/tactical,
+/obj/item/clothing/suit/armor/tactical,
+/obj/item/clothing/under/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/structure/closet{
+ desc = "It's a storage unit for standard-issue attire.";
+ name = "tactical equipment"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/med,
+/obj/item/weapon/storage/backpack/satchel/sec,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"IN" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ id = "CellC1";
+ name = "Cell 1";
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"IO" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ id = "CellC2";
+ name = "Cell 2";
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"IP" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ id = "CellC3";
+ name = "Cell 3";
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"IS" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"IT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"IU" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"IV" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"IW" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"IY" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"IZ" = (
+/obj/machinery/computer/shuttle_control/emergency{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"Ja" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/gun/energy/gun/burst,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Jb" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = -16
+ },
+/obj/machinery/photocopier/faxmachine,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Jc" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Jd" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/lasercannon,
+/obj/item/weapon/gun/energy/lasercannon,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Je" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Jf" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = -16
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Jh" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Ji" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Jk" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Jl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/angled/open{
+ id = "ccshuttleshutter"
+ },
+/turf/simulated/floor,
+/area/shuttle/ccboat)
+"Jm" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Jn" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Jo" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = -16
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Jp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Jq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/computer/transhuman/resleeving,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/storage/box/backup_kit,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Jr" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Js" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/folder/white_cmo,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"Jt" = (
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = 38
+ },
+/obj/structure/sign/directions/elevator{
+ dir = 4;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Jv" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"Jw" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/folder/white_rd,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"Jx" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 3
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"JA" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"JB" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/folder/yellow_ce,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"JD" = (
+/obj/effect/floor_decal/emblem/orangeline{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"JF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"JG" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"JH" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/fryer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"JI" = (
+/obj/machinery/door_timer/cell_3{
+ id = "CellC1";
+ name = "Cell 1";
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"JJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"JL" = (
+/obj/machinery/door_timer/cell_3{
+ id = "CellC2";
+ name = "Cell 2";
+ pixel_y = 29
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"JM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"JN" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red_hos,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"JO" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"JP" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"JQ" = (
+/obj/machinery/account_database{
+ dir = 8;
+ name = "CentComm Accounts database"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"JR" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"JS" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"JT" = (
+/obj/structure/table/reinforced{
+ desc = "It's a table, but you see something writen in permanent marker 'Dhael was here'"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"JU" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"JV" = (
+/obj/structure/closet{
+ name = "robotics parts"
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"JX" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"JY" = (
+/obj/machinery/computer/med_data,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"JZ" = (
+/obj/structure/medical_stand,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Kb" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"Kc" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Kd" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"Ke" = (
+/obj/machinery/computer/arcade/battle,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Kf" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Kg" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Kh" = (
+/obj/machinery/vending/wallmed1{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Ki" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/material/kitchen/rollingpin,
+/obj/item/weapon/material/knife/butch,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"Kj" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Kk" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant{
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Kl" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Km" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/closet/walllocker_double/hydrant/east,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Kn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Ko" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/light,
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Kp" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Kq" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Kr" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ks" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Kt" = (
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/structure/table/glass,
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Kv" = (
+/obj/machinery/fitness/heavy/lifter,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Kx" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ky" = (
+/obj/structure/bed/chair/sofa/bench/left{
+ padding_color = "#99AAFF"
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Kz" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"KA" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"KC" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/vest/tactical,
+/obj/item/clothing/suit/storage/vest/tactical,
+/obj/item/clothing/suit/storage/vest/tactical,
+/obj/item/clothing/suit/storage/vest/tactical,
+/obj/item/clothing/suit/storage/vest/tactical,
+/obj/item/clothing/suit/storage/vest/tactical,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/suit/storage/vest/tactical,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"KD" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KF" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"KG" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/obj/machinery/smartfridge/chemistry/virology,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KJ" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/item/roller/adv,
+/obj/item/roller/adv{
+ pixel_y = 6
+ },
+/obj/item/roller/adv{
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"KL" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/closet/secure_closet/medical3,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KN" = (
+/obj/machinery/r_n_d/server/centcom,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"KO" = (
+/obj/machinery/light,
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"KP" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KR" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/paramedic,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"KS" = (
+/obj/effect/floor_decal/emblem/stellardelight,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"KT" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"KU" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"KV" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"KW" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"KX" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"KZ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"La" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/lino,
+/area/centcom/command)
+"Lc" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "turrets";
+ name = "Security Door";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Lg" = (
+/obj/effect/floor_decal/derelict/d14,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Lh" = (
+/obj/structure/table/standard,
+/obj/structure/flora/pottedplant{
+ pixel_y = 10
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Li" = (
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Lj" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = 10
+ },
+/obj/item/stack/medical/ointment{
+ pixel_y = 10
+ },
+/obj/random/medical/lite,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Lk" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"Ll" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Lm" = (
+/obj/structure/grille,
+/obj/effect/blocker,
+/obj/structure/window/reinforced/full{
+ maxhealth = 1e+007
+ },
+/turf/unsimulated/shuttle/plating,
+/area/tdome/tdomeobserve)
+"Ln" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Lo" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/syringe/inaprovaline,
+/obj/item/weapon/reagent_containers/syringe/inaprovaline{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/syringe/inaprovaline{
+ pixel_y = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Lr" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 Locker"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Ls" = (
+/obj/structure/table/standard,
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/random/firstaid,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Lt" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Lu" = (
+/obj/machinery/computer/diseasesplicer,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Lv" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Lw" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Lx" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Ly" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Lz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/metal{
+ name = "NanoTrasen Offices";
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LA" = (
+/obj/machinery/door/airlock/centcom{
+ name = "NanoTrasen Offices"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"LC" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"LD" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ name = "NanoTrasen Offices";
+ req_one_access = list(101)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LE" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/weapon/book/codex,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"LF" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"LG" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"LH" = (
+/obj/effect/floor_decal/sign/dock/two,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"LI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"LK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"LL" = (
+/obj/machinery/igniter,
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome)
+"LM" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"LN" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"LO" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LP" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LQ" = (
+/obj/structure/closet/wardrobe/orange,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"LR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"LS" = (
+/obj/structure/table/glass,
+/obj/structure/flora/pottedplant{
+ pixel_y = 10
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ pixel_x = 16
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LT" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"LV" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"LW" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"LX" = (
+/obj/effect/landmark{
+ name = "tdome1"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"LY" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"LZ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"Ma" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Mb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Mc" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Md" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Me" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Mh" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Mi" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ pixel_x = 16
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ml" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Mn" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Mo" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Mq" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Mr" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Ms" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"Mu" = (
+/obj/machinery/door/window/brigdoor{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "front";
+ name = "Front doors";
+ pixel_x = 5;
+ pixel_y = 25;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "innerS";
+ name = "Inner doors";
+ pixel_x = -5;
+ pixel_y = 25;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Mv" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Mx" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"My" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/combat,
+/obj/item/clothing/shoes/leg_guard/combat,
+/obj/item/clothing/suit/armor/combat,
+/obj/item/clothing/head/helmet/combat,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Mz" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ req_access = list(63);
+ req_one_access = newlist()
+ },
+/obj/machinery/button/remote/airlock{
+ id = "front";
+ name = "Front doors";
+ pixel_x = 5;
+ pixel_y = 25;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "innerS";
+ name = "Inner doors";
+ pixel_x = -5;
+ pixel_y = 25;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"MA" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"MB" = (
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"MD" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"MF" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"MG" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"MH" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"MI" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -8
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 8
+ },
+/obj/item/weapon/backup_implanter,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"MJ" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer/advanced,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"MK" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data{
+ icon_keyboard = "laptop_key";
+ icon_screen = "medlaptop";
+ icon_state = "laptop";
+ light_color = "#00b000"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"ML" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"MM" = (
+/obj/structure/table/glass{
+ desc = "It's a table, it has some scracthes..they say 'Mlem'."
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"MN" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"MQ" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"MR" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"MS" = (
+/turf/unsimulated/floor{
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "reinforced";
+ name = "reinforced floor"
+ },
+/area/centcom)
+"MT" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = -16
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"MU" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = -16
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ pixel_x = 16
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ pixel_x = 16
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"MV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"MX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"MY" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"MZ" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Nb" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Ne" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Nf" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Nh" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ni" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Nj" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Nk" = (
+/obj/structure/table/glass,
+/obj/item/device/defib_kit/compact/loaded,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Nl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Nm" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/cups,
+/obj/item/weapon/storage/box/cups,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Nn" = (
+/obj/structure/bed/padded,
+/obj/machinery/camera/network/crescent,
+/obj/machinery/flasher{
+ id = "CellC3";
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"No" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Np" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Nq" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Nr" = (
+/obj/machinery/computer/card,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Nt" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/storage/box/teargas,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Nv" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"Nw" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ny" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Nz" = (
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"NC" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"ND" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"NE" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"NF" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"NG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/ids,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"NH" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"NI" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"NJ" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/ert,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"NL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"NN" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"NO" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"NP" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"NQ" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"NR" = (
+/obj/machinery/door/airlock{
+ name = "Unit 4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"NS" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"NT" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"NU" = (
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"NV" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"NW" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"NY" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/machinery/newscaster{
+ pixel_x = 29
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"NZ" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Oa" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-24"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ob" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Od" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Of" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Oh" = (
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"Oi" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "turrets";
+ name = "Turret Doors";
+ pixel_x = -23;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Oj" = (
+/obj/structure/table/steel,
+/obj/item/clothing/shoes/boots/jackboots{
+ desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom";
+ name = "Dhaeleena's Jackboots"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Ok" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/terminal)
+"Om" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"On" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Oo" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Op" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Oq" = (
+/obj/structure/table/reinforced,
+/obj/item/device/camera,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Or" = (
+/obj/machinery/camera/network/crescent,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Os" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ot" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/escape)
+"Ou" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/gun/energy/taser,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ov" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Ow" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/ids,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ox" = (
+/obj/machinery/door/airlock/command{
+ id_tag = "HoSdoor";
+ name = "Head of Security";
+ req_access = list(58)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Oy" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Oz" = (
+/obj/machinery/conveyor{
+ id = "cargoload"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"OA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"OC" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"OD" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"OE" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/window/brigdoor{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"OH" = (
+/obj/effect/floor_decal/derelict/d8,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"OK" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ArmouryC2";
+ name = "Armoury Access";
+ pixel_x = -28;
+ pixel_y = 28;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"OL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ door_color = "#822a1e";
+ frequency = 1380;
+ id_tag = "escape_shuttle_hatch";
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/escape)
+"OM" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/secure_closet/nanotrasen_security{
+ desc = "This locker is filled silly stickers and some other serious NanoTrasen ones. It is lazily labeled 'The big cat'."
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"ON" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"OO" = (
+/obj/machinery/door/airlock/multi_tile/glass,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"OP" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"OR" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"OS" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"OT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"OU" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"OW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/department/medbay{
+ plane = -34
+ },
+/turf/simulated/floor,
+/area/centcom/medical)
+"OY" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom)
+"OZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"Pa" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"Pc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Pd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Locker Room"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"Pf" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatsteak,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Pg" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Ph" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Pj" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Pk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Pl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"Pn" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/bed/chair,
+/obj/machinery/status_display{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Po" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Pp" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Residential Security";
+ pixel_y = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Pq" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Pr" = (
+/obj/machinery/status_display{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Ps" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/floortube,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Pu" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/device/healthanalyzer/advanced,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Pv" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Pw" = (
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/elevator{
+ dir = 4;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Px" = (
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/elevator{
+ dir = 4;
+ pixel_y = 25
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Py" = (
+/obj/machinery/door_timer/cell_3{
+ id = "CellC3";
+ pixel_x = 31
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"Pz" = (
+/obj/effect/floor_decal/derelict/d15,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"PA" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "CentComPort";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"PB" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"PC" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"PD" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/grass,
+/area/centcom/main_hall)
+"PE" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "CentComPort";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"PF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"PG" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"PH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"PI" = (
+/obj/machinery/computer/cryopod/dorms{
+ name = "Company Property Retention System";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"PJ" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"PK" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"PL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full{
+ maxhealth = 1e+007
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/unsimulated/shuttle/plating,
+/area/centcom/main_hall)
+"PM" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "CentComPort";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"PO" = (
+/obj/effect/floor_decal/derelict/d6,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"PP" = (
+/turf/simulated/floor/carpet,
+/area/centcom/control)
+"PQ" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "CentComPort";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"PR" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/shuttle/escape)
+"PS" = (
+/obj/effect/forcefield{
+ desc = "You can't get in. Heh.";
+ layer = 1;
+ name = "Blocker"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"PT" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"PW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/blocker,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"PX" = (
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"PY" = (
+/obj/machinery/cryopod/robot/door/dorms{
+ base_icon_state = "door_closed";
+ desc = "A small elevator";
+ dir = 2;
+ icon = 'icons/obj/doors/Door2x1glass.dmi';
+ icon_state = "door_closed";
+ name = "elevator";
+ on_enter_occupant_message = "The elevator doors close slowly. You can now head off for the residential, commercial, and other floors.";
+ on_store_message = "has departed for one of the various colony floors";
+ on_store_name = "Colony Oversight";
+ on_store_visible_message_2 = "to the colony districts.";
+ time_till_despawn = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"PZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "FrontlockBD";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Qa" = (
+/obj/structure/table/steel,
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/cautery,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Qb" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Qc" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "CentComPort";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Qd" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "CentComPort";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Qe" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"Qg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"Qh" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-24"
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"Qi" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"Qj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Qk" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"Ql" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Qm" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Qn" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Qp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Qq" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06";
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Qr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"Qt" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"Qu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Qw" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Qx" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Qy" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_l"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"Qz" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"QB" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"QC" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom)
+"QD" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"QE" = (
+/obj/machinery/computer/supplycomp{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"QF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"QH" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/structure/closet/secure_closet/hop,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"QI" = (
+/obj/structure/flora/pottedplant,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"QJ" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"QL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full{
+ maxhealth = 1e+007
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/unsimulated/shuttle/plating,
+/area/centcom)
+"QN" = (
+/obj/effect/floor_decal/derelict/d16,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"QR" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"QS" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"QT" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"QU" = (
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"QV" = (
+/obj/structure/sign/double/barsign{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"QW" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/flame/lighter/zippo,
+/obj/item/weapon/storage/fancy/cigarettes,
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"QX" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"QY" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/shield/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"QZ" = (
+/turf/simulated/floor/reinforced/airless,
+/area/shuttle/centcom/ccbay)
+"Ra" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "residential";
+ name = "Security Door";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Rb" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/shield/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Rd" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security";
+ req_access = newlist()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Re" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel_grid,
+/area/centcom/terminal)
+"Rf" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Rh" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/shield/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ri" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Rj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Rk" = (
+/obj/machinery/computer/prisoner,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Rl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Rm" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 30
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat{
+ name = "Discipline"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Rn" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/ward,
+/obj/item/weapon/stamp/denied,
+/obj/item/device/binoculars,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ro" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/obj/machinery/photocopier,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Rp" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Rq" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_l"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"Rr" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"Rt" = (
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Rv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom)
+"Rw" = (
+/turf/simulated/floor,
+/area/centcom/control)
+"Rx" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/northright{
+ dir = 2;
+ name = "Cargo Ordering";
+ req_access = list(50)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/centcom)
+"Ry" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"RB" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "FrontlockC2";
+ name = "Checkpoint Shielding";
+ pixel_x = -35;
+ pixel_y = -8;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"RC" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"RD" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"RF" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"RG" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"RH" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"RI" = (
+/obj/structure/curtain/open/shower,
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"RK" = (
+/obj/structure/bed/roller,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/holding)
+"RM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/door/blast/shutters{
+ id = "RiotCon";
+ name = "Riot Control";
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"RN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/department/telecoms,
+/turf/simulated/floor,
+/area/centcom/control)
+"RO" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomegen";
+ name = "General Supply"
+ },
+/turf/unsimulated/floor/techfloor_grid,
+/area/tdome/tdome1)
+"RP" = (
+/obj/machinery/door/blast/shutters{
+ id = "RiotCon";
+ name = "Riot Control";
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"RQ" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"RR" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/unsimulated/floor;
+ landmark_tag = "supply_cc";
+ name = "Centcom Supply Depot"
+ },
+/turf/simulated/shuttle/wall,
+/area/shuttle/supply)
+"RS" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/door/blast/shutters{
+ id = "RiotCon";
+ name = "Riot Control";
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"RT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/computer/card,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"RU" = (
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"RV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/kitchenspike{
+ desc = "Lifts engines! You could probably also impale people and monkeys on it... but why would you do that, weirdo?";
+ name = "engine lift"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"RW" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/centcom)
+"RX" = (
+/obj/structure/flora/pottedplant,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"RY" = (
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -6
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"RZ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"Sa" = (
+/obj/machinery/computer/supplycomp/control{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"Sb" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Sc" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/living)
+"Sd" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/camera,
+/obj/item/weapon/storage/box/ids,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Se" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"Sf" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Sg" = (
+/obj/machinery/button/remote/blast_door{
+ id = "RiotCon";
+ name = "Riot Control";
+ pixel_x = -23;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Sh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Sj" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/centcom/specops)
+"Sl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Sn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"So" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Sp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Sq" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"Sr" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom)
+"Ss" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Su" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Sw" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/item/device/healthanalyzer/advanced,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Sx" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Sy" = (
+/obj/structure/curtain/open/shower,
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Sz" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/ccboat)
+"SB" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"SC" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"SD" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Security Arrivals";
+ pixel_x = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"SF" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"SG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/security)
+"SJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"SK" = (
+/obj/effect/blocker,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"SL" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"SM" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SN" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/obj/item/weapon/storage/box/handcuffs,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SO" = (
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"SP" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"SQ" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SR" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"ST" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"SU" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SW" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/closet/secure_closet/nanotrasen_warden,
+/obj/item/weapon/storage/box/handcuffs,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"SX" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"SZ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Ta" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Tb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Td" = (
+/obj/structure/table/standard,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Te" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Tf" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/ashtray/glass,
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"Tg" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"Th" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Ti" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/card/id/gold/captain/spare,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Tj" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access = list(45)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Tk" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "innerS";
+ name = "Colonial Security Airlock";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Tm" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Warden's Office";
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Tn" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/sniperrifle,
+/obj/item/weapon/gun/energy/sniperrifle,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"To" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Tp" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Tq" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"Tr" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Tu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Tv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Tw" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Tz" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"TA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"TD" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"TF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "ccshuttleshutter"
+ },
+/turf/simulated/floor,
+/area/shuttle/ccboat)
+"TG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/turf/simulated/floor/tiled,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"TJ" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TK" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"TL" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/ashtray/glass,
+/turf/simulated/floor/carpet,
+/area/centcom/restaurant)
+"TM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TN" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/escape)
+"TO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TP" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TR" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Security";
+ pixel_y = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TS" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Processing";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TT" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"TU" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"TV" = (
+/obj/machinery/telecomms/allinone/ert,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"TW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"TY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"TZ" = (
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ua" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"Ub" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Uc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"Ud" = (
+/obj/machinery/computer/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ue" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Uf" = (
+/obj/effect/floor_decal/borderfloor{
+ pixel_y = -16
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Ug" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Uh" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Ui" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/frags,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Uk" = (
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ul" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Um" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Un" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Uo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Up" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Uq" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Ur" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ut" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Uu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/department/interrogation{
+ plane = -34
+ },
+/turf/simulated/floor,
+/area/centcom/security)
+"Uv" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Uw" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Ux" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Uy" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bathroom)
+"Uz" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/shield/riot,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"UA" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/shield/riot,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"UB" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/centcom/main_hall)
+"UD" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"UE" = (
+/obj/machinery/computer/teleporter{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"UF" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"UG" = (
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/folder/red,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"UH" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/empslite{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/storage/box/empslite,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"UJ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"UK" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/roastbeef,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"UL" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"UM" = (
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Cargo Office";
+ req_access = list(31);
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled,
+/area/centcom)
+"UN" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"UO" = (
+/obj/machinery/camera/network/crescent{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"UQ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"UR" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"US" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/escape)
+"UT" = (
+/obj/effect/floor_decal/derelict/d4,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"UW" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"UX" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"UY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"UZ" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Va" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Vb" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Vc" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Vd" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Vf" = (
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 4;
+ padding_color = "#99AAFF"
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Vg" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Vh" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Vj" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Vk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Vl" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Vm" = (
+/obj/machinery/fitness/punching_bag/clown,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Vo" = (
+/obj/machinery/vending/hydroseeds,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Vp" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"Vq" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/centcom)
+"Vr" = (
+/obj/machinery/fitness/heavy/lifter,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Vt" = (
+/obj/machinery/disease2/isolator,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Vu" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Vv" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/material/minihoe,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Vw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/ccboat)
+"Vx" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Vy" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/lasagna,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Vz" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/restaurant)
+"VA" = (
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"VC" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VE" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VF" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VH" = (
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"VI" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VJ" = (
+/obj/machinery/teleport/station,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"VK" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ icon_state = "frame";
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VL" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/weapon/folder/blue_hop,
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"VM" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"VN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/main_hall)
+"VO" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"VP" = (
+/obj/item/device/taperecorder,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VQ" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"VR" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"VS" = (
+/obj/structure/table/standard,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"VT" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"VV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ req_access = list(63);
+ req_one_access = newlist()
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VX" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VY" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"VZ" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom;
+ base_turf = /turf/simulated/floor/reinforced;
+ docking_controller = "centcom_dock";
+ landmark_tag = "escape_cc";
+ name = "Escape Shuttle"
+ },
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape)
+"Wa" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Wb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/restaurant)
+"Wc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled,
+/area/centcom/restaurant)
+"Wd" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"We" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Wf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Wg" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Wh" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Wj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled{
+ icon_state = "white"
+ },
+/area/centcom/living)
+"Wk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Wl" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Wm" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/bathroom)
+"Wn" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Wo" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Wp" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"Wq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Wr" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"Ws" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Wt" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"Wu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ww" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Wx" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Wz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"WA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"WB" = (
+/turf/simulated/floor/bluegrid,
+/area/centcom/control)
+"WC" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"WD" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/o2,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"WE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"WF" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Engineering Glass";
+ req_access = null;
+ stripe_color = "#913013"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"WG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/centcom)
+"WH" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"WI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/medical)
+"WJ" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"WK" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"WM" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"WO" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"WP" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"WQ" = (
+/obj/structure/filingcabinet/chestdrawer{
+ desc = "A large drawer filled with autopsy reports.";
+ name = "Autopsy Reports"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"WR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/bar)
+"WS" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"WU" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"WV" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"WW" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"WX" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"WY" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"WZ" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "TelelockdownC";
+ name = "Teleporter Full Lockdown";
+ pixel_x = 6;
+ pixel_y = -5;
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Xb" = (
+/obj/structure/table/rack,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Xc" = (
+/obj/machinery/door/airlock/glass{
+ name = "Brig Dormitories"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Xd" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"Xe" = (
+/obj/structure/closet{
+ name = "welding equipment"
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Xf" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Xg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled,
+/area/centcom/control)
+"Xh" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/centcom/security)
+"Xi" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"Xk" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Xl" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"Xm" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/dark,
+/area/centcom)
+"Xn" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Xp" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Xq" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom)
+"Xr" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/energy/taser,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Xs" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/gun/energy/xray,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Xt" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Xu" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Xw" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Xx" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Xy" = (
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"Xz" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"XA" = (
+/obj/structure/bed/chair/sofa/bench/right{
+ dir = 1;
+ padding_color = "#99AAFF"
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"XB" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"XD" = (
+/obj/machinery/door/airlock/security{
+ id_tag = "front";
+ name = "Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"XE" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"XF" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{
+ pixel_y = 10
+ },
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"XH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/radio/off,
+/obj/item/device/megaphone,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"XI" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ dir = 8
+ },
+/obj/structure/fuel_port{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"XJ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-04"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"XM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"XN" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"XO" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 29
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"XP" = (
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"XQ" = (
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 1;
+ padding_color = "#99AAFF"
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"XR" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"XS" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"XT" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"XU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"XV" = (
+/obj/structure/table/reinforced,
+/obj/item/device/taperecorder,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"XW" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"XX" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"XY" = (
+/obj/machinery/camera/network/crescent{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"XZ" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"Ya" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Yc" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"Yd" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/machinery/camera/network/crescent,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Ye" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ door_color = "#822a1e";
+ frequency = 1380;
+ id_tag = "escape_shuttle_hatch";
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/escape)
+"Yf" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ door_color = "#822a1e";
+ frequency = 1380;
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"Yh" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2,
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"Yj" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Ym" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"Yn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Yo" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Yp" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Yq" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/wood,
+/area/centcom/restaurant)
+"Ys" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/seccarts{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Yt" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Yu" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Yv" = (
+/obj/machinery/atm{
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Yw" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Yx" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Yy" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Yz" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"YA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"YB" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"YC" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"YD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape)
+"YE" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/control)
+"YF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"YH" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"YI" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/device/taperecorder,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/command)
+"YJ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"YK" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"YL" = (
+/turf/simulated/floor/tiled,
+/area/centcom/terminal)
+"YM" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/syringes,
+/turf/simulated/floor/tiled/white,
+/area/centcom/medical)
+"YN" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "supply_shuttle";
+ pixel_y = 24;
+ req_one_access = list(13,31);
+ tag_door = "supply_shuttle_hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"YP" = (
+/obj/item/modular_computer/console/preset/civilian{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/ccboat)
+"YQ" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_yellow"
+ },
+/area/shuttle/escape)
+"YR" = (
+/obj/machinery/smartfridge/drinks,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"YS" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/sofa/bench/left{
+ dir = 8;
+ padding_color = "#99AAFF"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"YT" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/escape)
+"YU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"YV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"YX" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"YY" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"YZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Za" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"Zb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Zc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/medical)
+"Zd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Ze" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/main_hall)
+"Zg" = (
+/turf/simulated/floor/tiled,
+/area/centcom/bathroom)
+"Zh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
+/turf/simulated/floor/lino,
+/area/centcom/restaurant)
+"Zj" = (
+/obj/machinery/newscaster{
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Zk" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"Zl" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Zm" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-04"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Zo" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Zp" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/deck/cards,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Zq" = (
+/obj/machinery/computer/security/telescreen,
+/turf/unsimulated/floor/steel,
+/area/tdome/tdomeobserve)
+"Zr" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/supply)
+"Zs" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Confiscated Items";
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"Zt" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_r"
+ },
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/supply)
+"Zu" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"Zv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"Zx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Zy" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled,
+/area/centcom/living)
+"Zz" = (
+/obj/machinery/status_display{
+ pixel_x = -31
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"ZA" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/centcom/command)
+"ZB" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"ZC" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#323d80";
+ name = "Command Glass";
+ req_access = list(19);
+ req_one_access = list(19);
+ stripe_color = "#f7d35c"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape)
+"ZD" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"ZF" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"ZG" = (
+/obj/item/weapon/paper{
+ info = "You're not supposed to be here.";
+ name = "unnerving letter"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom)
+"ZH" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"ZI" = (
+/obj/effect/floor_decal/derelict/d7,
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"ZJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/centcom/terminal)
+"ZK" = (
+/turf/simulated/floor/tiled,
+/area/centcom/evac)
+"ZL" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"ZM" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"ZN" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/tool/wrench,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ZO" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"ZP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security{
+ name = "\improper CentCom Residential Security"
+ })
+"ZQ" = (
+/turf/unsimulated/mineral/virgo3b,
+/area/centcom)
+"ZR" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/centcom/security)
+"ZS" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/tiled/white,
+/area/centcom/bar)
+"ZT" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+"ZU" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "tram"
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/terminal/tramfluff)
+"ZV" = (
+/obj/structure/bed/chair/backed_grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/centcom/ccbay)
+"ZW" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/centcom/command)
+"ZZ" = (
+/obj/machinery/computer/arcade/orion_trail,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/centcom/security)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+CA
+aa
+"}
+(3,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(4,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(5,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(6,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(7,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(8,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(9,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(10,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(11,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(12,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(13,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(14,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(15,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(16,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(17,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(18,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(19,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(20,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(21,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+aH
+Ua
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+GW
+fg
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(22,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+QL
+Qr
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(23,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+QL
+Qr
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Ey
+Ey
+PR
+PR
+PR
+PR
+Ey
+Bf
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(24,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+aH
+Qr
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+US
+YT
+yb
+yb
+yb
+KO
+Ot
+Ey
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(25,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+QL
+Qr
+Bf
+Ey
+Ey
+Ey
+Ye
+Ey
+Ey
+Ey
+Ey
+Bf
+Bf
+Bf
+Bf
+US
+YT
+fW
+fW
+fW
+fW
+ey
+gm
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(26,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+aH
+Qr
+Bf
+US
+YT
+YQ
+YQ
+WE
+Xd
+Xd
+Ey
+PR
+PR
+PR
+PR
+Ey
+Ey
+jN
+fW
+fW
+pI
+ey
+gm
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(27,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+QL
+Qr
+Bf
+US
+YT
+YQ
+YQ
+YQ
+YQ
+XX
+Ey
+Xk
+Xk
+Xk
+Xk
+YC
+Ey
+et
+fW
+fW
+pI
+Ot
+Ey
+Ey
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(28,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+QL
+Qr
+Bf
+Ot
+Ey
+YQ
+YQ
+YQ
+Xi
+Xi
+Ey
+Wg
+RU
+RU
+RU
+RU
+yy
+fW
+fW
+TN
+fW
+CB
+Ey
+Ey
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(29,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+aH
+Qr
+Bf
+Ey
+Ey
+Ey
+Ey
+WF
+Ey
+Ey
+Ot
+RU
+To
+Nz
+FY
+RU
+Ot
+PR
+Ot
+Ey
+Ey
+Ey
+Ey
+Ey
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(30,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ah
+ah
+PL
+PL
+PL
+ah
+ah
+PL
+PL
+PL
+ah
+ah
+Qr
+Bf
+Bf
+Bf
+Ey
+zR
+RU
+Xk
+Xk
+YC
+RU
+To
+Ps
+FY
+RU
+Xk
+Xk
+Ey
+rU
+rQ
+Qi
+hS
+PR
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(31,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ah
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+qU
+Qr
+Bf
+Bf
+Bf
+OL
+RU
+RU
+RU
+RU
+RU
+RU
+To
+Nz
+Th
+hY
+GQ
+RU
+ZC
+bn
+bn
+bn
+sI
+PR
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(32,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ah
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+ah
+Qr
+Bf
+Bf
+Bf
+VZ
+Wg
+RU
+Nz
+Nz
+Nz
+RU
+RU
+RU
+gN
+kD
+KS
+YD
+Ey
+uQ
+bn
+rM
+IZ
+PR
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(33,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ah
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+qU
+Qr
+Bf
+Bf
+Bf
+OL
+RU
+RU
+RU
+RU
+RU
+RU
+To
+Nz
+pZ
+pl
+wn
+RU
+ZC
+bn
+bn
+bn
+AU
+PR
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(34,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ah
+kQ
+vu
+vu
+vu
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+oa
+Bf
+Bf
+Bf
+Ey
+zR
+RU
+Xl
+Xl
+EB
+RU
+To
+Ps
+FY
+RU
+Xl
+Xl
+Ey
+gv
+LZ
+AS
+oU
+PR
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(35,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+Vq
+ah
+vu
+vu
+vu
+vu
+ah
+dj
+ze
+dj
+ze
+ze
+ze
+Qr
+Bf
+Ey
+Ey
+Ey
+Ey
+WF
+Ey
+Ey
+Ot
+RU
+To
+Nz
+FY
+RU
+Ot
+PR
+Ot
+Ey
+Ey
+Ey
+Ey
+Ey
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(36,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+GA
+GA
+GA
+aH
+aH
+GA
+GA
+GA
+aH
+ah
+vu
+vu
+vu
+vu
+ah
+Qt
+ze
+ze
+ze
+dj
+ze
+Qr
+Bf
+Ot
+Ey
+YQ
+YQ
+YQ
+Xd
+Xd
+Ey
+Wg
+RU
+RU
+RU
+RU
+zt
+RU
+RU
+lu
+RU
+wz
+Ey
+Ey
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(37,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+ah
+vu
+vu
+vu
+vu
+ah
+ze
+xH
+xH
+xH
+xH
+ze
+Qr
+Bf
+US
+YT
+YQ
+YQ
+YQ
+YQ
+XX
+Ey
+Xl
+Xl
+Xl
+Xl
+EB
+Ey
+qZ
+RU
+RU
+Tp
+Ot
+Ey
+Ey
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(38,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+GL
+WG
+WG
+WG
+WG
+JU
+Bf
+GL
+WG
+WG
+WG
+WG
+JU
+Bf
+OO
+vu
+vu
+vu
+vu
+ah
+ze
+Rq
+RV
+Sq
+xH
+ze
+Qr
+Bf
+US
+YT
+YQ
+YQ
+WH
+Xi
+Xi
+Ey
+PR
+PR
+PR
+PR
+Ey
+Ey
+zn
+RU
+RU
+Jn
+ey
+gm
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(39,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+zZ
+Bf
+fG
+Bf
+Bf
+Qr
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+OP
+vu
+vu
+vu
+vu
+ah
+ze
+xH
+xH
+xH
+xH
+ze
+Qr
+Bf
+Ey
+Ey
+Ey
+Ye
+Ey
+Ey
+Ey
+Ey
+Bf
+Bf
+Bf
+Bf
+US
+YT
+RU
+RU
+RU
+RU
+ey
+gm
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(40,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+ah
+vu
+vu
+vu
+vu
+ah
+ze
+Rr
+dk
+Sr
+xH
+ze
+Qr
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+US
+YT
+Xl
+Xl
+Xl
+eK
+Ot
+Ey
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(41,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+ah
+vu
+vu
+vu
+vu
+ah
+ze
+xH
+xH
+xH
+xH
+ze
+Qr
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Ey
+Ey
+PR
+PR
+PR
+PR
+Ey
+Bf
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(42,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+ah
+vu
+vu
+vu
+vu
+ah
+Qy
+ze
+Qz
+ze
+ze
+ze
+Qr
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+zZ
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(43,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+ah
+vu
+vu
+vu
+vu
+ah
+Qz
+ze
+ze
+ze
+Qy
+ze
+Uc
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+WG
+qK
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(44,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+zZ
+Bf
+Bf
+Bf
+Bf
+Qr
+Bf
+zZ
+Bf
+sS
+Bf
+Bf
+Qr
+Bf
+OO
+vu
+vu
+vu
+vu
+ah
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(45,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+GM
+GW
+GW
+GW
+GW
+JX
+Bf
+GM
+GW
+GW
+GW
+GW
+JX
+Bf
+OP
+vu
+vu
+vu
+vu
+vu
+ze
+vm
+ze
+ze
+wG
+wG
+OY
+wG
+aH
+xH
+xH
+xH
+aH
+Xm
+Xm
+Xq
+Xm
+Xm
+Xm
+Xq
+Xm
+Xm
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(46,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+Bf
+Bf
+Bf
+na
+Bf
+Bf
+Bf
+Bf
+Bf
+Bf
+Bz
+Bf
+Bf
+Bf
+Bf
+ah
+vu
+vu
+vu
+vu
+vu
+OY
+bm
+ze
+ze
+xH
+xH
+xH
+xH
+aH
+xH
+xH
+xH
+aH
+Xq
+Xq
+Xq
+Xq
+ZG
+Xq
+Xq
+Xq
+Xq
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(47,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+ah
+vu
+vu
+vu
+vu
+vu
+OY
+Rv
+RW
+ze
+ze
+ze
+ze
+ze
+UM
+xH
+xH
+xH
+aH
+Xm
+Xm
+Xq
+Xm
+Xm
+Xm
+Xq
+Xm
+Xm
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(48,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+kQ
+vu
+vu
+vu
+vu
+OY
+Rv
+RW
+ze
+OY
+wG
+OY
+OY
+aH
+xH
+xH
+xH
+bm
+Xq
+Xq
+Xq
+Xq
+Xq
+Xq
+Xq
+Xq
+Xq
+bm
+aH
+aH
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(49,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+vu
+vu
+vu
+vu
+vu
+QC
+Rx
+RZ
+ze
+ze
+ze
+ze
+ze
+aH
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(50,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+vu
+vu
+vu
+vu
+vu
+QE
+aH
+Sa
+ze
+wG
+OY
+wG
+OY
+aH
+MS
+gF
+pk
+pk
+pk
+pk
+pk
+pk
+pk
+pk
+pk
+pk
+pk
+pk
+vO
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(51,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+kQ
+vu
+vu
+vu
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+Cv
+Cv
+Cv
+RR
+Cv
+Cv
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(52,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+al
+al
+al
+al
+al
+al
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aM
+Lx
+LF
+LF
+MH
+Ni
+lj
+NP
+aM
+vu
+vu
+vu
+vu
+aM
+QF
+lj
+xg
+LF
+LF
+LF
+Um
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+Cv
+YF
+Cj
+Cj
+Cj
+Cj
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(53,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+al
+al
+al
+al
+al
+al
+al
+mR
+mR
+mR
+mR
+mR
+uz
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aM
+Or
+Ul
+Ul
+Ul
+Ul
+Ul
+NQ
+aM
+vu
+vu
+vu
+vu
+aM
+Or
+Ul
+Ul
+Ul
+Ul
+Ul
+NQ
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+BJ
+vU
+vU
+vU
+vU
+Cj
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(54,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+jc
+jc
+kl
+kl
+al
+al
+al
+RO
+RO
+RO
+RO
+RO
+RO
+al
+al
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aM
+Ul
+Ul
+Ul
+Ul
+Ul
+Ul
+Ul
+OR
+vu
+vu
+vu
+vu
+OR
+Ul
+Ul
+Ul
+Ul
+Ul
+Ul
+Ul
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+Yf
+Cj
+Cj
+Cj
+Cj
+oT
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(55,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+je
+je
+je
+lb
+al
+me
+GJ
+Gb
+Gb
+Gb
+Gb
+Gb
+Gb
+vW
+wi
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aM
+Ul
+LI
+Ul
+LI
+Ul
+LI
+Ul
+aM
+Ze
+vu
+vu
+vu
+aM
+Ul
+LI
+Ul
+LI
+Ul
+LI
+Ul
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+Cv
+Cj
+Cj
+Cj
+Cj
+Cj
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(56,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+je
+je
+je
+lc
+al
+me
+GJ
+Gb
+oE
+Gb
+Gb
+oE
+Gb
+vW
+wi
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aM
+xi
+aM
+LW
+aM
+Nj
+aM
+NR
+aM
+Pg
+vu
+vu
+nl
+aM
+xi
+aM
+LW
+aM
+Nj
+aM
+NR
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+Cv
+YN
+Cj
+Cj
+Cj
+Cj
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(57,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+je
+je
+je
+lc
+al
+me
+GJ
+Gb
+Gb
+qg
+Gb
+Gb
+Gb
+vW
+wi
+al
+ZQ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+ZQ
+ZQ
+ZQ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+FV
+aM
+Uy
+aM
+Uy
+aM
+Uy
+aM
+Pj
+vu
+vu
+nl
+aM
+Uy
+aM
+Uy
+aM
+Uy
+aM
+FV
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+Yf
+Cj
+Cj
+Cj
+Cj
+oT
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(58,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+je
+je
+je
+je
+al
+me
+GJ
+Gb
+oE
+Gb
+Gb
+oE
+Gb
+vW
+wi
+al
+ZQ
+aw
+yF
+AI
+AI
+DD
+Eb
+aw
+ZQ
+ZQ
+ZQ
+aw
+GX
+HV
+Ik
+IS
+JY
+aw
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+uE
+vu
+vu
+nl
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aH
+MS
+wj
+MS
+MS
+MS
+lx
+Oz
+Oz
+Oz
+Oz
+Cj
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(59,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+eP
+eP
+GP
+je
+al
+me
+GJ
+Gb
+Gb
+Gb
+Gb
+Gb
+Gb
+vW
+wi
+al
+ZQ
+aw
+yI
+QT
+QT
+DF
+Eg
+aw
+ZQ
+ZQ
+ZQ
+aw
+Hc
+QT
+qc
+EL
+JZ
+aw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+Pn
+vu
+vu
+nl
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+aH
+MS
+wj
+MS
+MS
+MS
+Cv
+YF
+Cj
+Cj
+Cj
+Cj
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(60,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+al
+al
+al
+nk
+al
+al
+al
+gp
+gp
+gp
+gp
+gp
+gp
+al
+al
+al
+ZQ
+aw
+yT
+QT
+QT
+QT
+lT
+aw
+ZQ
+ZQ
+ZQ
+aw
+Hg
+QT
+In
+KP
+Kc
+aw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+uE
+vu
+vu
+nl
+Qm
+yh
+xY
+Sb
+Ss
+bk
+Tu
+Uo
+Uw
+aH
+MS
+wj
+MS
+MS
+MS
+Cv
+Cv
+Zr
+Zr
+Zr
+Cv
+Cv
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(61,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+eQ
+IH
+IH
+IH
+Lm
+LL
+iC
+iC
+iC
+iC
+iC
+iC
+LL
+al
+ZQ
+ZQ
+aw
+yX
+QT
+QT
+QT
+Ei
+aw
+ZQ
+ZQ
+ZQ
+aw
+Hp
+QT
+Io
+KP
+Kh
+aw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+MG
+vu
+vu
+nl
+Qn
+vZ
+RB
+Vu
+Su
+bk
+Tv
+Vu
+Uz
+aH
+MS
+wj
+MS
+MS
+MS
+MS
+Cv
+Zt
+Zt
+Zt
+Cv
+MS
+MS
+MS
+zw
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(62,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+AF
+fF
+IH
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+yX
+QT
+QT
+QT
+Ei
+aw
+ZQ
+ZQ
+ZQ
+aw
+Hq
+HW
+Ip
+IT
+Kj
+aw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ah
+HM
+vu
+vu
+vu
+Qn
+wX
+RC
+Vu
+SC
+bk
+TE
+Vu
+UA
+aH
+MS
+rI
+yG
+yG
+yG
+yG
+yG
+yG
+yG
+yG
+yG
+yG
+yG
+yG
+zF
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(63,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+jx
+fF
+Zq
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+Je
+Ji
+QT
+aF
+Xz
+aw
+ZQ
+ZQ
+ZQ
+aw
+aw
+aw
+aw
+Tj
+aL
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+vu
+vu
+vu
+vu
+Qm
+yh
+RD
+Sd
+SD
+SX
+Vu
+Up
+Vu
+aH
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+MS
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(64,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+al
+AF
+fF
+lh
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+aw
+WI
+CV
+WI
+WI
+aw
+ZQ
+ZQ
+ZQ
+aw
+om
+HY
+NJ
+QT
+Pu
+KD
+aw
+LK
+Md
+MI
+IS
+IS
+NU
+aw
+Dy
+Dy
+Dy
+PZ
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+SX
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(65,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+ZQ
+ZQ
+ZQ
+al
+jD
+fF
+Zq
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+DB
+AK
+QT
+DG
+KH
+aw
+aw
+aw
+aw
+aw
+on
+HZ
+Nk
+QT
+QT
+KG
+aw
+sc
+HZ
+MJ
+QT
+QT
+NV
+aw
+Jt
+vu
+vu
+vu
+VN
+RG
+vu
+vu
+Hk
+Hk
+OS
+Hk
+vu
+vu
+Hk
+Hk
+Hk
+Hk
+kf
+Sx
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(66,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Bx
+ZV
+ZV
+ZV
+ZV
+Bx
+ZV
+ZV
+ZV
+ZV
+Bx
+ZV
+ZV
+ZV
+ZV
+Bx
+Bx
+Bx
+lM
+ah
+ah
+ah
+al
+IH
+fF
+IH
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+DL
+QT
+QT
+QT
+lS
+aw
+Fu
+FO
+Gj
+aw
+kP
+QT
+QT
+qc
+QT
+KJ
+aw
+LM
+QT
+MK
+QT
+QT
+NV
+aw
+vu
+vu
+vu
+vu
+VN
+RG
+QB
+TK
+TK
+TK
+TK
+TK
+TK
+TK
+TK
+TK
+TK
+TK
+Xt
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(67,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+fP
+vu
+vu
+al
+IH
+IH
+IH
+IH
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+yY
+QT
+QT
+QT
+QT
+EV
+QT
+QT
+QT
+EV
+QT
+QT
+QT
+WO
+QT
+KL
+WI
+sc
+HZ
+MM
+QT
+QT
+NV
+WI
+vu
+vu
+vu
+vu
+VN
+RG
+ws
+yN
+yN
+yN
+yN
+yN
+PD
+PD
+yN
+yN
+yN
+yN
+Kf
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(68,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Bx
+ZV
+ZV
+ZV
+ZV
+Bx
+ZV
+ZV
+ZV
+ZV
+Bx
+ZV
+ZV
+ZV
+ZV
+Bx
+Bx
+Bx
+lM
+vu
+vu
+vu
+jg
+IH
+IH
+IH
+IH
+Lm
+iC
+iC
+iC
+qo
+sE
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+Lu
+kC
+SJ
+SJ
+lR
+aw
+Fy
+FS
+Gk
+aw
+Hs
+KP
+QT
+yR
+QT
+KR
+WI
+LN
+Me
+MQ
+QT
+QT
+Gm
+OW
+vu
+vu
+vu
+vu
+VN
+Ze
+ws
+yN
+Fg
+zr
+zr
+zr
+zr
+zr
+zr
+zr
+Fg
+yN
+Kf
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(69,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+vu
+vu
+vu
+ji
+IH
+IH
+IH
+IH
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+yZ
+lS
+Ib
+DH
+El
+aw
+aw
+aw
+aw
+aw
+op
+Wt
+QT
+IU
+QT
+QT
+Ly
+QT
+QT
+QT
+QT
+QT
+QT
+OZ
+vu
+vu
+vu
+vu
+Qp
+vu
+ws
+yN
+UB
+yN
+yN
+yN
+yN
+yN
+yN
+yN
+UB
+yN
+Kf
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(70,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+nK
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+PF
+EZ
+Bx
+lM
+vu
+vu
+vu
+ji
+IH
+fF
+IH
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+Kt
+QT
+QT
+QT
+lT
+aw
+FC
+FX
+Gl
+aw
+oq
+KP
+QT
+IV
+QT
+QT
+QT
+QT
+QT
+QT
+QT
+QT
+QT
+Pa
+vu
+vu
+vu
+vu
+Xp
+vu
+ws
+PD
+UB
+yN
+yN
+zr
+yN
+yN
+aT
+yN
+UB
+PD
+Kf
+Qw
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(71,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+QZ
+QZ
+QZ
+QZ
+QZ
+QZ
+Cg
+wO
+DY
+HB
+kX
+TF
+kX
+QZ
+QZ
+MX
+Bx
+lM
+Ze
+vu
+vu
+ji
+jD
+fF
+Zq
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+Vt
+lR
+Dd
+DI
+lU
+aw
+PB
+YJ
+FM
+aw
+Wf
+KP
+QT
+IW
+QT
+WD
+aw
+sb
+QT
+QT
+QT
+QT
+tM
+aZ
+vu
+vu
+vu
+vu
+VN
+vR
+ws
+yN
+UB
+yN
+yN
+yN
+yN
+yN
+yN
+yN
+UB
+yN
+Kf
+Qw
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(72,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+QZ
+QZ
+lL
+kX
+kX
+TF
+TF
+Cr
+qV
+id
+wO
+vT
+kX
+kX
+kX
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+IH
+fF
+lh
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+FE
+FZ
+Gm
+aw
+Hw
+KP
+QT
+kR
+QT
+Ec
+aw
+sc
+QT
+QT
+QT
+QT
+Kc
+aw
+Po
+vu
+vu
+vu
+VN
+QI
+ws
+yN
+UB
+yN
+yN
+yN
+UB
+yN
+yN
+aT
+UB
+yN
+Kf
+Qw
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+br
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bz
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bz
+bw
+bw
+bw
+bw
+bw
+bw
+bu
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(73,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+kX
+kX
+TF
+kX
+bA
+GK
+Vw
+Cr
+zx
+rR
+xB
+Bj
+AR
+Vw
+kX
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+jD
+fF
+Zq
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+Ph
+Pk
+QT
+QT
+QT
+qE
+Ir
+IY
+Tr
+YM
+aw
+Hy
+Sw
+sO
+Nm
+Ny
+NY
+aw
+vu
+vu
+vu
+vu
+Qp
+vu
+ws
+PD
+UB
+yN
+zr
+yN
+yN
+yN
+yN
+yN
+UB
+PD
+Kf
+Qw
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+Ok
+Ok
+Ok
+mG
+Ok
+Ok
+Ok
+Ok
+mG
+Ok
+Ok
+Ok
+Ok
+mG
+Ok
+Ok
+Ok
+Ok
+mG
+Ok
+Ok
+Ok
+Ok
+mG
+Ok
+Ok
+Ok
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(74,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+Jl
+Cq
+BW
+kX
+gs
+GK
+Vw
+SA
+kX
+DJ
+kX
+GK
+Vw
+kX
+kX
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+IH
+IH
+IH
+fF
+Lm
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+iC
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+aw
+Gc
+aw
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+Pr
+vu
+vu
+vu
+Xp
+vu
+ws
+yN
+UB
+yN
+yN
+yN
+yN
+yN
+yN
+yN
+UB
+yN
+Kf
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+CW
+CW
+Dc
+Dc
+GN
+GN
+Dc
+Dc
+Ug
+Ug
+Dc
+Dc
+GN
+GN
+GN
+Dc
+Dc
+Ug
+Ug
+Dc
+Dc
+GN
+GN
+Dc
+jQ
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(75,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+Jl
+yM
+dY
+mC
+bA
+GK
+GK
+Ym
+jW
+GK
+kX
+go
+dJ
+qz
+wa
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+jF
+km
+IH
+IH
+Lm
+LL
+iC
+iC
+iC
+iC
+iC
+iC
+LL
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+Jm
+Zc
+WQ
+aI
+ot
+Ia
+It
+HQ
+Kk
+KT
+aI
+Qb
+Mh
+Mh
+Mh
+Mh
+NZ
+Iw
+vu
+vu
+vu
+vu
+VN
+Ze
+ws
+yN
+Fg
+zr
+zr
+zr
+zr
+zr
+zr
+zr
+Fg
+yN
+Kf
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+CW
+CW
+Dc
+UN
+xw
+hP
+xQ
+Dc
+EF
+XZ
+Dc
+oj
+Ma
+Ma
+Vf
+OD
+Dc
+EF
+OD
+Dc
+zH
+hP
+kT
+nz
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(76,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+Jl
+zg
+AL
+mc
+GK
+GK
+vh
+wh
+vh
+GK
+vl
+dS
+Vw
+kX
+kX
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+al
+al
+fz
+al
+al
+al
+gp
+gp
+gp
+gp
+gp
+gp
+al
+al
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+Rl
+XP
+Qa
+aI
+Te
+Id
+tU
+tU
+Wo
+rc
+aI
+sf
+tU
+tU
+tU
+tU
+tO
+Iw
+vu
+vu
+vu
+vu
+VN
+RG
+ws
+yN
+yN
+yN
+yN
+yN
+PD
+PD
+yN
+yN
+yN
+yN
+Kf
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+eX
+eX
+Dc
+XZ
+XZ
+XZ
+XZ
+cH
+XZ
+XZ
+oQ
+XZ
+XZ
+XZ
+XZ
+XZ
+oQ
+XZ
+XZ
+uK
+XZ
+XZ
+XZ
+XZ
+Dc
+eX
+eX
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(77,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+Jl
+DN
+BY
+uX
+bA
+GK
+JR
+Kb
+JR
+GK
+kX
+pO
+dJ
+qz
+wa
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+jI
+fA
+fA
+al
+mg
+GJ
+LX
+LX
+LX
+LX
+LX
+LX
+vW
+wk
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+Qj
+Ne
+VM
+aI
+Yn
+tU
+tU
+tU
+tU
+rd
+aI
+LO
+tU
+tU
+tU
+tU
+tU
+Iw
+vu
+vu
+vu
+vu
+VN
+RG
+RF
+Hj
+Hj
+Hj
+Hj
+Hj
+Hj
+Hj
+Hj
+Hj
+Hj
+Hj
+Xu
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+CW
+CW
+Dc
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+GV
+mQ
+XQ
+XZ
+GV
+WK
+XQ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(78,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+Jl
+GI
+YP
+kX
+gs
+GK
+GK
+cN
+GK
+GK
+kX
+dS
+Vw
+kX
+kX
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+Hn
+fA
+fA
+al
+mg
+GJ
+LX
+oL
+LX
+LX
+oL
+LX
+vW
+wk
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+Rl
+XP
+Gq
+aI
+HE
+tU
+tU
+tU
+tU
+tU
+Lz
+tU
+tU
+tU
+tU
+tU
+tU
+Pc
+vu
+vu
+vu
+vu
+VN
+RG
+vu
+vu
+zM
+zM
+zM
+zM
+vu
+vu
+zM
+zM
+zM
+zM
+vu
+Sx
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+CW
+CW
+GN
+BM
+BM
+XZ
+BM
+BM
+XZ
+XZ
+Ky
+WK
+XA
+XZ
+Ky
+mQ
+XA
+XZ
+XZ
+BM
+BM
+XZ
+BM
+BM
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(79,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+kX
+kX
+TF
+kX
+bA
+GK
+vh
+Ez
+GK
+GK
+kX
+XI
+DE
+Vw
+kX
+MX
+Bx
+nX
+vu
+vu
+vu
+al
+kd
+fA
+fA
+al
+mg
+GJ
+LX
+LX
+qq
+LX
+LX
+LX
+vW
+wk
+al
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aw
+Rl
+XP
+Gr
+aI
+WS
+If
+tU
+tU
+tU
+tU
+TU
+tU
+tU
+tU
+tU
+tU
+tU
+TU
+vu
+vu
+vu
+vu
+bl
+bl
+bl
+bl
+An
+An
+An
+An
+bl
+bl
+An
+An
+An
+WR
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ZQ
+bt
+CW
+CW
+GN
+iO
+fc
+XZ
+iO
+fc
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+fc
+fc
+XZ
+fc
+iO
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(80,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+QZ
+QZ
+QZ
+kX
+kX
+TF
+TF
+SA
+ez
+ez
+kX
+mp
+kX
+kX
+kX
+MX
+Bx
+lM
+vu
+vu
+vu
+al
+fA
+fA
+fA
+al
+mg
+GJ
+LX
+oL
+LX
+LX
+oL
+LX
+vW
+wk
+al
+ZQ
+ah
+ah
+ah
+ah
+ah
+ZQ
+aw
+QX
+RQ
+cK
+aI
+VO
+tU
+pG
+qh
+tU
+iS
+aI
+sg
+tp
+MR
+tU
+tU
+tU
+Iw
+vu
+vu
+vu
+vu
+Qw
+bl
+Lv
+Am
+Am
+Am
+Am
+Am
+Am
+UO
+Am
+Am
+Am
+Wl
+Xx
+Au
+YR
+bp
+ZH
+Ki
+aO
+bp
+tw
+nQ
+bp
+ZQ
+bt
+CW
+CW
+GN
+ZU
+ZU
+XZ
+ZU
+ZU
+XZ
+XZ
+GV
+WK
+XQ
+XZ
+GV
+WK
+XQ
+XZ
+XZ
+ZU
+ZU
+XZ
+ZU
+ZU
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(81,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Nv
+QZ
+QZ
+QZ
+QZ
+QZ
+QZ
+Cg
+lo
+kX
+kX
+kX
+TF
+kX
+QZ
+QZ
+MX
+Bx
+nX
+vu
+vu
+vu
+al
+ke
+fA
+fA
+al
+mg
+GJ
+LX
+LX
+LX
+LX
+LX
+LX
+vW
+wk
+al
+ZQ
+ah
+UE
+vu
+vu
+ah
+ZQ
+aw
+aw
+aw
+aw
+aI
+oz
+Uf
+Iv
+Jb
+tU
+VR
+aI
+NT
+Id
+MT
+tU
+tU
+tU
+ba
+vu
+vu
+vu
+vu
+Qq
+bl
+vS
+Am
+xR
+xR
+Am
+Am
+Am
+xR
+xR
+Am
+Am
+Wl
+XB
+Au
+YY
+bp
+ZL
+Qk
+Qk
+Bu
+dh
+dh
+bp
+ZQ
+bt
+CW
+CW
+Dc
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+Ky
+mQ
+XA
+XZ
+Ky
+WK
+XA
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(82,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+rA
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+xk
+EX
+Bx
+lM
+Ze
+vu
+vu
+al
+fA
+fA
+fA
+al
+al
+al
+RO
+RO
+RO
+RO
+RO
+RO
+al
+al
+al
+ZQ
+ah
+VJ
+vu
+vu
+ah
+ZQ
+ah
+fP
+vu
+fP
+aI
+FD
+Uf
+IA
+Jf
+tU
+tU
+LA
+tU
+Wo
+MT
+tU
+tU
+tU
+Iw
+Ze
+vu
+vu
+vu
+Qw
+bl
+wt
+zG
+yB
+SZ
+Aw
+Am
+zG
+UQ
+Vx
+Aw
+Am
+Wl
+Hi
+Au
+YZ
+bp
+ZM
+Qk
+tE
+bp
+AO
+oC
+bp
+ZQ
+bt
+eX
+eX
+Dc
+XZ
+XZ
+XZ
+XZ
+Km
+XZ
+XZ
+Ql
+XZ
+XZ
+XZ
+XZ
+XZ
+Ql
+XZ
+XZ
+bE
+XZ
+XZ
+XZ
+XZ
+Dc
+eX
+eX
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(83,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+dG
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+vu
+vu
+vu
+al
+fA
+fA
+fA
+fA
+fA
+al
+gP
+gP
+gP
+gP
+gP
+uz
+al
+ZQ
+ZQ
+ZQ
+ah
+nx
+vu
+vu
+ah
+ZQ
+ah
+vu
+vu
+vu
+aI
+ov
+Uf
+IE
+Jo
+tU
+iS
+aI
+LP
+Gp
+MT
+tU
+tU
+tU
+ba
+vu
+vu
+vu
+vu
+bl
+bl
+yV
+zG
+wP
+Ta
+Aw
+Am
+zG
+UR
+Vy
+Aw
+Am
+Wl
+XE
+Au
+Zb
+bp
+ZO
+Qk
+ks
+bp
+bp
+bp
+bp
+ZQ
+bt
+CW
+CW
+Dc
+UN
+PJ
+qT
+Ko
+Dc
+EF
+XZ
+Dc
+EF
+PJ
+qT
+hT
+YS
+Dc
+EF
+OD
+Dc
+CS
+qT
+LC
+nz
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(84,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+nX
+lM
+nX
+lM
+lM
+lM
+lM
+vu
+vu
+vu
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+ah
+ah
+ah
+ah
+VN
+ah
+wo
+ah
+ah
+aD
+vu
+vu
+vu
+aI
+ox
+tU
+IF
+Jp
+tU
+VR
+aI
+LS
+Mi
+MU
+tU
+tU
+tU
+Iw
+vu
+vu
+vu
+vu
+bl
+QJ
+Am
+Am
+yO
+yO
+Am
+Am
+Am
+yO
+yO
+Am
+Am
+Wl
+XF
+Au
+Zh
+bp
+ZS
+Qk
+nZ
+bp
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+CW
+CW
+Dc
+Dc
+GN
+GN
+Dc
+Dc
+uV
+uV
+Dc
+Dc
+GN
+GN
+GN
+Dc
+Dc
+uV
+uV
+Dc
+Dc
+GN
+GN
+Dc
+Dc
+CW
+CW
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(85,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+fP
+vu
+vu
+vu
+vu
+kf
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+kf
+vu
+vu
+vu
+vu
+vu
+Ff
+vu
+vu
+vu
+aI
+WS
+If
+tU
+tU
+tU
+tU
+LD
+tU
+tU
+tU
+tU
+tU
+tU
+Pc
+vu
+vu
+vu
+vu
+An
+QR
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Wl
+Da
+Au
+Au
+Zu
+Qk
+Qk
+Iy
+bp
+ZQ
+ZQ
+ZQ
+ZQ
+bt
+Kd
+Kd
+Kd
+sB
+DC
+DC
+Fl
+tq
+tq
+tq
+aN
+jw
+jw
+jw
+jw
+jw
+CL
+tq
+tq
+tq
+pz
+DC
+DC
+sB
+Kd
+Kd
+Kd
+bt
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(86,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ab
+bS
+aX
+aX
+bS
+dr
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Ff
+vu
+vu
+Gt
+aI
+Uv
+tU
+tU
+tU
+tU
+tU
+TU
+tU
+tU
+tU
+tU
+tU
+tU
+TU
+vu
+vu
+vu
+vu
+An
+QU
+Am
+Am
+xR
+xR
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+bl
+bp
+bp
+bp
+bp
+bp
+ZQ
+ZQ
+ZQ
+ZQ
+bu
+bw
+bw
+bw
+bw
+bu
+zi
+zi
+zi
+YL
+YL
+YL
+YL
+YL
+JD
+YL
+YL
+YL
+YL
+YL
+zi
+zi
+zi
+Re
+bu
+bw
+bw
+bw
+bu
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(87,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ad
+bS
+aX
+aX
+bS
+du
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+fP
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Ff
+vu
+vu
+vu
+aI
+Hr
+tU
+tU
+tU
+tU
+KU
+aI
+LT
+tU
+tU
+tU
+tU
+tU
+Iw
+vu
+vu
+vu
+vu
+bl
+QV
+Am
+zG
+Mr
+UK
+Aw
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Yj
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bw
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+uy
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+bw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(88,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+aX
+aX
+bY
+bY
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+bY
+hW
+hW
+bY
+uL
+uL
+uL
+uL
+aj
+aj
+md
+md
+aj
+kJ
+kJ
+aj
+md
+md
+aj
+md
+md
+aj
+aj
+aj
+aj
+aj
+aj
+ar
+Xp
+Xp
+Xp
+aI
+Te
+Gp
+tU
+tU
+Gp
+VQ
+aI
+sh
+tU
+tU
+tU
+tU
+Oa
+Iw
+vu
+vu
+vu
+vu
+bl
+xF
+Am
+zG
+Fv
+Pf
+Aw
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Yo
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bx
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+mF
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+YL
+bw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(89,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ag
+bS
+aX
+aX
+bS
+dw
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+bY
+dZ
+dZ
+uL
+AG
+PP
+kn
+uL
+KF
+em
+em
+nC
+em
+em
+em
+em
+em
+nC
+em
+em
+em
+em
+KF
+aj
+Di
+Bc
+Em
+aj
+vu
+vu
+vu
+aI
+ow
+Ij
+tU
+tU
+Kl
+rf
+aI
+Qb
+WX
+XO
+WX
+WX
+Ob
+Iw
+vu
+vu
+vu
+vu
+An
+vS
+Am
+Am
+yO
+yO
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+Yp
+bl
+bh
+bh
+bh
+bh
+bh
+bh
+bh
+bh
+bh
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+bw
+YL
+YL
+YL
+YL
+YL
+YL
+bw
+bw
+YL
+ir
+bw
+bw
+YL
+YL
+YL
+YL
+YL
+YL
+bw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(90,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ai
+bS
+aX
+aX
+bS
+dx
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+bY
+dZ
+dZ
+uL
+jj
+PP
+PP
+fC
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+RN
+Dl
+tK
+Do
+aj
+vu
+vu
+vu
+aI
+aI
+aI
+tU
+Jr
+aI
+aI
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+HM
+vu
+vu
+vu
+An
+Lv
+Am
+Am
+Am
+Am
+Am
+Am
+vq
+Am
+Am
+Am
+Am
+Am
+Am
+Yq
+bl
+SK
+bh
+SK
+bh
+SK
+bh
+SK
+bh
+SK
+bq
+bq
+bq
+bq
+bq
+bq
+Yc
+Lk
+TT
+TT
+TT
+Yc
+ZJ
+er
+eI
+eI
+er
+ZJ
+Yc
+TT
+TT
+TT
+Lk
+Yc
+bw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(91,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+aX
+aX
+bY
+bY
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+bY
+dZ
+dZ
+uL
+uL
+uL
+uL
+uL
+em
+em
+em
+aj
+md
+md
+aj
+aj
+aj
+md
+md
+aj
+em
+em
+em
+kJ
+tK
+tK
+tK
+aj
+vu
+vu
+vu
+aI
+oy
+rm
+rm
+rm
+rm
+oG
+aM
+LV
+LV
+LV
+LV
+LV
+Oh
+aM
+Pv
+vu
+vu
+vu
+bl
+bl
+bl
+bl
+An
+An
+An
+bl
+bl
+bo
+Vz
+Wb
+An
+An
+bl
+bl
+bl
+Dk
+bh
+Dk
+bh
+Dk
+bh
+Dk
+bh
+Dk
+bq
+CR
+Rt
+Rt
+CR
+bq
+ZJ
+ZJ
+ZJ
+ZJ
+ZJ
+ZJ
+bw
+vu
+vu
+vu
+vu
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(92,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+av
+bS
+aX
+aX
+bS
+fR
+bY
+lM
+Bx
+Bx
+Bx
+Bx
+Bx
+Bx
+lM
+bY
+dZ
+dZ
+uL
+AG
+PP
+PP
+fC
+em
+em
+em
+md
+py
+ri
+aj
+em
+lz
+uf
+wF
+md
+em
+em
+em
+RN
+Do
+tK
+EC
+aj
+vu
+vu
+vu
+aI
+rm
+Xy
+Tz
+Tz
+Xy
+rm
+aM
+WM
+Zg
+Zg
+Zg
+Zg
+Zg
+aM
+vu
+vu
+vu
+vu
+Xp
+wD
+vu
+vu
+vu
+vu
+vu
+kf
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Zx
+Zx
+Zx
+nM
+Zx
+Zx
+Zx
+Zx
+SP
+uP
+Rt
+vw
+vw
+Rt
+Ra
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(93,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+am
+bS
+aX
+aX
+bS
+dy
+bY
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+lM
+bY
+dZ
+dZ
+uL
+jj
+PP
+kn
+uL
+em
+em
+em
+mf
+oN
+em
+kJ
+em
+em
+wu
+wu
+mf
+em
+em
+em
+aj
+Dp
+tK
+EE
+aj
+kQ
+vu
+vu
+aI
+rm
+nN
+ZA
+Js
+ni
+rm
+aM
+QD
+QD
+QD
+Zg
+Zg
+Zg
+Pd
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+VH
+VH
+VH
+VH
+VH
+VH
+VH
+VH
+VH
+uP
+Rt
+vw
+vw
+Rt
+Ra
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(94,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+aX
+aX
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+ae
+dZ
+dZ
+uL
+uL
+uL
+uL
+uL
+em
+em
+em
+aj
+pb
+nJ
+aj
+ri
+em
+em
+em
+aj
+em
+em
+em
+RN
+qk
+tK
+TV
+aj
+em
+em
+em
+aI
+oF
+nN
+IG
+Jv
+ni
+rm
+aM
+ts
+ts
+Zg
+Zg
+ND
+Tq
+aM
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Zy
+Zy
+Zy
+Zy
+Zy
+Zy
+Zy
+Zy
+nw
+uP
+Rt
+vw
+vw
+Rt
+Ra
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(95,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bb
+bS
+aX
+aX
+aX
+aX
+bS
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+hL
+dZ
+dZ
+uL
+AG
+PP
+PP
+fC
+em
+em
+em
+aj
+aj
+aj
+aj
+px
+em
+em
+Eo
+aj
+ly
+em
+em
+kJ
+tK
+tK
+Hh
+aj
+em
+em
+em
+aI
+rm
+nN
+IJ
+ZA
+ni
+rm
+aM
+aM
+aM
+MV
+MV
+aM
+aM
+aM
+vu
+vu
+vu
+vu
+aM
+aM
+aM
+aM
+aM
+aM
+OR
+aM
+aM
+bl
+Vz
+Wb
+An
+An
+bl
+bl
+bl
+Dk
+bh
+Dk
+bh
+Dk
+bh
+Dk
+bh
+Dk
+bq
+HD
+TG
+TG
+TG
+bq
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+by
+ZK
+Uh
+by
+ah
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(96,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ao
+bS
+aX
+aX
+aX
+aX
+bS
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+hL
+dZ
+dZ
+uL
+jj
+PP
+kn
+uL
+em
+em
+em
+md
+py
+ri
+aj
+qB
+em
+em
+em
+aj
+em
+em
+em
+RN
+tK
+tK
+tK
+aj
+em
+em
+em
+aI
+oA
+nN
+Dr
+Jw
+ni
+rm
+aM
+sR
+tY
+tY
+tY
+tY
+Op
+aM
+Ze
+vu
+vu
+vu
+aM
+Lx
+LF
+LF
+MH
+Tb
+Ul
+Uq
+aM
+Lv
+Am
+Am
+Am
+Am
+Am
+Lv
+bl
+SK
+bh
+SK
+bh
+SK
+bh
+SK
+bh
+SK
+bq
+CR
+vw
+vw
+CR
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(97,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+ae
+aX
+aX
+aX
+bY
+bY
+bY
+bY
+bY
+bY
+ii
+ii
+uL
+uL
+uL
+uL
+uL
+ly
+em
+em
+mf
+oN
+em
+kJ
+em
+em
+em
+em
+kJ
+em
+em
+em
+aj
+JQ
+tk
+KN
+aj
+em
+em
+em
+aI
+oI
+Xy
+Ms
+Ms
+Xy
+KV
+aM
+Kv
+tY
+tY
+tY
+tW
+tY
+aM
+vu
+vu
+vu
+vu
+aM
+Or
+Ul
+Ul
+Ul
+Ul
+Ul
+NQ
+aM
+UX
+Am
+Am
+zG
+Ak
+Ak
+Aw
+bl
+bh
+bh
+bh
+bh
+bh
+bh
+bh
+bh
+bh
+bq
+Dg
+Dh
+LR
+Dg
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(98,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bd
+aX
+aU
+bL
+cc
+fY
+bY
+ep
+aX
+eU
+bY
+fS
+gw
+hb
+hA
+uL
+uL
+uL
+uL
+AG
+PP
+PP
+fC
+em
+em
+em
+md
+pb
+nJ
+aj
+ug
+io
+em
+EA
+aj
+em
+em
+em
+aj
+aj
+aj
+aj
+ar
+em
+em
+em
+aI
+HH
+Xy
+Xy
+Xy
+Xy
+KW
+aM
+Wm
+tY
+tY
+tY
+tY
+Oj
+aM
+Pw
+vu
+vu
+vu
+OR
+Ul
+Ul
+Ul
+Ul
+Ul
+Ul
+Ul
+OR
+Am
+Am
+Am
+zG
+Ak
+Ak
+Aw
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+vp
+eY
+YH
+ST
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(99,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+au
+aX
+aX
+aX
+aX
+aX
+bV
+aX
+aX
+aX
+cn
+aG
+aG
+aG
+aG
+hq
+ml
+iq
+uL
+jj
+PP
+kn
+uL
+em
+em
+em
+aj
+aj
+aj
+aj
+uh
+uD
+em
+LB
+aj
+em
+em
+em
+ax
+em
+KF
+EJ
+KF
+em
+em
+em
+aI
+oI
+Xy
+Tz
+Tz
+Xy
+KX
+aM
+Kv
+tY
+tY
+tY
+tW
+tY
+aM
+vu
+vu
+vu
+vu
+aM
+Ul
+LI
+Ul
+LI
+Ul
+LI
+Ul
+aM
+UZ
+Am
+Am
+Am
+Am
+Am
+Am
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+pq
+SB
+SB
+gC
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+nI
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(100,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+be
+aX
+aV
+aX
+cf
+dz
+bV
+aX
+aX
+aX
+cn
+fT
+gy
+aG
+aG
+ml
+ml
+is
+uL
+uL
+uL
+uL
+uL
+em
+em
+em
+aj
+gV
+hn
+aj
+rj
+sX
+em
+Ti
+aj
+em
+em
+em
+kJ
+em
+em
+mi
+em
+em
+em
+em
+aI
+oA
+nN
+ZA
+aQ
+ni
+rm
+aM
+sR
+tY
+tY
+tY
+tY
+On
+aM
+kQ
+vu
+vu
+vu
+aM
+xi
+aM
+LW
+aM
+Nj
+aM
+NR
+aM
+Va
+Am
+Am
+Am
+Am
+Am
+Am
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+NS
+Ov
+iU
+jJ
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(101,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bf
+aX
+bc
+aX
+cF
+dA
+bV
+aX
+aX
+aX
+cn
+fX
+gz
+aG
+aG
+ml
+ml
+it
+uL
+AG
+PP
+PP
+fC
+em
+em
+em
+mf
+NC
+em
+kJ
+em
+em
+em
+em
+mf
+em
+em
+em
+ay
+ly
+KF
+md
+KF
+vu
+vu
+vu
+aI
+rm
+nN
+qp
+Dr
+ni
+rm
+aM
+aM
+aM
+MY
+MY
+aM
+aM
+aM
+vu
+vu
+vu
+vu
+aM
+Uy
+aM
+Uy
+aM
+Uy
+aM
+FV
+aM
+yU
+Am
+Am
+zG
+Ak
+Ak
+Aw
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+xU
+bq
+bq
+bq
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(102,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+az
+aX
+bi
+aX
+cL
+dB
+bV
+aX
+aX
+aX
+cn
+fZ
+gA
+aG
+hC
+hM
+dM
+ix
+uL
+jj
+PP
+kn
+uL
+em
+em
+em
+md
+py
+ri
+aj
+em
+em
+em
+KF
+md
+em
+em
+em
+aj
+kJ
+md
+aj
+ar
+vu
+vu
+vu
+aI
+oF
+nN
+VL
+Jx
+ni
+rm
+aM
+RI
+Ml
+tY
+tY
+tx
+Sy
+aM
+kQ
+vu
+vu
+vu
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+yV
+Am
+Am
+zG
+Ak
+Ak
+Aw
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+Pp
+ZP
+Om
+Ao
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(103,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bg
+aX
+ds
+aX
+ex
+bM
+bV
+aX
+aX
+aX
+cn
+cv
+jE
+aG
+kq
+hV
+ij
+ij
+uL
+uL
+uL
+uL
+uL
+em
+em
+em
+aj
+md
+md
+aj
+md
+aj
+md
+md
+aj
+em
+em
+em
+aj
+em
+jf
+EK
+md
+vu
+vu
+vu
+aI
+rm
+nN
+IK
+JB
+ni
+rm
+aM
+RI
+Ml
+tY
+tY
+tx
+Sy
+aM
+vu
+vu
+vu
+vu
+An
+QW
+RH
+Se
+SF
+Tf
+TL
+TL
+vs
+Am
+Am
+Am
+Am
+Am
+Am
+Am
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+Wp
+SB
+SB
+Kg
+bq
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+by
+ZK
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(104,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bs
+aX
+bJ
+aX
+cR
+dU
+bV
+aX
+aX
+aX
+cn
+aG
+aG
+aG
+aG
+mq
+eb
+eb
+uL
+AG
+PP
+PP
+fC
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+kJ
+em
+lD
+mk
+md
+vu
+vu
+vu
+aI
+rm
+Xy
+Ms
+Ms
+Xy
+rm
+aM
+RI
+Ml
+tY
+tY
+tx
+Sy
+aM
+kQ
+vu
+vu
+vu
+An
+QW
+RH
+xK
+xK
+Tg
+Tg
+Tg
+xK
+Am
+Am
+Am
+Am
+Am
+Am
+QR
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+bq
+bq
+bq
+bq
+bq
+Im
+SB
+SB
+YV
+by
+by
+by
+uB
+uB
+uB
+uB
+uB
+by
+ZK
+OC
+by
+uB
+uB
+uB
+uB
+uB
+by
+by
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(105,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bv
+aX
+aX
+aX
+aX
+aX
+bV
+aX
+aX
+aX
+cn
+iu
+jG
+he
+hD
+mq
+ec
+ec
+uL
+jj
+PP
+kn
+uL
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+KF
+aj
+Dq
+DK
+aj
+aj
+vu
+vu
+vu
+aI
+oG
+rm
+rm
+rm
+rm
+La
+aM
+RI
+Ml
+Nb
+Nb
+tx
+Sy
+aM
+vu
+vu
+vu
+vu
+An
+QW
+RH
+xK
+xK
+lZ
+xK
+xK
+xK
+Am
+Am
+Am
+Am
+Am
+Am
+Yj
+bl
+ZQ
+ZQ
+ZQ
+ZQ
+bq
+rg
+SB
+SB
+SB
+xU
+SB
+ML
+Ef
+KK
+by
+hv
+Fq
+sk
+sk
+sk
+jO
+sk
+ol
+ZK
+ZK
+zl
+sk
+sk
+sk
+sk
+sk
+kz
+hv
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(106,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bK
+aX
+dv
+bT
+eE
+ga
+bY
+ep
+aX
+eU
+bY
+iw
+jH
+hf
+hf
+uL
+uL
+uL
+uL
+uL
+kg
+uL
+uL
+em
+em
+em
+aq
+hp
+hp
+hI
+at
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+Xp
+Xp
+Xp
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+aM
+Xp
+Xp
+Xp
+Xp
+bl
+An
+An
+An
+bl
+bl
+bl
+An
+An
+An
+bl
+Wc
+bl
+An
+An
+An
+bl
+ah
+ah
+ah
+ah
+bq
+xU
+bq
+bq
+bq
+bq
+bq
+bq
+xU
+bq
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+ZK
+ZK
+fk
+cA
+ZK
+ZK
+ZK
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(107,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+ev
+aX
+aX
+bY
+bY
+bY
+bY
+bY
+uL
+ef
+ml
+iL
+ml
+ml
+ED
+uL
+em
+em
+em
+aj
+hN
+hN
+hN
+as
+uG
+wg
+wY
+wg
+xu
+as
+zq
+zq
+Ds
+Ds
+Ds
+as
+vu
+vu
+vu
+Xp
+vu
+kf
+vu
+zo
+vu
+vu
+vu
+zo
+vu
+vu
+kf
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+kf
+vu
+vu
+vu
+vu
+vu
+vu
+nl
+nl
+nl
+Dg
+CE
+Fz
+SB
+bq
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+qQ
+Hf
+Hl
+fr
+ZK
+UF
+UF
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(108,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aB
+aG
+bW
+aG
+gc
+bY
+ew
+aX
+aX
+bY
+iy
+jL
+hl
+di
+uL
+ef
+iz
+iR
+jm
+kh
+ED
+uL
+ly
+em
+em
+aj
+hN
+hN
+hN
+as
+vb
+GO
+xc
+GO
+xz
+as
+GO
+GO
+GO
+GO
+GO
+as
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+nl
+qR
+FP
+SB
+gl
+bq
+by
+ZK
+Hl
+ZK
+ZK
+UF
+ZK
+ZK
+Za
+tH
+oY
+Hl
+ZK
+se
+ZK
+ZK
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(109,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aC
+aG
+aG
+aG
+gd
+bY
+eB
+aX
+aX
+bY
+aG
+aG
+aG
+hF
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+em
+em
+em
+aj
+pJ
+hN
+sY
+as
+vg
+vg
+vg
+vg
+vg
+as
+zD
+BD
+GO
+Lt
+GS
+as
+fP
+vu
+vu
+Xp
+vu
+vu
+vu
+Fx
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+vu
+vu
+Xp
+vu
+vu
+Fx
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+vu
+Ya
+Dg
+LY
+aW
+SB
+bq
+by
+ZK
+Hl
+ZK
+ZK
+UF
+ZK
+ZK
+Za
+zy
+bj
+Hl
+ZK
+ZK
+ZK
+ZK
+EO
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(110,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aE
+aG
+aG
+aG
+aG
+hr
+aX
+aX
+aX
+ih
+aG
+cE
+aG
+kt
+uL
+eh
+vV
+vV
+vV
+vV
+vV
+md
+em
+em
+em
+aj
+hN
+hN
+hN
+FU
+GO
+GO
+GO
+GO
+xE
+as
+as
+aA
+lg
+aA
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+aP
+sz
+sz
+aP
+SG
+SG
+SG
+as
+Px
+Xp
+Xp
+Xp
+as
+as
+as
+as
+as
+as
+SG
+SG
+as
+aP
+Uk
+Wd
+aP
+as
+as
+as
+as
+as
+as
+bh
+bh
+GH
+GH
+GH
+bh
+bh
+aI
+aI
+aI
+sD
+aI
+by
+ZK
+GT
+UF
+ZK
+ZK
+ZK
+ZK
+Za
+su
+UT
+Hl
+ZK
+UF
+ZK
+ZK
+ZK
+Ha
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(111,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aR
+aG
+dC
+fl
+aG
+hr
+aX
+aX
+aX
+ih
+aG
+aG
+aG
+ZN
+uL
+eZ
+eZ
+vV
+eZ
+eZ
+vV
+md
+em
+em
+em
+aj
+ht
+hN
+hN
+FU
+GO
+GO
+xe
+GO
+GO
+as
+Ab
+BR
+GO
+DO
+EM
+Fh
+vj
+vj
+vj
+as
+HI
+an
+IN
+an
+Kn
+Lh
+as
+Wa
+sC
+as
+No
+NE
+Oq
+SG
+vu
+vu
+vu
+vu
+as
+QY
+RM
+Sg
+SM
+as
+TM
+Ur
+as
+Vh
+Uk
+Uk
+Wk
+as
+XJ
+Yv
+Zj
+Zz
+as
+Ya
+Nl
+Nl
+Nl
+Nl
+Nl
+Ya
+bh
+oX
+sH
+tU
+aI
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+qs
+tJ
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(112,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aS
+aG
+bZ
+db
+aG
+hr
+aX
+aX
+aX
+fj
+gb
+aG
+aG
+hG
+uL
+dn
+vo
+vV
+vo
+vo
+vV
+md
+em
+em
+em
+aj
+aj
+ar
+aj
+as
+hX
+GO
+FT
+GO
+GO
+as
+Yx
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+as
+Lr
+an
+gB
+JF
+an
+Li
+as
+Zd
+YK
+as
+Np
+Kz
+Os
+SG
+vu
+vu
+vu
+vu
+as
+Rb
+RP
+GO
+SN
+as
+TO
+tB
+aY
+Vj
+Uk
+Uk
+Wn
+as
+XR
+Uk
+Uk
+Uk
+as
+Yt
+VH
+VH
+VH
+VH
+VH
+nG
+Iw
+RT
+tU
+kS
+aI
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+Lg
+PO
+Hl
+UF
+ZK
+ZK
+ZK
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(113,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+cd
+aG
+dD
+dc
+aG
+hr
+aX
+aX
+aX
+fs
+ja
+aG
+aG
+kH
+uL
+AH
+vo
+vV
+AH
+RY
+vV
+em
+em
+em
+em
+aj
+MA
+rl
+th
+as
+VX
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+as
+aK
+aK
+aK
+JI
+an
+Lj
+as
+Zd
+Uk
+sz
+Uk
+Uk
+Ou
+SG
+Ze
+vu
+vu
+vu
+as
+Rb
+RP
+GO
+GO
+NH
+GO
+GO
+NH
+Uk
+Uk
+Uk
+Uk
+WV
+Uk
+Uk
+Uk
+Uk
+as
+NN
+VH
+cT
+VH
+cT
+VH
+nG
+Iw
+WZ
+Zk
+ZW
+aI
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+Pz
+ZI
+Hl
+ZK
+ZK
+EO
+ZK
+UF
+CX
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(114,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+co
+aG
+ca
+dd
+aG
+hr
+aX
+aX
+aX
+fD
+ge
+aG
+aG
+kI
+uL
+il
+eZ
+vV
+eZ
+eZ
+vV
+em
+em
+em
+em
+aj
+Dv
+JA
+Eh
+as
+wC
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+as
+Lr
+an
+gB
+Of
+an
+Lo
+as
+Zv
+JP
+as
+Nq
+Uk
+Ow
+SG
+vu
+vu
+vu
+vu
+as
+Rb
+RP
+GO
+SQ
+as
+TP
+TD
+aY
+Vk
+VB
+VB
+Wu
+as
+XS
+Uk
+Uk
+Uk
+as
+TW
+VH
+cT
+VH
+cT
+VH
+nG
+Iw
+Ud
+Ub
+ZW
+aI
+by
+ZK
+Hl
+ZK
+UF
+ZK
+EO
+ZK
+Za
+QN
+OH
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(115,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+cu
+aG
+cb
+dl
+aG
+hr
+aX
+aX
+aX
+fI
+gf
+aG
+aG
+kN
+uL
+mw
+vV
+vV
+vV
+vV
+vV
+em
+em
+em
+em
+nW
+JA
+JA
+tL
+as
+vk
+GO
+xt
+GO
+GO
+as
+Ac
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+as
+HJ
+an
+IO
+an
+an
+Ls
+as
+Zd
+SL
+as
+Nr
+NF
+Oy
+SG
+vu
+vu
+vu
+vu
+as
+Rh
+RS
+GO
+SR
+as
+TQ
+Go
+as
+Mc
+VC
+VV
+Wx
+as
+as
+as
+as
+WV
+as
+NN
+VH
+cT
+VH
+cT
+VH
+nG
+Iw
+xP
+Zk
+ZW
+aI
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+ZK
+CX
+ZK
+ZK
+Hl
+ZK
+UF
+ZK
+ZK
+ZK
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(116,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+cD
+aG
+dN
+fo
+aG
+hr
+aX
+aX
+aX
+ih
+aG
+aG
+aG
+kO
+uL
+mI
+vV
+vV
+vV
+vV
+vV
+md
+em
+em
+em
+nW
+JA
+JA
+tP
+as
+GO
+GO
+Ih
+GO
+yj
+as
+UL
+sW
+GO
+Gs
+Nt
+UH
+jo
+Gd
+Gu
+as
+aK
+aK
+aK
+JL
+an
+RK
+aY
+Ix
+SL
+as
+SG
+nn
+SG
+aP
+PA
+PM
+PM
+Qc
+aP
+as
+as
+Mz
+vc
+as
+Ry
+tB
+as
+MZ
+VF
+VF
+WJ
+as
+Xr
+SG
+Rp
+Uk
+as
+Yt
+VH
+VH
+VH
+VH
+VH
+nG
+Iw
+iG
+tU
+ZW
+aI
+by
+ZK
+Hl
+ZK
+ZK
+ZK
+UF
+ZK
+Za
+ZK
+ZK
+Hl
+ZK
+ZK
+ZK
+ZK
+EO
+Za
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(117,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+cO
+aG
+aG
+aG
+aG
+hr
+aX
+aX
+aX
+ih
+aG
+gR
+aG
+ld
+uL
+mJ
+vV
+vV
+vV
+vV
+vV
+md
+em
+em
+em
+nW
+JA
+JA
+tQ
+as
+Ri
+GO
+Tw
+GO
+yj
+as
+as
+as
+Dt
+at
+as
+as
+as
+Gf
+Gv
+as
+Lr
+an
+gB
+Of
+an
+an
+FI
+Uk
+YK
+as
+Zo
+LG
+LG
+LG
+Yy
+vu
+vu
+Jh
+Lc
+Uk
+as
+Sl
+ln
+as
+Ry
+GO
+NH
+GO
+VI
+We
+GO
+NH
+GO
+SG
+Zl
+Uk
+as
+Ya
+Nl
+Nl
+Nl
+Nl
+Nl
+Ya
+Iw
+NG
+tU
+QH
+aI
+by
+ZK
+za
+ql
+ZK
+ZK
+UF
+pu
+vM
+ZK
+ZK
+za
+ql
+ZK
+ZK
+ZK
+pu
+vM
+ZK
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(118,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+cZ
+aG
+aG
+aG
+aG
+bY
+eB
+aX
+aX
+bY
+aG
+aG
+aG
+le
+uL
+mK
+vV
+vV
+eZ
+vV
+ko
+md
+lz
+em
+em
+oo
+JA
+JA
+JH
+as
+ZT
+GO
+GO
+GO
+wf
+as
+Af
+BT
+Rf
+DS
+ET
+Fi
+Iw
+Gg
+Gw
+as
+Nn
+an
+IP
+Py
+Ks
+an
+FI
+Uk
+Uk
+WW
+Uk
+Uk
+Uk
+Uk
+Yy
+nl
+nl
+Jh
+Lc
+ZD
+aY
+Sn
+SG
+as
+TR
+Ut
+as
+as
+as
+as
+as
+as
+XT
+SG
+SG
+SG
+as
+HF
+mX
+ON
+ON
+ON
+mX
+cI
+Iw
+Ux
+tU
+Jc
+aI
+by
+hv
+ZK
+za
+pC
+ye
+pC
+vM
+hv
+ZK
+ZK
+hv
+za
+pC
+LH
+pC
+vM
+ZK
+hv
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(119,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+da
+aG
+ek
+fH
+dV
+bY
+aX
+aX
+aX
+bY
+jd
+gS
+hx
+lf
+uL
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+mh
+ap
+aj
+aj
+rr
+aj
+as
+Wq
+GO
+GO
+GO
+wf
+as
+Ag
+Rf
+Rf
+Rf
+Rf
+Vp
+Iw
+JJ
+JP
+as
+as
+as
+as
+as
+as
+as
+as
+JJ
+JP
+as
+Jk
+Uk
+Uk
+Uk
+Yy
+nl
+nl
+Jh
+Lc
+Uk
+XD
+GO
+GO
+Tk
+GO
+GO
+Rd
+GO
+GO
+GO
+LQ
+as
+QS
+SG
+Yw
+GO
+as
+Gh
+iX
+iX
+iX
+iX
+iX
+Sc
+Iw
+Mb
+tU
+Jc
+aI
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+by
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(120,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+hs
+hs
+hs
+bY
+bY
+bY
+bY
+bY
+uL
+mM
+iA
+iA
+iA
+iA
+kp
+aj
+lA
+JS
+mr
+aj
+Mx
+JS
+GD
+as
+Eq
+GO
+Ui
+GO
+wf
+as
+Hd
+Rf
+Du
+DU
+Rf
+Fj
+FF
+Ix
+YK
+at
+Ln
+So
+So
+JM
+So
+So
+So
+HT
+YK
+as
+gY
+KZ
+PC
+LG
+Yy
+nl
+nl
+Jh
+Lc
+Uk
+XD
+GO
+GO
+Tk
+GO
+GO
+Rd
+GO
+GO
+GO
+LQ
+as
+GO
+SG
+Zm
+GO
+as
+Gh
+iX
+wA
+iX
+wA
+iX
+Sc
+aI
+VT
+tU
+iT
+aI
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(121,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+dW
+hs
+hs
+hs
+hs
+hs
+gg
+bY
+ZQ
+ZQ
+uL
+mP
+iH
+iV
+iV
+ki
+kr
+aj
+lC
+JS
+ms
+aj
+JS
+JS
+XY
+as
+GO
+GO
+KC
+GO
+wf
+as
+XH
+Rf
+Dw
+IC
+WC
+Rf
+Ox
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+sz
+Uk
+En
+OE
+LG
+Yy
+nl
+nl
+Jh
+Lc
+ZD
+aY
+Il
+SG
+as
+PH
+TD
+as
+SG
+Rd
+Rd
+SG
+as
+as
+as
+as
+ZB
+as
+as
+as
+as
+as
+as
+bh
+bh
+aI
+aI
+aI
+aI
+aI
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(122,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+jh
+hs
+Sj
+hs
+hE
+hs
+jh
+bY
+ZQ
+ZQ
+uL
+nd
+iJ
+iW
+jp
+cU
+kK
+aj
+lE
+JS
+mt
+aj
+pN
+rz
+MF
+as
+Xb
+GO
+TJ
+GO
+wf
+as
+Ah
+Rf
+HS
+DV
+Rf
+Fk
+FF
+JJ
+JP
+aJ
+HK
+Vc
+Vc
+Vc
+Wa
+Uk
+sC
+Vc
+Mn
+as
+Ww
+NI
+SG
+LG
+Yy
+vu
+vu
+Jh
+Lc
+Uk
+as
+Kr
+ZF
+as
+TQ
+Go
+SG
+Vl
+GO
+GO
+Wz
+Un
+XU
+YA
+Qu
+GO
+ZZ
+as
+DT
+as
+DT
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(123,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+jh
+hs
+Sj
+hs
+hE
+hs
+jh
+bY
+ZQ
+ZQ
+uL
+ne
+iJ
+JS
+jr
+cU
+EG
+aj
+aj
+mh
+aj
+aj
+aj
+aj
+aj
+as
+NW
+GO
+GO
+GO
+IM
+as
+XM
+Rf
+Rf
+Rf
+Rf
+Vp
+Iw
+Zd
+SL
+as
+as
+as
+as
+as
+Zd
+Uk
+SL
+as
+as
+as
+as
+as
+as
+aP
+PE
+PQ
+PQ
+Qd
+aP
+as
+as
+Mu
+SS
+as
+Fe
+Go
+SG
+Vm
+GO
+Sf
+GO
+GO
+GO
+GO
+GO
+GO
+UW
+as
+Xh
+as
+KA
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(124,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+jh
+hs
+Sj
+hs
+hE
+hs
+jh
+bY
+ZQ
+ZQ
+uL
+im
+iJ
+iZ
+ju
+cU
+kM
+md
+lV
+JS
+DR
+aj
+ZQ
+ZQ
+ZQ
+as
+Ek
+GO
+GO
+GO
+IM
+as
+Gz
+Cy
+Rf
+DX
+EU
+YI
+Iw
+Zd
+SL
+as
+HL
+So
+So
+So
+HT
+Uk
+Gy
+So
+Mo
+Nf
+Kp
+NL
+Xf
+as
+VH
+VH
+VH
+VH
+as
+Rk
+Oi
+GO
+SU
+SG
+Ry
+Go
+SG
+Vo
+GO
+Sf
+GO
+GO
+XN
+XN
+XN
+GO
+ob
+as
+Hv
+Hv
+Hv
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(125,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ea
+hs
+hs
+hs
+hs
+hs
+gj
+bY
+ZQ
+ZQ
+uL
+nf
+wy
+jb
+jb
+kk
+JS
+lm
+JS
+JS
+XY
+aj
+ZQ
+as
+as
+as
+Ja
+GO
+Od
+GO
+yC
+as
+as
+as
+IB
+as
+as
+as
+as
+Zd
+SL
+as
+LE
+Uk
+Uk
+Uk
+Kx
+Kx
+Uk
+Uk
+Mq
+MN
+Ll
+OA
+Xf
+as
+PG
+VH
+VH
+VH
+as
+Rm
+GO
+GO
+SW
+SG
+TO
+Go
+SG
+Vr
+GO
+Sf
+GO
+WY
+XV
+Kq
+HN
+WP
+GO
+GU
+Hv
+Hv
+SO
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(126,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+hs
+hs
+hs
+bY
+bY
+bY
+bY
+bY
+uL
+nB
+wT
+zJ
+YE
+YE
+CG
+md
+RX
+JS
+Yh
+aj
+ZQ
+as
+EH
+up
+GO
+GO
+Od
+GO
+yC
+as
+EY
+CD
+Uk
+PT
+ZR
+ZR
+SG
+Zd
+SL
+as
+HO
+Uk
+Uk
+Uk
+ak
+Lw
+CZ
+Uk
+SL
+MN
+Ll
+OA
+Xf
+as
+PI
+VH
+VH
+VH
+as
+Sz
+GO
+GO
+GO
+Tm
+GO
+Go
+SG
+Vv
+GO
+Sf
+GO
+WY
+Kq
+Kq
+Zp
+WP
+Hz
+as
+Ex
+Hv
+Hv
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(127,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+uL
+aj
+md
+md
+md
+md
+aj
+aj
+md
+mj
+md
+aj
+aj
+as
+as
+as
+Jd
+GO
+Od
+GO
+yD
+as
+EY
+CD
+Uk
+PT
+ZR
+ZR
+SG
+Ix
+SL
+as
+HA
+Uk
+Uk
+Uk
+Uk
+ak
+CZ
+Uk
+SL
+MN
+Ll
+OA
+Xf
+as
+VH
+VH
+VH
+VH
+as
+Rn
+GO
+GO
+Oo
+SG
+GO
+Go
+SG
+VE
+GO
+Sf
+GO
+GO
+Yw
+Yw
+Yw
+GO
+UW
+as
+Ex
+Hv
+oS
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(128,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+uL
+nD
+wU
+em
+AJ
+OU
+UY
+lw
+lW
+em
+mu
+os
+qf
+rZ
+tX
+as
+Tn
+GO
+GO
+GO
+GO
+yE
+OK
+Uk
+Uk
+Uk
+Uk
+Uk
+FI
+Uk
+Gy
+So
+HT
+Uk
+Vb
+JN
+Uk
+Lw
+CZ
+Uk
+Gy
+HT
+Uk
+OA
+Xf
+as
+Xn
+Rj
+Rj
+Xn
+as
+Ro
+GO
+Xw
+cJ
+SG
+GO
+SR
+SG
+DZ
+VK
+lF
+WA
+GO
+XW
+YB
+WA
+GO
+Ke
+as
+as
+lX
+as
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(129,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+uL
+nL
+iK
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+kj
+tZ
+as
+Xs
+GO
+GO
+GO
+GO
+yE
+Uk
+Uk
+Uk
+Uk
+Uk
+Uk
+FI
+Uk
+sC
+Vc
+Wa
+Uk
+Vb
+JT
+Uk
+ak
+CZ
+Uk
+sC
+Wa
+Uk
+OA
+Xf
+as
+bh
+PS
+PY
+bh
+as
+as
+Zs
+as
+as
+as
+TS
+Uu
+as
+as
+as
+as
+SG
+Xc
+SG
+as
+SG
+Xc
+SG
+as
+Wr
+JO
+vL
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(130,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+eD
+eS
+eD
+bY
+bY
+bY
+hz
+eS
+uL
+oM
+xG
+em
+em
+em
+em
+em
+em
+em
+em
+em
+em
+si
+ua
+as
+af
+GO
+My
+GO
+GO
+at
+Av
+Uk
+Uk
+Uk
+Uk
+Uk
+FK
+JJ
+SL
+as
+Zv
+Uk
+Uk
+Uk
+Uk
+ak
+CZ
+Uk
+SL
+MN
+Ll
+OA
+OM
+as
+OT
+PW
+PW
+Qe
+as
+UD
+GO
+Sp
+Dz
+as
+GO
+Sp
+UG
+VA
+VP
+as
+Yz
+GO
+Pq
+as
+Yz
+GO
+Pq
+as
+Hv
+JO
+Hv
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(131,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+ej
+hs
+hs
+hs
+fJ
+bY
+gX
+aG
+aG
+uL
+pF
+xS
+em
+em
+em
+em
+em
+em
+WB
+Rw
+WB
+em
+sj
+Jq
+as
+vn
+GO
+My
+GO
+FN
+as
+PK
+Uk
+Uk
+Uk
+Uk
+Uk
+SG
+Zd
+SL
+as
+EQ
+Uk
+Uk
+Uk
+ak
+FW
+CZ
+Uk
+Mv
+MN
+Ll
+OA
+Xf
+as
+Pl
+PX
+PX
+Qg
+as
+JG
+GO
+GO
+Wh
+as
+TY
+GO
+GO
+XN
+VW
+as
+Ws
+GO
+WU
+as
+Ws
+GO
+WU
+as
+Wr
+JO
+vL
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(132,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+el
+hs
+hs
+hs
+fL
+bY
+gZ
+aG
+aG
+uL
+ip
+yg
+em
+em
+em
+em
+em
+em
+WB
+mL
+WB
+em
+sw
+ub
+as
+YX
+GO
+My
+GO
+FN
+as
+AE
+Fa
+Dx
+Uk
+Et
+Uk
+SG
+Zd
+SL
+as
+Td
+Uk
+Uk
+Uk
+Kz
+Kz
+Uk
+Uk
+MB
+MN
+Ll
+OA
+Xf
+as
+EW
+PX
+PX
+Qg
+as
+Ue
+GO
+GO
+Wh
+as
+TZ
+GO
+UJ
+Kq
+VY
+as
+Ws
+GO
+WU
+as
+Ws
+GO
+WU
+as
+Bb
+JO
+Hv
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(133,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+en
+eR
+eT
+eV
+fM
+bY
+ha
+aG
+hH
+uL
+sP
+yg
+em
+FL
+Vg
+Xe
+JV
+em
+WB
+Rw
+WB
+em
+Sh
+Xg
+as
+YX
+GO
+My
+GO
+FN
+as
+Ys
+CF
+DA
+Uk
+Et
+Fn
+SG
+Gi
+Ig
+as
+VS
+Vc
+Vc
+Vc
+Vc
+Vc
+Vc
+Vc
+MD
+Nh
+Nw
+NO
+Xf
+as
+TA
+Wj
+Wj
+Qh
+as
+Ie
+YU
+YU
+Vd
+as
+Ie
+YU
+YU
+Ew
+Qx
+as
+Yd
+lF
+Yu
+as
+Yd
+lF
+Yu
+as
+Wr
+JO
+vL
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(134,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+bY
+uL
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+bh
+bh
+bh
+bh
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+as
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(135,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(136,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(137,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(138,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(139,1,1) = {"
+aa
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+aa
+"}
+(140,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/stellardelight/ship_misc.dmm b/maps/stellardelight/ship_misc.dmm
new file mode 100644
index 0000000000..0b26656607
--- /dev/null
+++ b/maps/stellardelight/ship_misc.dmm
@@ -0,0 +1,21821 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ac" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ad" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ag" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ah" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Jury Box"
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"ak" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"al" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"am" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"an" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"ao" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ap" = (
+/turf/space,
+/area/space)
+"ar" = (
+/turf/unsimulated/wall,
+/area/space)
+"as" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"at" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"au" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet/corners{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"av" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aw" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"ax" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ay" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"az" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aA" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aB" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aC" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"aD" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"aE" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aF" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aG" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"aH" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"aI" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aJ" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"aK" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"aL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aM" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aN" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aO" = (
+/obj/structure/table/rack/holorack,
+/obj/item/clothing/under/dress/dress_saloon,
+/obj/item/clothing/head/pin/flower,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"aP" = (
+/obj/effect/landmark/costume,
+/obj/structure/table/rack/holorack,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"aQ" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"aR" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"aS" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"aT" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"aU" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_plating)
+"aV" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"aW" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"aX" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"aY" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"aZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ba" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"bd" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"be" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bf" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bg" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"bh" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"bi" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bj" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn"
+ },
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"bk" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bl" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bm" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bo" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bp" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bq" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"br" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"bs" = (
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bt" = (
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bu" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 8;
+ layer = 3.4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bv" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bw" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bx" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 4;
+ layer = 3.4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bA" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 8
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bB" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bC" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bD" = (
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 8
+ },
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bE" = (
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bF" = (
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 4
+ },
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"bH" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bI" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Court Reporter's Box"
+ },
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bJ" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bK" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bL" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bM" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Witness Box"
+ },
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bP" = (
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bS" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bV" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"bW" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bY" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bZ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ca" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cb" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cc" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cd" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ci" = (
+/obj/structure/holostool{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"cm" = (
+/obj/item/toy/chess/pawn_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"ct" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cu" = (
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cv" = (
+/obj/structure/holostool{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cw" = (
+/obj/structure/table/woodentable/holotable,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cx" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cy" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cz" = (
+/obj/structure/table/woodentable/holotable,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"cB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"cL" = (
+/obj/structure/holostool{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"cM" = (
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"cP" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"cQ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"cR" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/north;
+ landmark_tag = "skipjack_transit";
+ name = "Skipjack Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"cS" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cT" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cU" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"da" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"db" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space,
+/turf/space/transit/north,
+/area/space)
+"dd" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"de" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"dj" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dk" = (
+/obj/effect/floor_decal/carpet,
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dl" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dm" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dq" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"dr" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ds" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"dt" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"du" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"dv" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dw" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dx" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dA" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"dB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"dD" = (
+/turf/space,
+/turf/space,
+/area/space)
+"dF" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"dG" = (
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"dH" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"dI" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"dJ" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"dK" = (
+/obj/structure/holostool{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dM" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dN" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dO" = (
+/obj/structure/holohoop,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dP" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dQ" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"dR" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"dS" = (
+/obj/structure/holostool{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dU" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dV" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/under/color/red,
+/obj/item/weapon/holo/esword/red,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dW" = (
+/obj/structure/table/holotable,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dX" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"dY" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"ec" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn Random"
+ },
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"ed" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"ee" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"ef" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eg" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eh" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ei" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ej" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ek" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"el" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"em" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"en" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"eo" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"ep" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eq" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"es" = (
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"et" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"eD" = (
+/obj/effect/floor_decal/sign/small_4,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"eG" = (
+/turf/space,
+/turf/space/transit/north,
+/area/space)
+"eH" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/north;
+ landmark_tag = "ninja_transit";
+ name = "Ninja Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"eI" = (
+/turf/space/transit/south,
+/area/space)
+"eJ" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eK" = (
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"eL" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_meetinghall)
+"eM" = (
+/obj/item/weapon/beach_ball,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"eO" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/south,
+/area/space)
+"eQ" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "specops_transit";
+ name = "Specops Transit"
+ },
+/turf/space/transit/west,
+/area/space)
+"eT" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"eV" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eW" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eY" = (
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"eZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fa" = (
+/obj/item/weapon/beach_ball/holoball,
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fb" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fc" = (
+/obj/item/weapon/inflatable_duck,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"fd" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fe" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"ff" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fh" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/west,
+/area/space)
+"fn" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fo" = (
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fp" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fq" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fr" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fs" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ft" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fu" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fv" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fz" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fC" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fG" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"fH" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet{
+ dir = 8
+ },
+/area/holodeck/source_meetinghall)
+"fJ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fK" = (
+/turf/unsimulated/beach/sand{
+ icon_state = "beach"
+ },
+/area/holodeck/source_beach)
+"fO" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fP" = (
+/obj/effect/floor_decal/carpet,
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fQ" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/structure/holostool{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fR" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/holodeck/source_beach)
+"fS" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fT" = (
+/obj/structure/holohoop{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fU" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fV" = (
+/obj/structure/table/holotable,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fW" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/under/color/green,
+/obj/item/weapon/holo/esword/green,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fX" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fY" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"fZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"ga" = (
+/turf/unsimulated/beach/sand{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"gb" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "belter_transit";
+ name = "Belter Transit"
+ },
+/turf/space/transit/south,
+/area/space)
+"gc" = (
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gd" = (
+/obj/structure/signpost,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"ge" = (
+/obj/structure/closet,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gf" = (
+/obj/effect/overlay/palmtree_l,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gg" = (
+/obj/effect/overlay/palmtree_r,
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gh" = (
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gi" = (
+/obj/effect/overlay/palmtree_r,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gj" = (
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gk" = (
+/obj/structure/table/standard,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gl" = (
+/obj/structure/table/standard,
+/obj/item/clothing/under/color/rainbow,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/head/collectable/petehat{
+ pixel_y = 5
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gm" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/snacks/chips,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gn" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"go" = (
+/obj/item/weapon/beach_ball,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gp" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/obj/item/toy/plushie/mouse{
+ desc = "A plushie of a small fuzzy rodent.";
+ name = "Woodrat"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gq" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gr" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gs" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gt" = (
+/turf/unsimulated/floor{
+ icon_state = "sandwater"
+ },
+/area/beach)
+"gu" = (
+/turf/unsimulated/beach/coastline{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"gy" = (
+/turf/unsimulated/beach/coastline,
+/area/beach)
+"gN" = (
+/turf/unsimulated/beach/water{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"gO" = (
+/turf/unsimulated/beach/water,
+/area/beach)
+"iv" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "port_escape_transit";
+ name = "Port Escape Transit"
+ },
+/turf/space/transit/west,
+/area/space)
+"iO" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/west,
+/area/space)
+"kw" = (
+/obj/effect/floor_decal/sign/small_5,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"lf" = (
+/obj/effect/landmark/ai_multicam_room,
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"lP" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "starboard_escape_transit";
+ name = "Starboard Escape Transit"
+ },
+/turf/space/transit/east,
+/area/space)
+"nj" = (
+/obj/item/toy/chess/rook_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"nV" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"nW" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"oT" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"pf" = (
+/obj/effect/floor_decal/sign/small_8,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"pT" = (
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"qv" = (
+/obj/effect/floor_decal/sign/small_h,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"qV" = (
+/obj/effect/floor_decal/sign/small_6,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"ru" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"sb" = (
+/obj/item/toy/chess/knight_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"tD" = (
+/turf/unsimulated/wall,
+/area/ai_multicam_room)
+"ul" = (
+/turf/unsimulated/wall,
+/area/beach)
+"un" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "escape_transit";
+ name = "Escape Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"uM" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"vW" = (
+/obj/effect/floor_decal/sign/small_a,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"wa" = (
+/obj/effect/floor_decal/sign/small_3,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"wh" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Bm" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"BG" = (
+/obj/item/toy/chess/king_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"BV" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/space)
+"CJ" = (
+/obj/item/toy/chess/pawn_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"CK" = (
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Di" = (
+/obj/effect/floor_decal/sign/small_2,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"DL" = (
+/obj/effect/floor_decal/sign/small_b,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"El" = (
+/turf/space/transit/west,
+/area/space)
+"Eo" = (
+/obj/effect/floor_decal/sign/small_g,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"EX" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Gs" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space,
+/turf/space/transit/north,
+/area/space)
+"GW" = (
+/obj/item/toy/chess/king_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Hk" = (
+/obj/effect/floor_decal/sign/small_7,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Hr" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"HL" = (
+/obj/effect/floor_decal/sign/small_1,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Jc" = (
+/obj/item/toy/chess/bishop_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"JI" = (
+/obj/item/toy/chess/rook_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Kn" = (
+/obj/effect/floor_decal/sign/small_d,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"KQ" = (
+/obj/effect/floor_decal/sign/small_f,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Me" = (
+/turf/simulated/floor/smole/desert,
+/area/holodeck/source_smoleworld)
+"Mi" = (
+/obj/item/toy/chess/bishop_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"ML" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/west,
+/area/space)
+"Or" = (
+/obj/item/toy/chess/knight_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"PM" = (
+/turf/simulated/floor/smole/megablocks,
+/area/holodeck/source_smoleworld)
+"Qs" = (
+/obj/item/toy/chess/queen_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"RV" = (
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"Ug" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_basketball)
+"UG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/space/transit/east,
+/area/space)
+"Wf" = (
+/obj/item/toy/chess/queen_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Xh" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"XG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/space/transit/west,
+/area/space)
+"Yx" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/north,
+/area/space)
+"YX" = (
+/obj/effect/floor_decal/sign/small_e,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"YZ" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/east,
+/area/space)
+"Zb" = (
+/turf/space/transit/east,
+/area/space)
+"ZC" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/north,
+/area/space)
+"ZF" = (
+/turf/space/transit/north,
+/area/space)
+"ZQ" = (
+/obj/effect/floor_decal/sign/small_c,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+
+(1,1,1) = {"
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+"}
+(2,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gu
+gN
+gN
+ul
+"}
+(3,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gf
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(4,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(5,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gd
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gh
+gi
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(6,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gh
+gc
+gs
+gt
+gy
+gO
+gN
+ul
+"}
+(7,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gi
+gc
+gj
+gj
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(8,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gh
+gj
+gk
+gm
+gj
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(9,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ge
+gc
+gc
+gc
+gc
+gj
+gl
+gn
+gj
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(10,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+lf
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+fh
+fh
+fh
+fh
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+YZ
+YZ
+YZ
+YZ
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ge
+gc
+gc
+gc
+gc
+gc
+gj
+gj
+gc
+gc
+gc
+gp
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(11,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+El
+iv
+El
+El
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ge
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(12,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+El
+XG
+El
+El
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+UG
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gq
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(13,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gi
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(14,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ge
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gq
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(15,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ge
+gc
+gc
+gc
+gc
+gc
+gc
+go
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(16,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+Zb
+lP
+Zb
+Zb
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ge
+gc
+gh
+gf
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gr
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(17,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+fh
+fh
+fh
+fh
+fh
+fh
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+YZ
+YZ
+YZ
+YZ
+YZ
+YZ
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(18,1,1) = {"
+tD
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+un
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(19,1,1) = {"
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+tD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gf
+gh
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(20,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(21,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+gc
+gg
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gc
+gt
+gy
+gO
+gN
+ul
+"}
+(22,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+ga
+gu
+gN
+gN
+ul
+"}
+(23,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+ul
+"}
+(24,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(25,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(26,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ap
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+Zb
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(27,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(28,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(29,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(30,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(31,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(32,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(33,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(34,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(35,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(36,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(37,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(38,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(39,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(40,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(41,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(42,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(43,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(44,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(45,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(46,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(47,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(48,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(49,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(50,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(51,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(52,1,1) = {"
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(53,1,1) = {"
+as
+nW
+pf
+Hk
+qV
+kw
+eD
+wa
+Di
+HL
+nW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(54,1,1) = {"
+as
+nW
+nV
+ru
+CK
+pT
+CK
+pT
+cm
+JI
+vW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(55,1,1) = {"
+as
+nW
+wh
+oT
+pT
+CK
+pT
+CK
+CJ
+sb
+DL
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(56,1,1) = {"
+as
+nW
+EX
+ru
+CK
+pT
+CK
+pT
+cm
+Jc
+ZQ
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(57,1,1) = {"
+as
+nW
+Qs
+oT
+pT
+CK
+pT
+CK
+CJ
+Wf
+Kn
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(58,1,1) = {"
+as
+nW
+BG
+ru
+CK
+pT
+CK
+pT
+cm
+GW
+YX
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(59,1,1) = {"
+as
+nW
+Bm
+oT
+pT
+CK
+pT
+CK
+CJ
+Mi
+KQ
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(60,1,1) = {"
+as
+nW
+uM
+ru
+CK
+pT
+CK
+pT
+cm
+Or
+Eo
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(61,1,1) = {"
+as
+nW
+Hr
+oT
+pT
+CK
+pT
+CK
+CJ
+nj
+qv
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(62,1,1) = {"
+as
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(63,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(64,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(65,1,1) = {"
+as
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(66,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(67,1,1) = {"
+as
+aK
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(68,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+bd
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(69,1,1) = {"
+as
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(70,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(71,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(72,1,1) = {"
+as
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(73,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(74,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(75,1,1) = {"
+as
+aM
+be
+bf
+be
+be
+be
+be
+bf
+be
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fG
+dG
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(76,1,1) = {"
+as
+aN
+bf
+be
+bf
+bf
+bf
+bf
+be
+bf
+aN
+dA
+dG
+ed
+dG
+dG
+dG
+dG
+dG
+dG
+eT
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(77,1,1) = {"
+as
+aM
+be
+bo
+bU
+bU
+bU
+bU
+da
+be
+aM
+dA
+dG
+dG
+dG
+eJ
+dG
+dG
+dG
+dG
+dG
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eO
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(78,1,1) = {"
+as
+aN
+bf
+bp
+bB
+bB
+bB
+bB
+cP
+bf
+aN
+dA
+dG
+dG
+dG
+dG
+eT
+dG
+dG
+dG
+eJ
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(79,1,1) = {"
+as
+aM
+be
+bq
+an
+bS
+bS
+bP
+cQ
+be
+aM
+dA
+dG
+dG
+dG
+ep
+dG
+dG
+ed
+dG
+dG
+fG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+dD
+dD
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+gb
+eO
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(80,1,1) = {"
+as
+aM
+bf
+bp
+an
+bS
+bS
+bP
+cP
+bf
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fG
+dG
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+Gs
+Gs
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(81,1,1) = {"
+as
+aN
+be
+bq
+bB
+bB
+bB
+bB
+at
+eU
+aN
+dA
+dG
+ed
+dG
+dG
+dG
+dG
+eJ
+dG
+eT
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eO
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(82,1,1) = {"
+as
+aM
+bf
+ag
+ax
+ao
+aA
+bB
+bB
+cQ
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eO
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(83,1,1) = {"
+as
+aN
+be
+bf
+be
+bf
+aB
+aA
+bB
+cQ
+aN
+dA
+dG
+dG
+ep
+dG
+eT
+dG
+dG
+dG
+eJ
+dG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(84,1,1) = {"
+as
+aM
+bf
+be
+bf
+be
+be
+bq
+bB
+cP
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+ed
+dG
+dG
+fG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(85,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(86,1,1) = {"
+as
+aO
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+dq
+dA
+dI
+dH
+dH
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(87,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+bV
+dA
+dH
+dH
+dH
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(88,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bW
+ct
+ct
+ct
+dj
+bV
+dA
+dH
+dH
+dH
+eK
+eV
+fn
+fn
+fn
+fO
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+db
+db
+db
+db
+db
+db
+eG
+eG
+db
+db
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+eG
+Gs
+dD
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(89,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ee
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(90,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(91,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(92,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(93,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bY
+cv
+cd
+cd
+dl
+bV
+dA
+dH
+eg
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(94,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+bV
+dA
+dH
+dH
+dH
+eK
+eX
+fp
+fp
+fH
+fQ
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+"}
+(95,1,1) = {"
+as
+aP
+bg
+bg
+bH
+bZ
+bZ
+dr
+dm
+bH
+dr
+dA
+dH
+dH
+dH
+eK
+eK
+eK
+eK
+Xh
+Xh
+eK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(96,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(97,1,1) = {"
+as
+aS
+bi
+ah
+au
+ay
+ay
+ay
+ay
+aE
+aS
+dB
+dM
+eh
+eh
+eh
+eY
+fq
+fz
+fz
+fz
+fS
+fZ
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(98,1,1) = {"
+as
+aS
+bi
+bv
+av
+az
+az
+az
+az
+aF
+aS
+dB
+dN
+ei
+ei
+Ug
+eZ
+fr
+ei
+ei
+ei
+fJ
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(99,1,1) = {"
+as
+aS
+bi
+ak
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+dB
+dM
+eh
+dN
+ei
+eZ
+fr
+ei
+fJ
+fz
+fS
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+ML
+ML
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(100,1,1) = {"
+as
+aS
+bi
+bi
+bI
+ca
+cw
+cS
+dd
+cS
+ds
+dB
+dO
+ei
+dN
+ei
+fa
+fr
+ei
+fJ
+ei
+fT
+fZ
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(101,1,1) = {"
+as
+aS
+bi
+aS
+bJ
+cb
+cx
+cT
+cy
+cT
+dt
+dB
+dP
+ej
+dN
+ei
+eZ
+fr
+ei
+fJ
+fA
+fU
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(102,1,1) = {"
+as
+aS
+bi
+bt
+bK
+cb
+cy
+cy
+cy
+cT
+dt
+dB
+dN
+ei
+ei
+ei
+eZ
+fr
+ei
+ei
+ei
+fJ
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(103,1,1) = {"
+as
+aS
+bi
+aS
+bL
+cb
+cx
+cT
+cy
+cT
+dt
+dB
+dP
+ej
+ej
+ej
+fb
+fs
+fA
+fA
+fA
+fU
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(104,1,1) = {"
+as
+aS
+bi
+bi
+bM
+cc
+cz
+cU
+de
+cU
+du
+dB
+aG
+aG
+aR
+aG
+aG
+aG
+aG
+bh
+aG
+aG
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(105,1,1) = {"
+as
+ab
+ad
+al
+al
+al
+al
+al
+aC
+al
+ab
+dB
+dK
+dK
+dJ
+dK
+dK
+dK
+dK
+dJ
+dK
+dK
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+ML
+ML
+ML
+ML
+El
+El
+El
+El
+El
+El
+ML
+ML
+ML
+ML
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(106,1,1) = {"
+as
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+dB
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(107,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+cR
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(108,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(109,1,1) = {"
+as
+aT
+bj
+aT
+aT
+aT
+aT
+aT
+aT
+bj
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(110,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+ek
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(111,1,1) = {"
+as
+aT
+aT
+aT
+bj
+aT
+aT
+bj
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(112,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+eM
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(113,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(114,1,1) = {"
+as
+aT
+aT
+aT
+bj
+aT
+aT
+bj
+aT
+aT
+aT
+dB
+dQ
+dQ
+es
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(115,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+et
+dQ
+fc
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(116,1,1) = {"
+as
+aT
+bj
+aT
+aT
+aT
+aT
+aT
+aT
+bj
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(117,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(118,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(119,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dU
+el
+el
+el
+fd
+ft
+fB
+fB
+fB
+fV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(120,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(121,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(122,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(123,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(124,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+eQ
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(125,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dW
+en
+en
+en
+ff
+fv
+fC
+fC
+fC
+fX
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(126,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+aH
+aH
+aX
+aH
+aH
+aH
+aH
+br
+aH
+aH
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+eH
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(127,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dS
+dS
+dR
+dS
+dS
+dS
+dS
+dR
+dS
+dS
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(128,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(129,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(130,1,1) = {"
+as
+aY
+bk
+bk
+bk
+bk
+cA
+cA
+cA
+cA
+dv
+dB
+dX
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(131,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dX
+dY
+dY
+ci
+ci
+ci
+ci
+dY
+dY
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(132,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(133,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+dY
+dY
+bu
+bA
+bA
+bD
+dY
+cM
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(134,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+eo
+dY
+bw
+bs
+bs
+bE
+dY
+cM
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+El
+ML
+ML
+ML
+ML
+ML
+ML
+El
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(135,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+eo
+dY
+bw
+bs
+bs
+bE
+dY
+cM
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+ML
+ML
+El
+El
+El
+El
+El
+El
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(136,1,1) = {"
+as
+ba
+bm
+bm
+bm
+bm
+cB
+cB
+cB
+cB
+dx
+dB
+dY
+eo
+dY
+bx
+bC
+bC
+bF
+dY
+dY
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+Yx
+Yx
+Yx
+Yx
+Yx
+Yx
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+ML
+ML
+ML
+ML
+ML
+ML
+ML
+ML
+El
+El
+El
+El
+El
+El
+ML
+ML
+ML
+ML
+ML
+ML
+ML
+ML
+El
+El
+El
+El
+El
+El
+iO
+"}
+(137,1,1) = {"
+as
+ac
+ac
+am
+ac
+ac
+ac
+ac
+aD
+ac
+ac
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(138,1,1) = {"
+as
+aW
+aW
+aV
+aW
+aW
+aW
+aW
+aV
+aW
+aW
+dB
+dY
+dY
+dY
+cL
+cL
+cL
+cL
+dY
+dY
+fY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(139,1,1) = {"
+as
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+fY
+fZ
+ap
+dB
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZF
+ZC
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(140,1,1) = {"
+ar
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+ar
+ap
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ap
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+"}
diff --git a/maps/stellardelight/stelardelightskybox.dmi b/maps/stellardelight/stelardelightskybox.dmi
new file mode 100644
index 0000000000..f699662e49
Binary files /dev/null and b/maps/stellardelight/stelardelightskybox.dmi differ
diff --git a/maps/stellardelight/stellar_delight.dm b/maps/stellardelight/stellar_delight.dm
new file mode 100644
index 0000000000..1050a6528b
--- /dev/null
+++ b/maps/stellardelight/stellar_delight.dm
@@ -0,0 +1,21 @@
+#if !defined(USING_MAP_DATUM)
+
+ #include "stellar_delight_areas.dm"
+ #include "stellar_delight_defines.dm"
+ #include "stellar_delight_misc.dm"
+ #include "stellar_delight_telecomms.dm"
+ #include "..\offmap_vr\common_offmaps.dm"
+
+ #if !AWAY_MISSION_TEST //Don't include these for just testing away missions
+ #include "stellar_delight1.dmm"
+ #include "stellar_delight2.dmm"
+ #include "stellar_delight3.dmm"
+ #endif
+
+ #define USING_MAP_DATUM /datum/map/stellar_delight
+
+#elif !defined(MAP_OVERRIDE)
+
+ #warn A map has already been included, ignoring Tether
+
+#endif
\ No newline at end of file
diff --git a/maps/stellardelight/stellar_delight1.dmm b/maps/stellardelight/stellar_delight1.dmm
new file mode 100644
index 0000000000..9ead050dd7
--- /dev/null
+++ b/maps/stellardelight/stellar_delight1.dmm
@@ -0,0 +1,43974 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"ac" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"ad" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ae" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"ag" = (
+/obj/structure/cable/pink{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"ah" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"ai" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/maintenance/research,
+/obj/random/contraband,
+/obj/structure/cable/pink,
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"aj" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"ak" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"am" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"an" = (
+/turf/simulated/wall/bay/white,
+/area/stellardelight/deck1/aft)
+"ao" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"ap" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"aq" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/armoury)
+"ar" = (
+/obj/structure/filingcabinet/chestdrawer{
+ desc = "A large drawer filled with autopsy reports.";
+ name = "Autopsy Reports"
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"as" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"at" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"au" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"aw" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"ax" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"ay" = (
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"aA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"aB" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/assembly/robotics)
+"aC" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"aD" = (
+/turf/simulated/wall/bay/purple,
+/area/assembly/robotics)
+"aE" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"aF" = (
+/obj/structure/closet/bombcloset/double,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 29
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 38
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"aG" = (
+/obj/structure/bookcase{
+ name = "bookcase (Religious)"
+ },
+/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,
+/obj/item/weapon/book/custom_library/religious/feastofkubera,
+/obj/item/weapon/book/custom_library/religious/storyoflordganesha,
+/obj/item/weapon/book/custom_library/religious/sungoddessofkorea,
+/obj/item/weapon/book/custom_library/religious/wayofbleedingswan,
+/turf/simulated/floor/wood,
+/area/library)
+"aH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "GatewayShutterE"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/gateway)
+"aI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"aJ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/fieldmedic,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"aK" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"aL" = (
+/obj/machinery/camera/network/research/xenobio{
+ dir = 5;
+ network = list("Xenobiology")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"aM" = (
+/turf/simulated/wall/bay/purple,
+/area/rnd/workshop)
+"aN" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"aO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"aP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"aQ" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/starboard)
+"aR" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/white,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"aS" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/security/security_equiptment_storage)
+"aU" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aV" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"aW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"aX" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/emerald/corner,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"aY" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "securitylockdown"
+ },
+/obj/machinery/door/window/brigdoor/eastright{
+ dir = 2
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"aZ" = (
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ dir = 8;
+ id_tag = "xenobio_airlock_control";
+ name = "Xenobiology Access Console";
+ pixel_x = 24;
+ tag_exterior_door = "xenobio_airlock_exterior";
+ tag_interior_door = "xenobio_airlock_interior"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/xenobiology)
+"ba" = (
+/obj/item/modular_computer/console/preset/civilian,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"bb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/botany/editor,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"bc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"bd" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"be" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "xenobio_airlock_control";
+ name = "Xenobiology Access Button";
+ pixel_y = -32;
+ req_access = null;
+ req_one_access = list(47,55)
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ autoclose = 0;
+ dir = 4;
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ frequency = 1379;
+ id_tag = "xenobio_airlock_interior";
+ locked = 1;
+ name = "Xenobiology Lab";
+ req_access = list(47,55);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/xenobiology)
+"bf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"bg" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"bh" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"bi" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm1)
+"bj" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/rnd/xenobiology/xenoflora)
+"bk" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/prison/cell_block/C)
+"bl" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/civilian)
+"bm" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/warden,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"bo" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/exploshuttle)
+"bq" = (
+/obj/structure/table/bench/steel,
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"br" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm1";
+ name = "Room 1";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm1)
+"bs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/port)
+"bt" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"bu" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"bv" = (
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/steel,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1
+ },
+/obj/item/weapon/storage/bag/trash,
+/obj/item/weapon/storage/bag/trash,
+/obj/item/weapon/storage/bag/trash,
+/obj/item/weapon/storage/bag/trash,
+/obj/item/weapon/storage/bag/trash,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"bw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/port)
+"bx" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"by" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"bz" = (
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"bA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bB" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"bD" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"bE" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"bF" = (
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/obj/structure/sign/painting/chapel_secure{
+ pixel_y = -32
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bG" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"bH" = (
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"bI" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"bJ" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/random/soap,
+/obj/random/soap,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/obj/item/clothing/under/bathrobe,
+/obj/item/clothing/under/bathrobe,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"bK" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -24;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"bL" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"bM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"bN" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"bP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"bQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"bR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/halls,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"bS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"bT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"bU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm7)
+"bV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"bW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/assembly/robotics)
+"bX" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red/corner,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"bY" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"bZ" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"cb" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"cd" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"ce" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"cf" = (
+/obj/structure/table/steel,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/surgical/cautery,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"cg" = (
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"ch" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"ci" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"cj" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "xenobiopen3";
+ name = "Pen 3 Containment";
+ pixel_x = -30;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen5";
+ name = "Pen 5 Containment";
+ pixel_x = -31;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "xenobiodiv3";
+ name = "Divider 3 Blast Doors";
+ pixel_x = -39;
+ req_access = list(55)
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"ck" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/directions/evac{
+ dir = 8;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"cl" = (
+/obj/structure/table/woodentable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/starboard)
+"cm" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit,
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"cn" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"co" = (
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"cp" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"cq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "researchwindowlockdown";
+ name = "Window Lockdown";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"cr" = (
+/obj/structure/cable/pink{
+ icon_state = "1-4"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"cs" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical/emt,
+/obj/item/clothing/suit/space/void/medical/emt,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/medical/emt,
+/obj/item/clothing/head/helmet/space/void/medical/emt,
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"ct" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"cu" = (
+/obj/machinery/shower{
+ pixel_y = 15
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"cv" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/scientist,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research)
+"cw" = (
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"cy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"cA" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"cB" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"cC" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"cD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"cE" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"cF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"cG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"cI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"cJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm2";
+ name = "Room 2";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm2)
+"cK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"cM" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/gunbox{
+ pixel_y = 6
+ },
+/obj/item/gunbox{
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"cN" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"cO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"cP" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/fennec/bridgette,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"cQ" = (
+/obj/machinery/mineral/unloading_machine,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"cS" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"cT" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"cU" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"cV" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"cW" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"cX" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"cY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Forensics Lab";
+ req_access = list(4);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/detectives_office)
+"cZ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/vending/cigarette,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"da" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"db" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"dc" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"dd" = (
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"de" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"df" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"dg" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "xenobiopen2";
+ name = "Pen 2 Containment";
+ pixel_x = 30;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen4";
+ name = "Pen 4 Containment";
+ pixel_x = 29;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "xenobiodiv2";
+ name = "Divider 2 Blast Doors";
+ pixel_x = 38;
+ pixel_y = -1;
+ req_access = list(55)
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"dh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"di" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"dj" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"dk" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"dl" = (
+/turf/simulated/wall/bay/brown,
+/area/stellardelight/deck1/mining)
+"dm" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/red/half,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"dn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"do" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "miningops"
+ },
+/obj/machinery/mineral/input,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"dp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"dq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ dir = 4;
+ id = "recoveryexit";
+ name = "Door Control";
+ pixel_x = -27;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"dr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"dt" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red/half,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"du" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"dv" = (
+/obj/structure/closet/walllocker_double/east,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"dw" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "16-0"
+ },
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor,
+/area/stellardelight/deck1/lowermed)
+"dx" = (
+/obj/structure/bookcase{
+ name = "bookcase (Adult)"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"dy" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"dA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"dB" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"dD" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"dF" = (
+/obj/machinery/computer/security/xenobio,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"dG" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"dH" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"dI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"dJ" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"dK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ dir = 8;
+ name = "Library";
+ stripe_color = "#3b3b3b"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/library)
+"dL" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"dN" = (
+/obj/structure/closet/secure_closet/hydroponics/sci{
+ req_access = list(77)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"dO" = (
+/obj/machinery/mineral/input,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"dP" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"dQ" = (
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"dR" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/obj/machinery/camera/network/security,
+/obj/machinery/computer/arcade,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"dS" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/pouch,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"dT" = (
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"dU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_boat_cockpit"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/stellardelight/deck1/miningshuttle)
+"dV" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"dW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/machinery/door/blast/angled_shutter/open{
+ dir = 4;
+ id = "dontlooktmyrobotpenis";
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ dir = 4;
+ name = "Robotics Desk";
+ req_access = list(7);
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/assembly/robotics)
+"dY" = (
+/obj/machinery/mineral/processing_unit,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"dZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/reagent_containers/dropper{
+ pixel_y = -4
+ },
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"ea" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"eb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"ec" = (
+/obj/structure/sign/deck1{
+ pixel_x = -32
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"ed" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"ee" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"ef" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit{
+ pixel_y = -5
+ },
+/obj/item/device/suit_cooling_unit{
+ pixel_y = -5
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"eh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/southleft{
+ id = "Cell B";
+ name = "Cell B";
+ req_access = list(2)
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/prison/cell_block/B)
+"ei" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"ej" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"ek" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/portaft)
+"el" = (
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/structure/closet/walllocker_double/east,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"em" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"en" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"eo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/low_wall/bay/reinforced/purple,
+/obj/structure/sign/xenobio{
+ plane = -34
+ },
+/turf/simulated/floor,
+/area/rnd/xenobiology)
+"ep" = (
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"eq" = (
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"er" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"es" = (
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"eu" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"ev" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"ew" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"ex" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"ey" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/purple,
+/area/stellardelight/deck1/pathfinder)
+"ez" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/weapon/reagent_containers/syringe,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"eA" = (
+/obj/effect/floor_decal/milspec/color/black,
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"eB" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"eC" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"eD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"eE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"eF" = (
+/turf/simulated/floor,
+/area/security/tactical)
+"eG" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"eH" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"eI" = (
+/obj/machinery/libraryscanner,
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"eJ" = (
+/obj/machinery/mineral/equipment_vendor/survey,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"eM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"eN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"eO" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"eP" = (
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"eQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"eR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"eS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "chapelofficelockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/black,
+/turf/simulated/floor,
+/area/chapel/office)
+"eT" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"eU" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"eV" = (
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"eX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"eY" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/machinery/alarm/angled,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"fa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#8c1d11";
+ fill_color = "#854a44";
+ name = "Warden's Office";
+ req_access = list(3);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/warden)
+"fb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"fc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/chapel/main)
+"fd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"ff" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "miningops"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"fg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/rnd/xenobiology)
+"fh" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"fi" = (
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"fj" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"fk" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"fl" = (
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"fm" = (
+/obj/machinery/smartfridge/secure/virology,
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"fn" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"fo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"fp" = (
+/obj/machinery/r_n_d/circuit_imprinter{
+ dir = 1
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research)
+"fq" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"fr" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm3)
+"fs" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"ft" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"fu" = (
+/obj/structure/bed/chair/sofa/corp/right,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"fv" = (
+/obj/random/slimecore,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"fw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "brigwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/prison/cell_block)
+"fx" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"fy" = (
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/stamp/ward,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 5
+ },
+/obj/item/weapon/pen,
+/obj/structure/table/steel_reinforced,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"fz" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/starboard)
+"fB" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/security,
+/obj/random/maintenance/research,
+/obj/random/contraband,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"fD" = (
+/obj/structure/closet/secure_closet/pathfinder,
+/obj/item/device/bluespaceradio/sd_prelinked,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"fE" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"fF" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"fG" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/gps/security{
+ pixel_y = 3
+ },
+/obj/item/device/gps/security{
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"fH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"fI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"fJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Mech Bay";
+ req_access = list(29,47);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/assembly/robotics)
+"fK" = (
+/obj/machinery/mineral/equipment_vendor,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"fL" = (
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"fM" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"fN" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"fO" = (
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#3d5e80"
+ },
+/area/stellardelight/deck1/aft)
+"fP" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"fQ" = (
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Exploration";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"fR" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"fS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"fT" = (
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"fV" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fX" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled,
+/obj/machinery/photocopier/faxmachine{
+ department = "Library Conference Room"
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"fZ" = (
+/obj/machinery/camera/network/civilian{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"ga" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"gb" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"gc" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"gd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/starboard)
+"ge" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"gf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm5";
+ name = "Room 5";
+ stripe_color = "#89bd66"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm5)
+"gg" = (
+/obj/effect/landmark/start/xenobio,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"gh" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"gi" = (
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"gj" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"gk" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"gl" = (
+/obj/machinery/camera/network/research/xenobio{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/xenobiology)
+"gm" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/painting/chapel_secure{
+ pixel_y = 32
+ },
+/obj/effect/landmark/start/chaplain,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"gn" = (
+/obj/structure/bed/chair/backed_red,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"go" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"gp" = (
+/obj/structure/closet/crate,
+/obj/machinery/camera/network/mining{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"gq" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"gr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"gs" = (
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/device/multitool,
+/obj/item/clothing/head/welding,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/structure/closet/walllocker_double/north,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"gt" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"gu" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"gw" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/mre,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"gx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"gy" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"gz" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"gC" = (
+/obj/structure/table/steel,
+/obj/item/device/sleevemate,
+/obj/item/device/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/machinery/alarm/angled,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"gD" = (
+/obj/structure/flora/pottedplant/decorative,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"gE" = (
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/weapon/nullrod,
+/obj/item/weapon/deck/tarot,
+/obj/item/device/retail_scanner/civilian,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"gF" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"gG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/portcent)
+"gH" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"gK" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"gL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled{
+ id = "GatewayShutter"
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"gM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Research and Development";
+ req_access = list(7);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/research)
+"gO" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ req_access = list(31)
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"gP" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"gQ" = (
+/turf/simulated/wall/bay/brown,
+/area/stellardelight/deck1/oreprocessing)
+"gS" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"gT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"gU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"gV" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"gW" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"gX" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/xenobiology)
+"gY" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"gZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"ha" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#323d80";
+ fill_color = "#313866";
+ id_tag = "rddoor";
+ name = "Server Room";
+ req_access = list(30);
+ stripe_color = "#5a19a8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/researchserver)
+"hb" = (
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/pink,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Security";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"hc" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"hd" = (
+/obj/structure/closet/secure_closet/scientist,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/researchequip)
+"he" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"hg" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"hi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/computer/shuttle_control/explore/stellardelight/mining{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"hj" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"hk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"hl" = (
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"hm" = (
+/obj/machinery/autolathe{
+ hacked = 1
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"ho" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"hp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/port)
+"hq" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"hr" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"hs" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"ht" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"hu" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = 7
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"hv" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"hw" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"hx" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "xenobio_airlock_control";
+ name = "Xenobiology Access Button";
+ pixel_y = 32;
+ req_access = null;
+ req_one_access = list(47,55)
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ autoclose = 0;
+ dir = 4;
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ frequency = 1379;
+ id_tag = "xenobio_airlock_exterior";
+ locked = 1;
+ name = "Xenobiology Lab";
+ req_access = list(47,55);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/xenobiology)
+"hy" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"hz" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"hA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"hB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southleft{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/obj/machinery/door/window/northleft{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/stellardelight/deck1/researchserver)
+"hC" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_y = -2
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_y = -8
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_y = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"hD" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"hE" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"hF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#8c1d11";
+ name = "Equipment Storage";
+ req_access = list(1);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/security_lockerroom)
+"hG" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/chapel{
+ dir = 8;
+ pixel_x = 32;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"hH" = (
+/obj/machinery/door/blast/angled{
+ id = "GatewayShutter"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"hI" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"hJ" = (
+/turf/simulated/wall/bay/white,
+/area/medical/virology)
+"hK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"hL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals3,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"hM" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"hN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"hO" = (
+/obj/item/weapon/weldingtool,
+/obj/item/clothing/glasses/welding,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/closet/walllocker_double/north,
+/obj/item/device/multitool,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"hP" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"hQ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"hR" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"hS" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/sign/department/biblio{
+ pixel_x = 32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"hT" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"hU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"hV" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"hW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"hX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"hY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "GatewayShutterW"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/gateway)
+"hZ" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/closet/bombcloset,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"ib" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"ic" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"id" = (
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"ie" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"if" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"ig" = (
+/obj/effect/floor_decal/industrial/loading,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"ih" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"ii" = (
+/obj/random/maintenance/security,
+/obj/random/medical,
+/obj/structure/table/rack,
+/obj/random/maintenance/security,
+/obj/random/maintenance,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"ik" = (
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"il" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"im" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"in" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"io" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"ip" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"iq" = (
+/turf/simulated/floor/wood,
+/area/library)
+"ir" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"is" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"it" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"iv" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"iw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"ix" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"iy" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"iz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/library)
+"iA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"iB" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"iC" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/xenobiology)
+"iD" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"iE" = (
+/obj/structure/sign/painting/library_private{
+ pixel_x = -32
+ },
+/obj/structure/sign/painting/library_private{
+ pixel_y = -32
+ },
+/obj/item/weapon/storage/briefcase,
+/obj/item/weapon/storage/briefcase,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/library)
+"iF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ name = "Custodial Closet";
+ req_access = list(26);
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/janitor)
+"iG" = (
+/obj/structure/closet/wardrobe/virology_white,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled,
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"iH" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/effect/shuttle_landmark/shuttle_initializer/exploration,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"iI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"iJ" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"iK" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/paper_bin{
+ pixel_y = 7
+ },
+/obj/item/weapon/pen{
+ pixel_y = 6
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"iL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"iM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "maintenance access";
+ req_one_access = null;
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"iN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/chapel/main)
+"iO" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"iQ" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"iS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"iT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"iU" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"iV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/rnd/xenobiology/xenoflora)
+"iW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"iY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "explodocker_bay";
+ pixel_x = -24
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"iZ" = (
+/obj/effect/floor_decal/milspec/color/red,
+/obj/machinery/alarm/angled,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"ja" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"jb" = (
+/obj/machinery/door/blast/multi_tile/three_tile_ver{
+ id = "xenospace2"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"jc" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/obj/effect/floor_decal/milspec/color/red/half,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"jd" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"jf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/halls,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"jg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"jh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"ji" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"jj" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/stellardelight/deck1/researchserver)
+"jk" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 24;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"jl" = (
+/obj/structure/table/steel,
+/obj/item/device/retail_scanner/security,
+/obj/item/device/taperecorder,
+/obj/item/weapon/storage/box/evidence,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"jm" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"jn" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"jo" = (
+/obj/machinery/button/crematorium{
+ id = "crematorium";
+ pixel_x = 25;
+ req_access = list();
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"jp" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"jq" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/turf/simulated/floor/wood,
+/area/library)
+"jr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "brigwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/prison/cell_block/B)
+"js" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"jt" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"ju" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 5";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 4";
+ req_access = list(55)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen4";
+ name = "Pen 4 Blast Doors"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"jv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"jw" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"jx" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen1";
+ name = "Pen 1 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"jy" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "securitylockdown"
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"jz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm3)
+"jA" = (
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"jB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"jC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"jD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"jF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"jG" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"jH" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"jI" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"jJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"jK" = (
+/obj/machinery/door/window/southleft{
+ dir = 8;
+ name = "Library Desk Door";
+ req_access = list(37)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "librarywindowlockdown";
+ name = "Window Lockdown";
+ pixel_y = 25;
+ req_access = null
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"jL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/library)
+"jN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"jO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Cargo Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/cargo)
+"jP" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"jQ" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"jR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"jS" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"jV" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"jW" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/landmark/start/pilot,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"jY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"jZ" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"ka" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"kb" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"kc" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Civilian Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"kd" = (
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"ke" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"kf" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"kg" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"kh" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"kj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/sign/directions/janitor{
+ dir = 8;
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"kk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"km" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"kn" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/starboard)
+"ko" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"kp" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"kq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"kr" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Research Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"ks" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"kt" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ku" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"kv" = (
+/obj/structure/sign/deck1{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"kw" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/wood,
+/area/library)
+"kx" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"ky" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"kz" = (
+/obj/machinery/computer/message_monitor{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"kA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"kB" = (
+/turf/simulated/wall/bay/r_wall/black,
+/area/maintenance/security_port)
+"kC" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"kE" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"kG" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"kH" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"kI" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 3";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 3";
+ req_access = list(55)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen3";
+ name = "Pen 3 Blast Doors"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"kJ" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"kK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"kL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"kM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"kN" = (
+/obj/machinery/door/blast/multi_tile/three_tile_ver{
+ id = "xenospace4"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"kO" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"kP" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/rnd/storage)
+"kQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"kS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"kT" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera/network/security,
+/obj/machinery/computer/arcade,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"kU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"kW" = (
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"kY" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"la" = (
+/obj/machinery/smartfridge/secure/extract,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"lb" = (
+/obj/machinery/door/blast/angled{
+ id = "xenobiodiv3";
+ name = "Divider 3 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"lc" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"ld" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"le" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"lf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"lg" = (
+/obj/effect/shuttle_landmark/premade/sd/deck1/starboard,
+/turf/space,
+/area/space)
+"lh" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"li" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"lk" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"ll" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"lm" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"ln" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 1";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 1";
+ req_access = list(55)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen1";
+ name = "Pen 1 Blast Doors"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"lo" = (
+/obj/structure/table/woodentable,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/taperecorder,
+/turf/simulated/floor/carpet,
+/area/library)
+"lp" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"lq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Security Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/security)
+"lr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/crate/trashcart,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"ls" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/directions/dorms{
+ dir = 6;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/science{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ name = "\improper Exploration Department";
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/janitor{
+ pixel_x = -32;
+ pixel_y = -12
+ },
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"lt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"lu" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/storage/box/backup_kit,
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"lv" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/port)
+"lw" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"lx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"ly" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"lz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9fccc7";
+ fill_color = "#333333";
+ name = "Pilot Equipment";
+ req_access = list(67);
+ stripe_color = "#ffffff"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/pilot)
+"lA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled,
+/obj/structure/ore_box,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"lB" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/firealarm/angled,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"lC" = (
+/obj/item/weapon/bedsheet/bluedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"lD" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"lF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"lG" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"lH" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"lI" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Atmospherics Subgrid";
+ name_tag = "Atmospherics Subgrid"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"lJ" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"lK" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 24;
+ plane = -34
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenospace2";
+ name = "2 Space Door";
+ pixel_x = 10;
+ pixel_y = 21;
+ req_access = list(55)
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"lM" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/department/biblio{
+ pixel_x = 32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"lN" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"lO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#333333";
+ name = "Exploration Equipment Room";
+ req_access = null;
+ req_one_access = list(19,43,67);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/exploequipment)
+"lP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"lQ" = (
+/obj/structure/mirror{
+ pixel_y = 38
+ },
+/obj/structure/sink{
+ pixel_y = 20
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"lR" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"lS" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"lT" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"lU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"lV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"lW" = (
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/xenoflora/full,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"lX" = (
+/obj/structure/closet/secure_closet/paramedic,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"lY" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"lZ" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 4
+ },
+/obj/item/device/radio{
+ anchored = 1;
+ canhear_range = 7;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ name = "Virology Emergency Phone";
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ dir = 4;
+ id = "virologyquar";
+ name = "Virology Emergency Lockdown Control";
+ pixel_x = -28;
+ pixel_y = 5;
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"ma" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance/research,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"mb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"mc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"md" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"me" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/library)
+"mf" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"mg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/detective,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"mh" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"mi" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"mj" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -24;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"mk" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ml" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"mm" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"mn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/orange/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"mo" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_x = -30
+ },
+/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman,
+/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor,
+/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1,
+/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain,
+/obj/item/weapon/book/bundle/custom_library/fiction/ghostship,
+/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver,
+/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,
+/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday,
+/obj/item/weapon/book/bundle/custom_library/fiction/raissue142,
+/obj/item/weapon/book/bundle/custom_library/fiction/raissue147,
+/obj/item/weapon/book/bundle/custom_library/fiction/silence,
+/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,
+/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke,
+/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath,
+/obj/item/weapon/book/custom_library/fiction/myrock,
+/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones,
+/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,
+/turf/simulated/floor/wood,
+/area/library)
+"mr" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"mt" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"mu" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"mv" = (
+/obj/structure/janitorialcart,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"mw" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"mx" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"my" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"mz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"mA" = (
+/obj/structure/sign/deck1{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"mB" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"mC" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink,
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"mD" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"mE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"mF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"mH" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"mI" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"mJ" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"mK" = (
+/obj/structure/table/sifwooden_reinforced,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"mL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"mM" = (
+/turf/simulated/wall/bay/steel,
+/area/janitor)
+"mN" = (
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30
+ },
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"mO" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"mP" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"mQ" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"mR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Recovery Room";
+ req_access = list(6);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/patient_wing)
+"mS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/starboard)
+"mU" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"mV" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"mW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ dir = 8;
+ door_color = "#333333";
+ name = "Exploration";
+ req_one_access = list(19,43,67);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/explobriefing)
+"mX" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"mY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"mZ" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/machinery/atmospherics/pipe/simple/hidden/purple,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"na" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"nb" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"nc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"nd" = (
+/obj/structure/closet/secure_closet/sar,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"ne" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Exploration Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"nf" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm2)
+"ng" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"nh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"ni" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/security/tactical)
+"nj" = (
+/obj/structure/table/sifwooden_reinforced,
+/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"nk" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/explobriefing)
+"nl" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Exploration Subgrid";
+ name_tag = "Exploration Subgrid"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"nm" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"nn" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"no" = (
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"nq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Security Processing";
+ req_access = list(63);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/security_processing)
+"nt" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"nu" = (
+/obj/machinery/transhuman/synthprinter,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"nv" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"nw" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"nx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "Morgue";
+ req_access = list(6);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/morgue)
+"ny" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "explowindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/explobriefing)
+"nz" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"nA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"nB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"nD" = (
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"nE" = (
+/obj/machinery/computer/rdconsole/core{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research)
+"nF" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"nG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/department/medbay{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"nH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"nI" = (
+/obj/effect/floor_decal/milspec/color/emerald,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"nJ" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/port)
+"nK" = (
+/turf/simulated/wall/rshull,
+/area/stellardelight/deck1/miningshuttle)
+"nL" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"nM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/chapel/chapel_morgue)
+"nN" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"nO" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"nP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"nQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"nS" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"nT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"nV" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit/powder,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"nW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"nX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"nY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"nZ" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"oa" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"ob" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"oc" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/aft)
+"od" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Civilian Subgrid";
+ name_tag = "Civilian Subgrid"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"oe" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"of" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"oh" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ dir = 4;
+ id = "resleeveexit";
+ name = "Door Control";
+ pixel_x = -27;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"oi" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/rnd/xenobiology)
+"ok" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Exploration";
+ sortType = "Exploration"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"ol" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"om" = (
+/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"on" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"oo" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"op" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"oq" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"or" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen6";
+ name = "Pen 6 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"os" = (
+/obj/structure/sign/department/miner_dock{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"ou" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"ov" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"ox" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"oy" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals3,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"oz" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/research)
+"oA" = (
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "dorm4";
+ name = "Room 4 Lock";
+ pixel_y = -22;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"oB" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"oC" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"oD" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"oE" = (
+/turf/simulated/wall/bay/white,
+/area/medical/morgue)
+"oF" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"oG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"oH" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ name = "package tagger - Void";
+ sort_tag = "Void"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/department/virology{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"oI" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"oJ" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/mining,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/mining,
+/obj/item/weapon/mining_scanner,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"oK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/library)
+"oL" = (
+/obj/structure/table/steel,
+/obj/item/device/integrated_circuit_printer,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"oM" = (
+/obj/machinery/transhuman/resleever,
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"oO" = (
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"oQ" = (
+/obj/machinery/vending/wardrobe/secdrobe,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"oR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark/start/pilot,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"oS" = (
+/obj/structure/table/steel,
+/obj/item/device/electronic_assembly/large/default,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"oT" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/bathrobe,
+/obj/item/clothing/under/bathrobe,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"oU" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"oW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"oX" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/storage)
+"oY" = (
+/obj/machinery/organ_printer/flesh,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"oZ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"pa" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/aft)
+"pb" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"pc" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"pd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -64
+ },
+/obj/effect/landmark/start/pf,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"pe" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"pf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"pg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/starboard)
+"ph" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"pi" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"pj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"pk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"pl" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/tactical)
+"pm" = (
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "dorm6";
+ name = "Room 6 Lock";
+ pixel_y = -22;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"pn" = (
+/obj/structure/cable/pink{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"pp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "chapelwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/black,
+/turf/simulated/floor,
+/area/chapel/main)
+"pq" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"pr" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/orange/half,
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"ps" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Equipment Room";
+ req_access = list(7);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/research)
+"pt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Toxins Storage";
+ req_access = list(8);
+ stripe_color = "#5a19a8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/storage)
+"pu" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"pv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"pw" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"px" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/computer/guestpass{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"py" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"pz" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"pA" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"pC" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/stellardelight/deck1/exploequipment)
+"pD" = (
+/obj/structure/table/woodentable,
+/obj/item/device/tvcamera,
+/obj/structure/sign/painting/library_private{
+ pixel_y = -32
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"pE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/full,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"pF" = (
+/turf/simulated/wall/bay/purple,
+/area/stellardelight/deck1/researchequip)
+"pG" = (
+/obj/machinery/suit_cycler/exploration,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"pH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#a6753d";
+ name = "Mining";
+ req_access = list(31);
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/mining)
+"pI" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "ex_airpump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "ex_airlock";
+ pixel_y = 24;
+ req_one_access = list(13);
+ tag_airpump = "ex_airpump";
+ tag_chamber_sensor = "ex_sensor";
+ tag_exterior_door = "ex_exterior";
+ tag_interior_door = "ex_interior"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"pJ" = (
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"pK" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"pL" = (
+/obj/machinery/door/window/brigdoor/southright{
+ req_access = list(77);
+ req_one_access = newlist()
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"pM" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"pN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start/janitor,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"pO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Cargo Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/cargo)
+"pP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"pQ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/rnd/xenobiology/xenoflora_storage)
+"pR" = (
+/turf/simulated/wall/bay/brown,
+/area/stellardelight/deck1/miningequipment)
+"pT" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pU" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/stairs_up{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 12
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"pV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"pX" = (
+/obj/machinery/shower{
+ dir = 1;
+ pixel_y = -2
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/virology)
+"pY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/detective,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"pZ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"qa" = (
+/obj/machinery/suit_cycler/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"qb" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "miningops"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"qd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"qe" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"qg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "miningdocker_bay";
+ pixel_x = 24
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"qh" = (
+/turf/simulated/wall/bay/white,
+/area/medical/exam_room)
+"qj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Library";
+ sortType = "Library"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/starboard)
+"qk" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"ql" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Exploration Briefing"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"qm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"qn" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"qo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"qp" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"qq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"qs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/orange/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"qu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"qv" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/deck1{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"qw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm4";
+ name = "Room 4";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm4)
+"qx" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"qy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/directions/evac{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"qA" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/stellardelight/deck1/researchserver)
+"qB" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"qD" = (
+/turf/simulated/wall/bay/white,
+/area/stellardelight/deck1/paramedic)
+"qE" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/shower)
+"qF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"qG" = (
+/obj/machinery/door_timer/cell_3{
+ id = "Cell C";
+ name = "Cell C";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"qH" = (
+/obj/item/modular_computer/console/preset/civilian,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"qI" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/evidence,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"qJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#8c1d11";
+ name = "maintenance access";
+ req_one_access = list(38,63);
+ stripe_color = "#8c1d11"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/tactical)
+"qK" = (
+/obj/structure/bed/chair/sofa/corp/left,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"qL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"qM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"qN" = (
+/obj/structure/sign/painting/chapel_secure{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"qO" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"qP" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"qQ" = (
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "chapelwindowlockdown";
+ name = "Window Lockdown";
+ pixel_x = -9;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"qR" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"qS" = (
+/obj/machinery/button/remote/blast_door{
+ id = "brigwindowlockdown";
+ name = "Window Lockdown";
+ pixel_y = 25;
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"qT" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/item/device/radio/beacon,
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"qU" = (
+/obj/machinery/mineral/stacking_machine,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"qV" = (
+/obj/machinery/suit_cycler/mining,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"qW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Resleeving Lab";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/resleeving)
+"qY" = (
+/obj/effect/floor_decal/milspec/color/orange/half,
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"qZ" = (
+/obj/structure/table/steel,
+/obj/item/device/retail_scanner/security,
+/obj/item/device/retail_scanner/security,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"ra" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/exploration)
+"rb" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "GatewayShutterW";
+ name = "EVA Shutter";
+ pixel_x = 23;
+ req_one_access = list(18,19,43,67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"rc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"rd" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"re" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"rf" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"rg" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"rh" = (
+/obj/structure/table/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 3
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"ri" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"rj" = (
+/obj/machinery/camera/network/research,
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"rk" = (
+/obj/structure/bed/chair/backed_red,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"rl" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"rm" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"rn" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/mining,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/mining,
+/obj/item/weapon/mining_scanner,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/mining{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"ro" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"rp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Private Study";
+ req_access = list(37)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/library)
+"rr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/library)
+"rs" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Security Subgrid";
+ name_tag = "Security Subgrid"
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"ru" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/assembly/robotics)
+"rv" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start/fieldmedic,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"rw" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"ry" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/blast/angled_shutter/open{
+ dir = 4;
+ id = "dontlooktmyrobotpenis";
+ name = "Privacy Shutters"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/assembly/robotics)
+"rz" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/walllocker_double/east,
+/obj/item/device/defib_kit/jumper_kit,
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/weapon/book/manual/robotics_cyborgs,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/assembly/robotics)
+"rA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Civilian Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/civilian)
+"rB" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"rC" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"rD" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"rF" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/armoury)
+"rG" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"rH" = (
+/obj/structure/closet/l3closet/security,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"rI" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/mining,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/mining,
+/obj/item/weapon/mining_scanner,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"rJ" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"rK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"rL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ name = "Morgue";
+ req_access = list(6);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/morgue)
+"rM" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"rN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"rO" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"rP" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"rQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "GatewayShutterE"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/gateway)
+"rS" = (
+/obj/structure/closet/walllocker_double/east{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"rT" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"rV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"rW" = (
+/obj/machinery/button/remote/airlock{
+ id = "dorm8";
+ name = "Room 8 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"rX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"rY" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp{
+ pixel_x = -14;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "chapelofficelockdown";
+ name = "Window Lockdown";
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"rZ" = (
+/obj/machinery/door/airlock/angled_bay/standard/color/common{
+ dir = 4;
+ id_tag = "bathroomstall1";
+ name = "Toilet 1"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/toilet)
+"sa" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"sb" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/directions/dorms{
+ dir = 10;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/science{
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/janitor{
+ dir = 8;
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"sc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"sd" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"se" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"sf" = (
+/obj/machinery/disease2/isolator,
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/machinery/alarm/angled,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"sg" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"sh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sign/department/medbay{
+ name = "RESLEEVING";
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"si" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"sj" = (
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"sl" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/machinery/alarm/angled,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"sm" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"sn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"so" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"sp" = (
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"sq" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"sr" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat{
+ ammo_type = /obj/item/ammo_casing/a12g/beanbag;
+ desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
+ name = "warden's shotgun"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/item/weapon/gun/energy/sizegun,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"ss" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/secure_closet/medical_wall/anesthetics{
+ pixel_x = 32;
+ req_access = list();
+ req_one_access = list(29,45)
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"st" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/mining)
+"su" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"sv" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/security/armoury)
+"sx" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"sy" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"sz" = (
+/obj/structure/sign/deck1{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"sA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"sB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"sC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ door_color = "#333333";
+ name = "Exploration";
+ req_one_access = null;
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/exploration)
+"sD" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"sE" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"sF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"sG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"sH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"sI" = (
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Virology Isolation Room One";
+ req_one_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/virology)
+"sJ" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"sK" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"sL" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"sM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"sN" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"sO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/landmark/start/fieldmedic,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"sP" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Security Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"sQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"sR" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/mining)
+"sS" = (
+/obj/machinery/recharge_station,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"sT" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"sU" = (
+/obj/structure/closet/coffin,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"sV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"sW" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "ex_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "ex_airlock";
+ name = "exterior access button";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/exploration)
+"sX" = (
+/obj/machinery/camera/network/research/xenobio{
+ dir = 1
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"sY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"sZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"ta" = (
+/turf/simulated/wall/bay/white,
+/area/stellardelight/deck1/lowermed)
+"tb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"td" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/portcent)
+"te" = (
+/obj/machinery/suit_cycler/exploration,
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"tf" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/researchequip)
+"tg" = (
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"th" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/effect/floor_decal/milspec/color/black,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ti" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"tj" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"tl" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/mob/living/simple_mob/animal/passive/mimepet/gregory,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"tm" = (
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/passive/tindalos/twigs,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"tn" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"to" = (
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"tp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "security_airlock";
+ name = "interior access button";
+ pixel_x = -32;
+ req_access = list(1)
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1379;
+ id_tag = "security_interior";
+ locked = 1;
+ name = "Security Airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/tactical)
+"tq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Circuitry Workshop";
+ req_access = list(7);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/workshop)
+"tr" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"ts" = (
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"tt" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"tu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/purple,
+/turf/simulated/floor,
+/area/stellardelight/deck1/exploequipment)
+"tv" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"tw" = (
+/obj/structure/sign/department/sci{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"tx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"tz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"tA" = (
+/obj/machinery/camera/network/research/xenobio{
+ dir = 5;
+ network = list("Xenobiology")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"tB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"tC" = (
+/turf/simulated/wall/bay/r_wall/black,
+/area/security/armoury)
+"tD" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"tE" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"tF" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"tG" = (
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"tH" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"tI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/department/rnd{
+ pixel_y = 32
+ },
+/obj/machinery/door/blast/angled_shutter/open{
+ dir = 4;
+ id = "rndshutters";
+ name = "Privacy Shutters"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/rnd/research)
+"tJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"tK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/conveyor_switch/oneway{
+ id = "bodieshitthefloor";
+ pixel_x = -12;
+ pixel_y = 20
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"tL" = (
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#3d5e80"
+ },
+/area/chapel/chapel_morgue)
+"tM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"tN" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/security,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"tO" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/pen,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"tP" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"tR" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"tS" = (
+/obj/machinery/papershredder,
+/obj/machinery/camera/network/security,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"tT" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"tU" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"tW" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"tX" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -24;
+ pixel_y = -25
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"tY" = (
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"tZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"ua" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ub" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_y = -3
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"uc" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"ue" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"uf" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"ug" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"uh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_boat_cockpit"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/stellardelight/deck1/exploshuttle)
+"ui" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"uj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"ul" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"um" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/atmospherics)
+"un" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"uo" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"uq" = (
+/turf/space,
+/area/space)
+"ur" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Brig";
+ req_access = null;
+ req_one_access = list(38,63);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/lobby)
+"us" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/medical)
+"ut" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"uu" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"uv" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"ux" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#333333";
+ fill_color = "#757575";
+ name = "Pathfinder";
+ req_access = list(44);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/pathfinder)
+"uy" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/machinery/camera/network/security,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"uz" = (
+/obj/structure/table/reinforced,
+/obj/item/device/slime_scanner,
+/obj/item/device/slime_scanner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/light,
+/obj/item/weapon/storage/box/syringes,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"uA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"uB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "explowindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/exploration)
+"uC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"uD" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"uF" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/exploration)
+"uG" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"uH" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"uI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"uJ" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"uL" = (
+/obj/effect/floor_decal/chapel,
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uM" = (
+/obj/structure/closet/excavation,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"uN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"uP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"uQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"uR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/angled_shutter/open{
+ dir = 4;
+ id = "rndshutters";
+ name = "Privacy Shutters"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/rnd/research)
+"uT" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"uU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Research and Development";
+ req_access = list(7);
+ stripe_color = "#5a19a8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/workshop)
+"uV" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -32;
+ req_access = list(39)
+ },
+/obj/machinery/door/blast/angled/open{
+ id = "virologyquar";
+ name = "Virology Emergency Quarantine Blast Doors"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ autoclose = 0;
+ door_color = "#ffffff";
+ frequency = 1379;
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access = list(39);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/virology)
+"uW" = (
+/turf/simulated/wall/bay/purple,
+/area/stellardelight/deck1/exploration)
+"uX" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"uY" = (
+/obj/structure/closet/radiation,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"uZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"va" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"vb" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"vc" = (
+/obj/machinery/vending/security,
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"vd" = (
+/obj/structure/mirror{
+ pixel_y = 38
+ },
+/obj/structure/sink{
+ pixel_y = 20
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"ve" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"vf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/aft)
+"vg" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"vh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"vi" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"vj" = (
+/obj/machinery/recharge_station,
+/obj/machinery/camera/network/exploration,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"vk" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"vm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/toilet)
+"vn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"vo" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"vp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"vq" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"vr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"vs" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"vu" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm5)
+"vv" = (
+/obj/effect/landmark/start/scientist,
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"vw" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"vx" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/armoury)
+"vy" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/explobriefing)
+"vz" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"vA" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"vB" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"vC" = (
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"vD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"vE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"vF" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"vG" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"vH" = (
+/obj/machinery/button/remote/blast_door{
+ id = "GatewayShutterE";
+ name = "EVA Shutter";
+ pixel_x = 5;
+ pixel_y = 24;
+ req_one_access = list(18,19,43,67)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "GatewayShutterW";
+ name = "EVA Shutter";
+ pixel_x = -5;
+ pixel_y = 24;
+ req_access = null;
+ req_one_access = list(18,19,43,67)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"vI" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/storage)
+"vJ" = (
+/obj/machinery/mineral/stacking_unit_console{
+ density = 0
+ },
+/turf/simulated/wall/bay/brown,
+/area/stellardelight/deck1/oreprocessing)
+"vK" = (
+/obj/machinery/requests_console{
+ department = "Exploration";
+ name = "Exploration Requests Console";
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"vL" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"vM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"vN" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"vP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"vQ" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"vT" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"vU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"vV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"vW" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"vX" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"vY" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/bluegrid,
+/area/assembly/robotics)
+"vZ" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"wa" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"wb" = (
+/obj/structure/sign/painting/chapel_secure{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"wc" = (
+/obj/machinery/firealarm/angled,
+/obj/machinery/mecha_part_fabricator/pros,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"we" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/nifsofts_security,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = -29
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"wf" = (
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"wg" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"wh" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"wi" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"wj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"wk" = (
+/obj/machinery/requests_console{
+ department = "Exploration";
+ name = "Exploration Requests Console";
+ pixel_x = -30
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"wm" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"wn" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/starboard)
+"wo" = (
+/obj/structure/table/bench/marble,
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/obj/effect/landmark/start/paramedic,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"wp" = (
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"wq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"ws" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"wt" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/item/weapon/tank/oxygen,
+/obj/item/weapon/tank/oxygen,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"wu" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"wv" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen2";
+ name = "Pen 2 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"ww" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"wx" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"wy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"wz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/library)
+"wA" = (
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"wB" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"wC" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"wE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm1)
+"wF" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/cargo)
+"wG" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"wI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/seed_storage/xenobotany,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"wJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"wK" = (
+/obj/machinery/computer/rdconsole/robotics,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"wL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"wM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"wN" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"wO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"wP" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"wQ" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"wR" = (
+/obj/machinery/computer/diseasesplicer{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"wS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm8";
+ name = "Room 8";
+ stripe_color = "#89bd66"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm8)
+"wT" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"wU" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"wV" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"wW" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"wX" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/security/tactical)
+"wY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"wZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"xa" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"xb" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/exploration)
+"xc" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"xd" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"xf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/stellardelight/deck1/miningequipment)
+"xg" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/pen{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/computer/guestpass{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"xh" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"xi" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"xj" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"xk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"xl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/steel,
+/obj/random/maintenance,
+/obj/random/maintenance/research,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/contraband,
+/obj/random/action_figure,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"xm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"xn" = (
+/obj/machinery/firealarm/angled,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"xq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"xs" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"xt" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/xenobio,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"xu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"xv" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"xw" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/item/weapon/disk/nifsoft/compliance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"xx" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/starboard)
+"xy" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/portfore)
+"xz" = (
+/obj/machinery/requests_console/preset/research{
+ pixel_y = 30
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "rndshutters";
+ name = "Privacy Shutter Control";
+ pixel_x = -15;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"xA" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"xB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"xD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"xE" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"xF" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Research";
+ sortType = "Research"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"xG" = (
+/obj/machinery/chem_master,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"xH" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"xI" = (
+/obj/machinery/door/window/eastright{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"xJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_boat_cockpit"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/stellardelight/deck1/miningshuttle)
+"xK" = (
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"xL" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"xM" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "ex_airpump"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"xN" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"xO" = (
+/obj/machinery/computer/shuttle_control/explore/stellardelight/mining,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"xP" = (
+/obj/structure/sign/department/morgue{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"xQ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"xR" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"xS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/shower)
+"xT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"xU" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"xV" = (
+/turf/simulated/floor/carpet,
+/area/library)
+"xW" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/security)
+"xX" = (
+/obj/structure/table/reinforced,
+/obj/item/device/uv_light,
+/obj/item/weapon/reagent_containers/spray/luminol,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"xZ" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"ya" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"yb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_boat_cockpit"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/stellardelight/deck1/exploshuttle)
+"yc" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ req_access = list(19,43,67)
+ },
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"yd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"ye" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/prison/cell_block)
+"yf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"yg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"yi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"yj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"yk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/multi_tile/two_tile_ver{
+ id = "armorydoor";
+ name = "Armory"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"yl" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"ym" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/rnd/xenobiology)
+"yn" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"yo" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"yp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "maintenance access";
+ req_one_access = null;
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"yq" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/device/retail_scanner/science,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"yr" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"ys" = (
+/obj/machinery/requests_console{
+ department = "Exploration";
+ name = "Exploration Requests Console";
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"yt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/computer/guestpass{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"yu" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"yv" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"yw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"yx" = (
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"yy" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"yz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"yB" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell C"
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"yC" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"yD" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/storage)
+"yE" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"yF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"yG" = (
+/obj/structure/cable/pink{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"yH" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"yI" = (
+/obj/machinery/transhuman/resleever,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"yJ" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"yK" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"yL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"yM" = (
+/obj/machinery/mech_recharger,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"yN" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"yO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/halls,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"yP" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"yQ" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8;
+ icon_state = "freezer_1";
+ power_setting = 20;
+ set_temperature = 73;
+ use_power = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"yR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"yS" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"yT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"yU" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/weapon/storage/belt/utility,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"yV" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"yX" = (
+/obj/effect/shuttle_landmark/premade/sd/deck1/aft,
+/turf/space,
+/area/space)
+"yY" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/stellardelight/deck1/researchserver)
+"yZ" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"za" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"zb" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"zc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"zd" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "ex_interior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "ex_airlock";
+ name = "interior access button";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/exploration)
+"ze" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"zf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"zg" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"zh" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"zj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"zk" = (
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"zl" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"zm" = (
+/obj/structure/closet/walllocker_double/east,
+/obj/item/device/camera,
+/obj/item/device/universal_translator,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"zn" = (
+/obj/structure/closet/secure_closet/paramedic,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"zo" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/obj/effect/landmark/start/librarian,
+/turf/simulated/floor/carpet,
+/area/library)
+"zp" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"zq" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"zr" = (
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"zs" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"zt" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"zv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"zw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Medical Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/medical)
+"zx" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"zy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"zz" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"zA" = (
+/obj/structure/closet/walllocker_double/north,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"zB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/security_port)
+"zC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"zD" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/warden)
+"zE" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/box/stunshells{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/flashshells{
+ pixel_x = 1
+ },
+/obj/item/weapon/storage/box/beanbags{
+ pixel_x = 4;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 6
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"zG" = (
+/obj/machinery/autolathe{
+ dir = 1;
+ hacked = 1
+ },
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/assembly/robotics)
+"zH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"zI" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen5";
+ name = "Pen 5 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"zK" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"zL" = (
+/obj/machinery/firealarm/angled,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"zM" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/port)
+"zN" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = 5;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"zO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/exploration,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"zP" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"zQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"zR" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"zS" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"zT" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 28
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"zU" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"zV" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "miningdocker";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"zW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"zX" = (
+/obj/machinery/r_n_d/server/robotics,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/stellardelight/deck1/researchserver)
+"zY" = (
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"zZ" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Aa" = (
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"Ab" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Ac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Ad" = (
+/obj/machinery/camera/network/research/xenobio{
+ dir = 9;
+ network = list("Xenobiology")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Ae" = (
+/obj/structure/bed/chair/sofa/corp/right,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"Af" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "xenospace4";
+ name = "4 Space Door";
+ pixel_x = 5;
+ pixel_y = 2;
+ req_access = list(55)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Ag" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Ah" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Ai" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen3";
+ name = "Pen 3 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Aj" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck1/pilot)
+"Ak" = (
+/turf/simulated/wall/bay/r_wall/black,
+/area/chapel/chapel_morgue)
+"Am" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"An" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/fieldmedic,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Ao" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#8c1d11";
+ name = "Equipment Storage";
+ req_access = list(1);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/security_lockerroom)
+"Ap" = (
+/obj/structure/table/bench/sifwooden/padded,
+/obj/effect/landmark/start/pilot,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"Aq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"Ar" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"As" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"At" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"Au" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Av" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Aw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"Ax" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"Ay" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"AB" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -24;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"AC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"AD" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"AE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"AF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"AG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Janitor";
+ sortType = "Janitor"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/port)
+"AH" = (
+/obj/structure/bookcase{
+ name = "bookcase (Non-Fiction)"
+ },
+/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire,
+/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem,
+/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov,
+/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs,
+/turf/simulated/floor/wood,
+/area/library)
+"AI" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"AJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#2e2e2e";
+ name = "Chapel"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/chapel/main)
+"AK" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/obj/item/clothing/mask/breath,
+/obj/item/weapon/rig/eva/equipped,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"AL" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"AM" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"AN" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/library)
+"AO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"AP" = (
+/obj/item/weapon/bedsheet/bluedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"AQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"AR" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"AS" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"AT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm5)
+"AV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"AW" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"AX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/milspec/color/black,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"AY" = (
+/turf/simulated/wall/bay/r_wall/black,
+/area/chapel/main)
+"AZ" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Ba" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Bb" = (
+/obj/structure/table/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"Bd" = (
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Be" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"Bf" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"Bi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"Bj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"Bk" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Bl" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"Bm" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen3";
+ name = "Pen 3 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Bn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"Bo" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management";
+ name = "note to science staff"
+ },
+/obj/item/device/robotanalyzer,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/device/mmi/digital/posibrain,
+/obj/item/device/mmi,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/assembly/robotics)
+"Br" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"Bs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Equipment Storage";
+ req_access = list(1);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/security_lockerroom)
+"Bt" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"Bu" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Bv" = (
+/obj/structure/table/reinforced,
+/obj/item/device/reagent_scanner,
+/obj/item/device/mass_spectrometer/adv,
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Bw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"Bx" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/wood,
+/area/library)
+"By" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"Bz" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start/janitor,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"BA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"BB" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"BC" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"BD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#333333";
+ name = "Shuttle Bay";
+ req_one_access = null;
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/exploration)
+"BE" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"BF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Exam Room";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/exam_room)
+"BG" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"BH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"BI" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"BJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"BK" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"BL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"BM" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"BN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Cargo Subgrid";
+ name_tag = "Cargo Subgrid"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"BO" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"BP" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"BQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"BR" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"BS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/filingcabinet,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"BT" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"BU" = (
+/turf/simulated/wall/bay/black,
+/area/chapel/main)
+"BV" = (
+/obj/machinery/disease2/incubator,
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_y = 27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"BW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"BX" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"BY" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"BZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Ca" = (
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Cb" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 25;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"Cc" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Ce" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/rnd/xenobiology/xenoflora_storage)
+"Cf" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Cg" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Ch" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Ci" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Cj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Ck" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/library)
+"Cl" = (
+/obj/structure/table/rack/shelf,
+/obj/item/stack/marker_beacon/thirty{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/stack/marker_beacon/thirty{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/device/gps{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/obj/item/device/gps{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/obj/item/device/gps{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/device/gps{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/exploration{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck1/explobriefing)
+"Cm" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Cn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Co" = (
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"Cp" = (
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"Cr" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"Cs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Ct" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/assembly/robotics)
+"Cv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Cw" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Cx" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Cz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"CA" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"CB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"CC" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"CD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "brigwindowlockdown"
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/security/security_equiptment_storage)
+"CE" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "securitylockdown";
+ name = "Brig Lockdown";
+ pixel_x = 26;
+ pixel_y = -7
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "armorydoor";
+ name = "Armory";
+ pixel_x = 26;
+ pixel_y = 9
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "wardenoffice";
+ name = "Privacy Shutters";
+ pixel_x = 37;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"CG" = (
+/turf/simulated/wall/bay/white,
+/area/stellardelight/deck1/resleeving)
+"CH" = (
+/obj/structure/closet/secure_closet/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"CI" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"CJ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/book/manual/virology,
+/obj/item/device/antibody_scanner,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"CK" = (
+/obj/machinery/button/remote/blast_door{
+ id = "explowindowlockdown";
+ name = "Window Lockdown";
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"CL" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"CM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/prison/cell_block/C)
+"CN" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/fieldmedic,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"CO" = (
+/obj/structure/table/woodentable,
+/obj/machinery/librarycomp,
+/turf/simulated/floor/carpet,
+/area/library)
+"CP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"CQ" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/requests_console/preset/security{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/milspec/color/red,
+/obj/item/weapon/paper_bin{
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"CR" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"CS" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/xenobiology)
+"CT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"CU" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"CV" = (
+/obj/structure/sign/directions/dorms{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"CW" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"CX" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"CY" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/rack,
+/obj/random/drinkbottle,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"CZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Da" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "EMT Bay";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/paramedic)
+"Db" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/rnd/storage)
+"Dc" = (
+/obj/item/weapon/bedsheet/orangedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"Dd" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"De" = (
+/obj/item/weapon/bedsheet/bluedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"Df" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"Dg" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "bodieshitthefloor"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/chapel/chapel_morgue)
+"Di" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/fore)
+"Dj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"Dk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Dl" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Dm" = (
+/obj/structure/bed/chair/backed_red,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"Dn" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"Do" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"Dp" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/library{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Dq" = (
+/obj/machinery/newscaster{
+ pixel_x = -29
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Ds" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Robotics Lab";
+ req_access = list(29,47);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/assembly/robotics)
+"Dt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"Dv" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Dw" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Dx" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/xenobiology)
+"Dy" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"Dz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"DA" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"DC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"DD" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"DE" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"DF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "brigwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/prison/cell_block/C)
+"DG" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/start/xenobot,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"DH" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/xenobiology/xenoflora_storage)
+"DI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"DJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"DK" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"DL" = (
+/obj/structure/closet/secure_closet/xenoarchaeologist,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"DN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"DO" = (
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"DP" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"DQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"DS" = (
+/turf/simulated/wall/bay/red,
+/area/prison/cell_block)
+"DT" = (
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/structure/closet/walllocker_double/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"DV" = (
+/obj/machinery/suit_cycler/pilot,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"DW" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"DY" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/sign/directions/command{
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/bar{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/evac{
+ pixel_x = 32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/stairs_up{
+ pixel_x = 32;
+ pixel_y = 12
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"DZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"Eb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Ec" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Ee" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Eg" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Eh" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/security/armoury)
+"Ei" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"Ek" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"Em" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"En" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Eo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"Ep" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Eq" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Er" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "xenospace6";
+ name = "6 Space Door";
+ pixel_x = 10;
+ pixel_y = -21;
+ req_access = list(55)
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Es" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"Et" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Civilian Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/civilian)
+"Eu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Ev" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"Ew" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"Ex" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen4";
+ name = "Pen 4 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Ey" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Ez" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/material/phoron{
+ amount = 6
+ },
+/obj/machinery/reagentgrinder{
+ pixel_y = 11
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"EB" = (
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Virology Isolation Room Two";
+ req_one_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/virology)
+"EC" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/ore_box,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"ED" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"EF" = (
+/obj/structure/table/rack/shelf,
+/obj/item/device/radio{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/device/radio{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck1/explobriefing)
+"EG" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"EH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"EI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"EJ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/shuttlebay)
+"EK" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"EM" = (
+/obj/structure/table/rack,
+/obj/item/device/defib_kit/compact/loaded,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"EN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"EO" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"EP" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"EQ" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"ER" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm8)
+"ES" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "torpedolauncher"
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/turf/simulated/floor/airless,
+/area/chapel/chapel_morgue)
+"ET" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"EU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"EV" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"EW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/assembly/robotics)
+"EX" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"EY" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Fa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Fb" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Fc" = (
+/obj/machinery/vending/wardrobe/scidrobe,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/researchequip)
+"Fd" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"Fe" = (
+/turf/simulated/wall/bay/red,
+/area/security/detectives_office)
+"Ff" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Fh" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/detective,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Fi" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Fj" = (
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"Fk" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/port)
+"Fl" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Fm" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Fn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/researchhall)
+"Fo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/portfore)
+"Fp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#8c1d11";
+ name = "maintenance access";
+ req_one_access = list(1);
+ stripe_color = "#8c1d11"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/security_port)
+"Fq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Fr" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"Fs" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Ft" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Fu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ name = "Unisex Restrooms";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/toilet)
+"Fv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Fw" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Fx" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Fy" = (
+/obj/structure/flora/pottedplant/orientaltree,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/exploration{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Fz" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"FA" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"FB" = (
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"FC" = (
+/obj/machinery/computer/prisoner,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"FD" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/obj/structure/sign/department/armory{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"FE" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"FF" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"FG" = (
+/turf/simulated/wall/bay/white,
+/area/medical/patient_wing)
+"FH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"FI" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"FK" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"FL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/library)
+"FM" = (
+/obj/structure/table/steel,
+/obj/item/device/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/item/device/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"FN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ name = "Recovery Room";
+ req_access = list(6);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/patient_wing)
+"FO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"FP" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"FQ" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"FR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"FS" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = -4
+ },
+/obj/item/weapon/hand_labeler,
+/obj/item/device/multitool/sd_buffered{
+ pixel_y = 2
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"FT" = (
+/turf/simulated/wall/bay/brown,
+/area/library)
+"FU" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"FV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/security,
+/obj/random/contraband,
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"FW" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"FX" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"FY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/stellardelight/deck1/researchserver)
+"FZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Ga" = (
+/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock,
+/turf/space,
+/area/space)
+"Gb" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Gc" = (
+/obj/machinery/requests_console/preset/research{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Gd" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Cargo Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"Ge" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Gh" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"Gi" = (
+/obj/structure/closet{
+ name = "Forensics Gear"
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/briefcase/crimekit,
+/obj/item/weapon/storage/briefcase/crimekit,
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 5
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Gj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Gl" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Gm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/southleft{
+ id = "Cell A";
+ name = "Cell A";
+ req_access = list(2)
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/prison/cell_block)
+"Gn" = (
+/obj/machinery/disease2/diseaseanalyser,
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"Go" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Gp" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"Gq" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"Gr" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/tactical)
+"Gt" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"Gu" = (
+/obj/item/weapon/bedsheet/bluedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"Gv" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Gy" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"GA" = (
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"GB" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"GC" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"GD" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"GE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"GF" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Research";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"GG" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"GI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/researchhall)
+"GK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"GL" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"GM" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#785134"
+ },
+/area/security/armoury)
+"GN" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"GP" = (
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "supply isolation valve"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/security/armoury)
+"GQ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"GR" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"GS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_boat_cockpit"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/stellardelight/deck1/miningshuttle)
+"GT" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Security"
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"GU" = (
+/obj/machinery/vending/wardrobe/robodrobe,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/researchequip)
+"GV" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"GW" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"GX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/computer/guestpass{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"GZ" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"Ha" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Hb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ door_color = "#a6753d";
+ name = "Shuttle Bay";
+ req_access = list(31);
+ req_one_access = null;
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/mining)
+"Hc" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Hd" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"He" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "explowindowlockdown"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/explobriefing)
+"Hf" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/requests_console{
+ department = "Exploration";
+ name = "Exploration Requests Console";
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"Hg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Hi" = (
+/obj/machinery/computer/timeclock/premade/west,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Hj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/library)
+"Hk" = (
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"Hl" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Hn" = (
+/obj/machinery/mineral/processing_unit_console{
+ density = 0;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"Hp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/department/sci{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Hq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"Hr" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"Hs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "securitylockdown"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/lobby)
+"Ht" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"Hu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Hv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Hw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Hx" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Hy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"Hz" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ ammo_type = /obj/item/ammo_casing/a12g/pellet;
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ ammo_type = /obj/item/ammo_casing/a12g/pellet;
+ pixel_x = 2;
+ pixel_y = -6
+ },
+/obj/machinery/camera/network/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"HA" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"HB" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "miningops"
+ },
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"HC" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/stairs_up{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 12
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"HD" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/energy/taser/xeno,
+/obj/item/weapon/gun/energy/taser/xeno,
+/obj/item/weapon/melee/baton/slime/loaded,
+/obj/item/weapon/melee/baton/slime/loaded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"HE" = (
+/obj/machinery/conveyor{
+ id = "miningops"
+ },
+/obj/machinery/mineral/input,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"HF" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "securitylockdown"
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 2
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"HG" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Pathfinder's Office"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"HH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm2)
+"HI" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"HK" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"HL" = (
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"HN" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"HO" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"HP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/department/morgue{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"HR" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"HS" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave{
+ pixel_y = 7
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"HT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/walllocker_double/east{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"HV" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"HW" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"HX" = (
+/obj/machinery/button/remote/airlock{
+ id = "dorm1";
+ name = "Room 1 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"HY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"HZ" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/milspec/color/red/half,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Ib" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"Ic" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"Ie" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"If" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell B"
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"Ig" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/random/soap,
+/obj/random/soap,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/obj/item/clothing/under/bathrobe,
+/obj/item/clothing/under/bathrobe,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"Ih" = (
+/obj/structure/closet{
+ name = "robotics equipment"
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"Ii" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Ij" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"Ik" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Il" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Im" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"In" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Io" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/suit_cycler/security,
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Ip" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Iq" = (
+/obj/effect/floor_decal/milspec/color/red,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"Ir" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Is" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"Iu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ door_color = "#525252";
+ name = "Exploration Shuttle";
+ req_one_access = list(19,43,67);
+ stripe_color = "#408f3b"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/exploshuttle)
+"Iw" = (
+/obj/machinery/vending/snack,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Ix" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Iy" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Iz" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"IA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"IB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"IC" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm4)
+"ID" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/full,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"IE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/storage)
+"IF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"IG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"IH" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"IJ" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "scrubber isolation valve"
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/security/armoury)
+"IK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"IL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"IM" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"IN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"IO" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen6";
+ name = "Pen 6 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"IP" = (
+/obj/machinery/r_n_d/protolathe{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research)
+"IQ" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"IR" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"IS" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"IU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"IV" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"IW" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/directions/dorms{
+ dir = 1;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"IX" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/orange/half,
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/B)
+"IY" = (
+/turf/simulated/wall/bay/steel,
+/area/crew_quarters/toilet)
+"IZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm8)
+"Ja" = (
+/obj/structure/closet/walllocker_double/west,
+/obj/item/weapon/shovel,
+/obj/item/weapon/shovel,
+/obj/item/weapon/shovel,
+/obj/item/weapon/shovel,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"Jb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Jc" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/scanning_module{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Jd" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"Je" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Jg" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"Jj" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Medical Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"Jk" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"Jl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"Jn" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Jo" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/medical,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Jp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Atmospherics Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/atmospherics)
+"Jq" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Js" = (
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm7)
+"Jt" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/port)
+"Jv" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/port)
+"Jw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Jx" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Jz" = (
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"JA" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"JB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/walllocker_double/east,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"JC" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/machinery/door/window/brigdoor{
+ req_access = list(11,24)
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"JD" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"JE" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"JF" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/starboard)
+"JH" = (
+/obj/structure/bed/chair/sofa/corp/left,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"JI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"JJ" = (
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#5a19a8"
+ },
+/area/gateway)
+"JK" = (
+/obj/machinery/door/firedoor,
+/obj/item/weapon/folder/white,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westright{
+ dir = 4;
+ name = "Research Desk";
+ req_access = list(7);
+ req_one_access = list(47)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/blast/angled_shutter/open{
+ dir = 4;
+ id = "rndshutters";
+ name = "Privacy Shutters"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/rnd/research)
+"JL" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/pathfinder)
+"JM" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"JN" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"JO" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"JP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"JQ" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/xenobiology/xenoflora)
+"JR" = (
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"JS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/bookbinder,
+/turf/simulated/floor/wood,
+/area/library)
+"JT" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"JU" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"JV" = (
+/obj/item/slime_extract/grey,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"JW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"JX" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/orange/half,
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"JY" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Ka" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Kb" = (
+/obj/machinery/conveyor{
+ id = "miningops"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"Kc" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"Kd" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Ke" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/machinery/camera/network/exploration{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"Kf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Kg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm6";
+ name = "Room 6";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm6)
+"Ki" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"Kj" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Kk" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "ex_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/exploration)
+"Kl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Km" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Kp" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start/librarian,
+/turf/simulated/floor/wood,
+/area/library)
+"Kq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/item/device/camera,
+/obj/item/device/retail_scanner/civilian,
+/obj/structure/sign/painting/library_private{
+ pixel_y = 32
+ },
+/obj/machinery/newscaster{
+ pixel_x = 29
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Kr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"Ks" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Kt" = (
+/obj/structure/table/reinforced,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Ku" = (
+/turf/simulated/wall/bay{
+ desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#5a19a8"
+ },
+/area/gateway)
+"Kv" = (
+/obj/effect/floor_decal/chapel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Kw" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "explodocker";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"Ky" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Kz" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"KA" = (
+/obj/machinery/vending/wardrobe/janidrobe,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"KB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"KC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"KD" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Atmospherics Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"KE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/halls,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"KF" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm6)
+"KG" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"KH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"KI" = (
+/obj/machinery/button/remote/driver{
+ id = "torpedolauncher";
+ pixel_y = 27
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"KJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"KK" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -24;
+ plane = -34
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"KL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"KM" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -24;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"KN" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"KO" = (
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"KP" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"KQ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"KR" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"KS" = (
+/obj/machinery/light,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"KT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"KU" = (
+/obj/machinery/camera/network/exploration{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"KV" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"KW" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"KX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"KY" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"KZ" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"La" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Lc" = (
+/obj/machinery/door_timer/cell_3{
+ id = "Cell B";
+ name = "Cell B";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Le" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Brig";
+ req_access = null;
+ req_one_access = list(38,63);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/lobby)
+"Lg" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/chapel/chapel_morgue)
+"Lh" = (
+/obj/effect/floor_decal/chapel,
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Li" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"Lj" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"Lk" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"Ll" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"Lm" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Ln" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Lo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Lp" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Lq" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Research Subgrid";
+ name_tag = "Research Subgrid"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"Lr" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 8
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Ls" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"Lt" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen4";
+ name = "Pen 4 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Lu" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Lv" = (
+/obj/machinery/conveyor{
+ id = "miningops"
+ },
+/obj/machinery/mineral/output,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"Lw" = (
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"Lx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"Ly" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Lz" = (
+/obj/structure/closet/walllocker_double/east{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/robot_parts/l_arm,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/minihoe,
+/obj/item/inflatable/door,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"LA" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"LB" = (
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/structure/closet/walllocker_double/east,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"LC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"LD" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"LE" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"LF" = (
+/turf/simulated/wall/bay/purple,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"LH" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"LI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#2e2e2e";
+ fill_color = "#2e2e2e";
+ name = "Chapel Morgue";
+ req_access = list(6,27);
+ stripe_color = "#deaf43"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/chapel/chapel_morgue)
+"LJ" = (
+/obj/machinery/button/remote/blast_door{
+ id = "GatewayShutter";
+ name = "Gateway Shutter";
+ pixel_y = 24;
+ req_access = list(62)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"LK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"LL" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"LM" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/librarian,
+/turf/simulated/floor/wood,
+/area/library)
+"LN" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"LO" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"LP" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"LQ" = (
+/obj/machinery/door/blast/angled{
+ id = "xenobiodiv4";
+ name = "Divider 4 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"LR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"LT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Research Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/research)
+"LU" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"LV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"LW" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/aft)
+"LX" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"LY" = (
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#785134"
+ },
+/area/library)
+"LZ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/exploration)
+"Ma" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ door_color = "#a88860";
+ name = "Mining Shuttle";
+ req_access = list(31);
+ stripe_color = "#69461a"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/miningshuttle)
+"Mb" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"Mc" = (
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#785134"
+ },
+/area/security/armoury)
+"Md" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"Me" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#8c1d11";
+ name = "Forensics Lab";
+ req_access = list(4);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/detectives_office)
+"Mf" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"Mg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/purple,
+/turf/simulated/floor,
+/area/rnd/workshop)
+"Mi" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Mj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#2e2e2e";
+ fill_color = "#2e2e2e";
+ name = "Chapel Morgue";
+ req_access = null;
+ stripe_color = "#deaf43"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/chapel/main)
+"Mk" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "chapelmassdriver";
+ name = "Window Lockdown";
+ pixel_y = 27;
+ req_one_access = list(6,27)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Ml" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"Mm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Mq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Mr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/bluegrid,
+/area/assembly/robotics)
+"Ms" = (
+/obj/machinery/door/window{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"Mt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Mu" = (
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Mv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"My" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/machinery/camera/network/research{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"MA" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/fore)
+"MB" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/security{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"MD" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"ME" = (
+/obj/machinery/gateway/centerstation,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"MF" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/mining,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/mining,
+/obj/item/weapon/mining_scanner,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"MG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start/miner,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"MH" = (
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"MI" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"MJ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"MK" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"ML" = (
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"MM" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"MN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm6)
+"MO" = (
+/obj/machinery/button/remote/airlock{
+ id = "bathroomstall1";
+ name = "Toilet 1 Lock";
+ pixel_x = -10;
+ pixel_y = 22;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"MP" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"MQ" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 25;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"MR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "Xenoflora Research";
+ req_access = list(77);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/xenobiology/xenoflora_storage)
+"MS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#8c1d11";
+ name = "maintenance access";
+ req_access = list(4);
+ req_one_access = null;
+ stripe_color = "#8c1d11"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/detectives_office)
+"MT" = (
+/obj/machinery/suit_cycler/engineering{
+ req_access = null
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"MV" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Exploration Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/exploration)
+"MW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "explowindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/pathfinder)
+"MX" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"MZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/shower)
+"Nb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "mechbay";
+ name = "Mech Bay"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/assembly/robotics)
+"Nc" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/maintenance/security_port)
+"Nd" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"Ne" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "processinglockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/security/security_processing)
+"Nf" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Ng" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/lowermed)
+"Nh" = (
+/obj/machinery/light/small,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Ni" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Warden's Office"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"Nj" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/milspec/color/red/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Nk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microscope,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Nl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Nm" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"No" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"Np" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Nq" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"Nr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 32
+ },
+/obj/effect/landmark/start/janitor,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"Ns" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#a6753d";
+ name = "Mining Equipment";
+ req_access = list(31);
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/miningequipment)
+"Nt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/security,
+/obj/random/maintenance/research,
+/obj/random/contraband,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Nu" = (
+/obj/structure/table/standard,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Nv" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Nw" = (
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/weapon/folder/white,
+/obj/item/device/healthanalyzer,
+/obj/item/weapon/cane,
+/obj/item/clothing/accessory/stethoscope,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"Nx" = (
+/obj/structure/closet/secure_closet/sar,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"Nz" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"NA" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"NB" = (
+/obj/structure/closet/coffin,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"NC" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"ND" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/pink,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"NF" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"NG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"NH" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck1/shower)
+"NI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"NJ" = (
+/obj/effect/shuttle_landmark/premade/sd/deck1/fore,
+/turf/space,
+/area/space)
+"NK" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"NL" = (
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"NM" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"NN" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"NP" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/portaft)
+"NQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"NR" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/light,
+/turf/simulated/floor/bluegrid,
+/area/gateway)
+"NS" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/mining)
+"NV" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"NW" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"NX" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "xenobiopen4";
+ name = "Pen 4 Containment";
+ pixel_x = 31;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen6";
+ name = "Pen 6 Containment";
+ pixel_x = 30;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "xenobiodiv4";
+ name = "Divider 4 Blast Doors";
+ pixel_x = 39;
+ req_access = list(55)
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"NY" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/pathfinder)
+"NZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"Oa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/milspec/color/emerald/half,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Ob" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"Oc" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Od" = (
+/obj/machinery/light,
+/obj/structure/sign/department/medbay{
+ name = "RESLEEVING";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Oe" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"Og" = (
+/obj/machinery/optable,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"Oh" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Oj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"Ok" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Ol" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/multitool,
+/obj/item/device/gps/medical{
+ pixel_y = 3
+ },
+/obj/item/device/gps/medical{
+ pixel_x = -3
+ },
+/obj/item/device/radio{
+ pixel_x = 2
+ },
+/obj/item/device/radio{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"Om" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Cargo";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"On" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/milspec/color/red/half,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Oo" = (
+/obj/machinery/botany/extractor,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Op" = (
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/machinery/door/window/brigdoor/westleft{
+ dir = 2;
+ req_access = list(5)
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Oq" = (
+/obj/machinery/door/blast/angled{
+ id = "xenobiodiv1";
+ name = "Divider 1 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Or" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Ot" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/stellardelight/deck1/starboard)
+"Ou" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Ov" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Ow" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Ox" = (
+/obj/structure/closet,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"Oy" = (
+/obj/structure/morgue/crematorium{
+ dir = 2;
+ id = "crematorium"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Oz" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"OA" = (
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm2)
+"OB" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"OC" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"OE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"OF" = (
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"OG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"OH" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/aft)
+"OI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#ffffff";
+ fill_color = "#ead9ff";
+ name = "Equipment Room";
+ req_access = list(7);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/researchequip)
+"OJ" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"OL" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"OM" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"ON" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/directions/evac{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"OO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"OQ" = (
+/turf/simulated/wall/bay/brown,
+/area/security/detectives_office)
+"OR" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/snack,
+/obj/random/mre,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"OT" = (
+/turf/simulated/wall/rshull,
+/area/stellardelight/deck1/exploshuttle)
+"OU" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"OV" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"OX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"OY" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen1";
+ name = "Pen 1 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"OZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/aft)
+"Pa" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Pb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/black,
+/turf/simulated/floor,
+/area/chapel/main)
+"Pd" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Pf" = (
+/obj/structure/closet/l3closet/janitor,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"Pg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Ph" = (
+/obj/structure/cable/pink{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Pj" = (
+/obj/machinery/door_timer/cell_3{
+ id = "Cell A";
+ name = "Cell A";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Pk" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/random/slimecore,
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Pl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/scientist,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"Pm" = (
+/obj/effect/floor_decal/chapel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Pn" = (
+/obj/machinery/mineral/output,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "miningops"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"Po" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Pp" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Pr" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"Ps" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/stellardelight/deck1/oreprocessing)
+"Pu" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/exploration)
+"Pv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Pw" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"Py" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Pz" = (
+/obj/structure/table/bench/marble,
+/obj/structure/fireaxecabinet{
+ pixel_y = -32
+ },
+/obj/effect/landmark/start/paramedic,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"PA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/curtain/black{
+ anchored = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck1/dorms/dorm4)
+"PB" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"PC" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"PD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"PE" = (
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"PF" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"PG" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"PH" = (
+/obj/structure/janitorialcart,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"PI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"PJ" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"PL" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"PM" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/janitor)
+"PN" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"PO" = (
+/obj/effect/floor_decal/milspec/color/red/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"PP" = (
+/obj/structure/closet/crate,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"PQ" = (
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/storage/lockbox/vials,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/storage/box/masks,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/soap/nanotrasen,
+/obj/structure/closet/walllocker_double/medical/east,
+/obj/item/weapon/hand_labeler,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"PR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"PS" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"PU" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"PV" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/stellardelight/deck1/resleeving)
+"PW" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"PX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"PY" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"PZ" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Civilian";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/civilian)
+"Qa" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"Qb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "ex_airpump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "ex_sensor";
+ pixel_y = 24
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Qc" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Qd" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"Qe" = (
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"Qg" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/button/remote/blast_door{
+ id = "processinglockdown";
+ name = "Window Lockdown";
+ pixel_x = -5;
+ req_access = list(1)
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"Qh" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Qi" = (
+/turf/simulated/wall/bay/r_wall{
+ desc = "It has a red stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#8c1d11"
+ },
+/area/security/tactical)
+"Qj" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Qk" = (
+/turf/simulated/wall/bay/red,
+/area/prison/cell_block/C)
+"Ql" = (
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/orange,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Atmospherics";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/atmospherics)
+"Qm" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen5";
+ name = "Pen 5 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"Qn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"Qp" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer,
+/obj/item/clothing/accessory/stethoscope,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Qq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"Qr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Medical Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/medical)
+"Qt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"Qu" = (
+/turf/simulated/wall/bay{
+ desc = "It has a red stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#8c1d11"
+ },
+/area/security/security_processing)
+"Qv" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Qw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "security_airlock";
+ name = "exterior access button";
+ pixel_x = -32;
+ req_access = list(1)
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1379;
+ id_tag = "security_exterior";
+ locked = 1;
+ name = "Security Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/tactical)
+"Qx" = (
+/obj/machinery/gateway,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Qy" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Qz" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"QA" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"QB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"QC" = (
+/turf/simulated/wall/bay/red,
+/area/security/lobby)
+"QD" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"QE" = (
+/obj/effect/landmark/start/scientist,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"QF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"QG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ door_color = "#8c1d11";
+ id_tag = "BrigFoyer";
+ name = "Security";
+ req_one_access = list(38,63);
+ stripe_color = "#d27428"
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "securitylockdown"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/lobby)
+"QH" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"QI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"QJ" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"QK" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/mining)
+"QM" = (
+/obj/item/weapon/bedsheet/orangedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"QO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"QP" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/box/trackimp{
+ pixel_y = -4
+ },
+/obj/item/weapon/storage/box/trackimp{
+ pixel_x = 5;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"QQ" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"QR" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"QS" = (
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = 29
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"QU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"QV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"QX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"QY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "brigwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/security/security_equiptment_storage)
+"QZ" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"Ra" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"Rb" = (
+/obj/structure/bed/padded,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"Rc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#2e2e2e";
+ fill_color = "#2e2e2e";
+ name = "Chapel Office";
+ req_access = list(26);
+ stripe_color = "#deaf43"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/chapel/office)
+"Rd" = (
+/obj/structure/bed/chair/wood/wings,
+/obj/effect/landmark/start/chaplain,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Re" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"Rf" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Rg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"Rh" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Medical Subgrid";
+ name_tag = "Medical Subgrid"
+ },
+/obj/structure/cable/white,
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"Ri" = (
+/obj/machinery/button/remote/airlock{
+ id = "bathroomstall3";
+ name = "Toilet 3 Lock";
+ pixel_x = -10;
+ pixel_y = 22;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"Rj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/civilian{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Rk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Rl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Rm" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Rn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ id_tag = "resleeveexit";
+ name = "Resleeving Lab";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/resleeving)
+"Ro" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"Rp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "librarywindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/library)
+"Rq" = (
+/obj/structure/janitorialcart,
+/obj/machinery/requests_console/preset/janitor{
+ pixel_y = 30
+ },
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/obj/item/clothing/suit/caution,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"Rr" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"Rs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Exploration Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/exploration)
+"Rt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ req_access = list(26);
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/janitor)
+"Ru" = (
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/machinery/door/window/brigdoor{
+ dir = 2
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Rv" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Rw" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "security_airpump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 4;
+ id_tag = "security_airlock";
+ pixel_x = -24;
+ req_one_access = list(1);
+ tag_airpump = "security_airpump";
+ tag_chamber_sensor = "security_sensor";
+ tag_exterior_door = "security_exterior";
+ tag_interior_door = "security_interior"
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ id_tag = "security_sensor";
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/security/tactical)
+"Ry" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/purple,
+/turf/simulated/floor,
+/area/rnd/xenobiology/xenoflora_storage)
+"Rz" = (
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"RA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"RB" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"RC" = (
+/turf/simulated/wall/bay/red,
+/area/security/warden)
+"RD" = (
+/obj/structure/closet/walllocker_double/north,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"RE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"RF" = (
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"RG" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"RH" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"RJ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"RL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"RM" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"RN" = (
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"RP" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/medical/equipped,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/paramedic)
+"RQ" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/sign/department/chapel{
+ pixel_x = -32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"RR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/botany/editor,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"RS" = (
+/turf/simulated/wall/bay/purple,
+/area/stellardelight/deck1/pathfinder)
+"RT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Cleaning Room";
+ req_access = null;
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/resleeving)
+"RU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 28
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"RX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"RY" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"RZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Sa" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Sb" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Sc" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Sd" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Se" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Sf" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"Sg" = (
+/obj/machinery/vending/wardrobe/chapdrobe,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Sh" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Si" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm1)
+"Sj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Sk" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/storage)
+"Sl" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"Sn" = (
+/obj/structure/flora/pottedplant/orientaltree,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Sq" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"Sr" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"Ss" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"St" = (
+/obj/effect/landmark/start/xenobot,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Su" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"Sv" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"Sx" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Sy" = (
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Sz" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"SA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/chapel/main)
+"SB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"SC" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/security)
+"SD" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"SE" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"SF" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"SG" = (
+/obj/machinery/door/airlock/angled_bay/standard/color/common{
+ dir = 4;
+ id_tag = "bathroomstall2";
+ name = "Toilet 2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/toilet)
+"SH" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"SI" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"SJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ name = "\improper Exploration Department";
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/science{
+ dir = 6;
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"SL" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"SM" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"SN" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"SO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ name = "\improper Exploration Department";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"SP" = (
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "dorm3";
+ name = "Room 3 Lock";
+ pixel_y = -22;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"SQ" = (
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"SR" = (
+/obj/machinery/door/blast/multi_tile/three_tile_ver{
+ id = "xenospace6"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"SS" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"ST" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"SU" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"SV" = (
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/simulated/floor/tiled/white,
+/area/stellardelight/deck1/shower)
+"SW" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "ex_interior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/exploration)
+"SX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/toilet)
+"SY" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"SZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"Ta" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Tb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Tc" = (
+/obj/item/weapon/bedsheet/orangedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"Td" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/portcent)
+"Te" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -1;
+ pixel_y = -11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 9
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"Tf" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Th" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"Ti" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"Tj" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Tk" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Tl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "Xenoflora Research";
+ req_access = list(77);
+ stripe_color = "#5a19a8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/xenobiology/xenoflora)
+"Tm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#8c1d11";
+ name = "Forensics Lab";
+ req_access = list(4);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/detectives_office)
+"Tn" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"To" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"Tp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Xenobiology";
+ req_access = null;
+ req_one_access = list(47,55);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/rnd/xenobiology)
+"Tq" = (
+/obj/structure/cable/white,
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Medical";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"Tr" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"Ts" = (
+/obj/machinery/door/blast/angled{
+ id = "xenobiodiv2";
+ name = "Divider 2 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Tv" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Tx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm3";
+ name = "Room 3";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm3)
+"Ty" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"TB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"TC" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"TD" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"TE" = (
+/obj/effect/floor_decal/milspec/color/orange/half,
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block/C)
+"TF" = (
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"TG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"TH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "processinglockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/security/security_processing)
+"TI" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"TJ" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"TK" = (
+/obj/machinery/clonepod/transhuman,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"TL" = (
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"TM" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"TN" = (
+/obj/item/weapon/bedsheet/orangedouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"TO" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/directions/science{
+ dir = 6;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/science{
+ dir = 5;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ dir = 10;
+ name = "\improper Exploration Department";
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"TP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"TQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"TR" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"TS" = (
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/contraband,
+/obj/random/mre,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"TT" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/port)
+"TU" = (
+/obj/structure/closet/coffin,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"TV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/table/rack,
+/obj/item/canvas,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_twentythree,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"TW" = (
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "chapelmassdriver"
+ },
+/turf/simulated/floor/airless,
+/area/chapel/chapel_morgue)
+"TX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ id_tag = "recoveryexit";
+ name = "Recovery Room";
+ req_access = list(6);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/patient_wing)
+"TY" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"TZ" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Ua" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/exploration)
+"Ub" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck1/portcent)
+"Uc" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = 32
+ },
+/obj/structure/table/bench/sifwooden/padded,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -32
+ },
+/obj/effect/landmark/start/pilot,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"Ud" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"Ue" = (
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"Uf" = (
+/obj/machinery/newscaster{
+ pixel_x = 29
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Ug" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "wardenoffice";
+ name = "Privacy Shutters"
+ },
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/security/warden)
+"Uh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Uj" = (
+/obj/structure/table/woodentable,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Uk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Ul" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Um" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"Un" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Uo" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Up" = (
+/obj/machinery/chemical_analyzer,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Uq" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Ur" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Us" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/obj/effect/landmark/start/librarian,
+/turf/simulated/floor/wood,
+/area/library)
+"Ut" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 2";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 2";
+ req_access = list(55)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen2";
+ name = "Pen 2 Blast Doors"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Uu" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Uw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Ux" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/camera/network/research{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"Uz" = (
+/obj/structure/bookcase/bookcart,
+/turf/simulated/floor/carpet,
+/area/library)
+"UA" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research)
+"UB" = (
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"UD" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research)
+"UE" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"UF" = (
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"UG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"UH" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"UI" = (
+/obj/structure/cable/pink{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"UJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"UK" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"UL" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Atmospherics Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/atmospherics)
+"UM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/random/action_figure,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"UN" = (
+/obj/structure/table/steel,
+/obj/item/device/electronic_assembly/large/default,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"UO" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"UP" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/action_figure,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"UQ" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"UR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"US" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/glasses/hud/security,
+/obj/item/clothing/glasses/hud/security,
+/obj/item/clothing/glasses/hud/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"UT" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"UU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"UV" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "xenobiopen1";
+ name = "Pen 1 Containment";
+ pixel_x = -30;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen3";
+ name = "Pen 3 Containment";
+ pixel_x = -31;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "xenobiodiv1";
+ name = "Divider 1 Blast Doors";
+ pixel_x = -39;
+ req_access = list(55)
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"UW" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/secure_closet/guncabinet/excursion,
+/obj/item/weapon/pickaxe/drill,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/stellardelight/deck1/exploshuttle)
+"UX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Research Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/research)
+"UY" = (
+/obj/machinery/suit_cycler/engineering{
+ req_access = null
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"UZ" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/research)
+"Va" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"Vb" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/medical)
+"Vc" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"Vd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/steel/panels,
+/area/stellardelight/deck1/pilot)
+"Ve" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/prison/cell_block)
+"Vf" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"Vg" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/rnd/xenobiology)
+"Vh" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck1/pilot)
+"Vi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Vj" = (
+/turf/simulated/wall/bay/purple,
+/area/stellardelight/deck1/exploequipment)
+"Vk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/rnd/xenobiology/xenoflora_storage)
+"Vl" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 6";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 6";
+ req_access = list(55)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen6";
+ name = "Pen 6 Blast Doors"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Vm" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/shuttle_landmark/shuttle_initializer/mining,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"Vn" = (
+/obj/machinery/door/blast/angled,
+/turf/simulated/floor,
+/area/stellardelight/deck1/shuttlebay)
+"Vo" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"Vp" = (
+/obj/structure/bookcase{
+ name = "bookcase (Reference)"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch,
+/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance,
+/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures,
+/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide,
+/obj/item/weapon/book/custom_library/reference/securityguidelines,
+/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization,
+/obj/item/weapon/book/manual/anomaly_spectroscopy,
+/obj/item/weapon/book/manual/anomaly_testing,
+/obj/item/weapon/book/manual/atmospipes,
+/obj/item/weapon/book/manual/bar_guide,
+/obj/item/weapon/book/manual/barman_recipes,
+/obj/item/weapon/book/manual/casino,
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/cook_guide,
+/obj/item/weapon/book/manual/detective,
+/obj/item/weapon/book/manual/engineering_construction,
+/obj/item/weapon/book/manual/engineering_guide,
+/obj/item/weapon/book/manual/engineering_hacking,
+/obj/item/weapon/book/manual/engineering_particle_accelerator,
+/obj/item/weapon/book/manual/engineering_singularity_safety,
+/obj/item/weapon/book/manual/evaguide,
+/obj/item/weapon/book/manual/excavation,
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/item/weapon/book/manual/mass_spectrometry,
+/obj/item/weapon/book/manual/materials_chemistry_analysis,
+/obj/item/weapon/book/manual/medical_cloning,
+/obj/item/weapon/book/manual/medical_diagnostics_manual,
+/obj/item/weapon/book/manual/research_and_development,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/book/manual/ripley_build_and_repair,
+/obj/item/weapon/book/manual/robotics_cyborgs,
+/obj/item/weapon/book/manual/rust_engine,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/stasis,
+/obj/item/weapon/book/manual/supermatter_engine,
+/obj/item/weapon/book/manual/tesla_engine,
+/obj/item/weapon/book/manual/virology,
+/turf/simulated/floor/wood,
+/area/library)
+"Vq" = (
+/obj/machinery/computer/centrifuge,
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ dir = 4;
+ id_tag = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = -28;
+ pixel_y = -16;
+ tag_exterior_door = "virology_airlock_exterior";
+ tag_interior_door = "virology_airlock_interior"
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/virology)
+"Vr" = (
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"Vs" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"Vt" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"Vu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"Vv" = (
+/obj/machinery/button/remote/airlock{
+ id = "dorm7";
+ name = "Room 7 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"Vw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/port)
+"Vx" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Vy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm3)
+"Vz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"VA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "EMT Bay";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/paramedic)
+"VB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/security)
+"VC" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/resleeving)
+"VD" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/sign/directions/bar{
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/command{
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/evac{
+ pixel_x = -32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/stairs_up{
+ pixel_x = -32;
+ pixel_y = 12
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"VE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/ore_box,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"VF" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"VG" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"VH" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"VI" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/vest/wolftaur{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/clothing/suit/armor/vest/wolftaur{
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/obj/item/weapon/storage/lockbox,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"VJ" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"VK" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance,
+/obj/random/medical,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardfore)
+"VL" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"VM" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/black,
+/area/chapel/chapel_morgue)
+"VN" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"VO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "researchwindowlockdown"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/rnd/xenobiology/xenoflora_storage)
+"VP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/toilet)
+"VQ" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/miningshuttle)
+"VR" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/starboard)
+"VS" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"VT" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "miningops"
+ },
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"VV" = (
+/turf/simulated/wall/bay/red,
+/area/chapel/office)
+"VW" = (
+/obj/machinery/vending/wardrobe/detdrobe,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"VX" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"VY" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"VZ" = (
+/obj/structure/table/woodentable,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"Wa" = (
+/obj/machinery/button/remote/airlock{
+ id = "dorm2";
+ name = "Room 2 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm2)
+"Wb" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ color = "#42038a"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Wc" = (
+/obj/machinery/smartfridge/produce,
+/turf/simulated/wall/bay/r_wall/purple,
+/area/rnd/xenobiology/xenoflora_storage)
+"Wd" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/ore_box,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"We" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/start/xenobot,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Wf" = (
+/obj/structure/table/woodentable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/port)
+"Wg" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Wh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/research,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Wi" = (
+/obj/machinery/camera/network/research/xenobio{
+ dir = 9;
+ network = list("Xenobiology")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Wj" = (
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Wk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm4)
+"Wl" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm8)
+"Wm" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Wn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "dorm7";
+ name = "Room 7";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/dorms/dorm7)
+"Wo" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/scientist,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"Wp" = (
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/obj/structure/sign/painting/chapel_secure{
+ pixel_y = -32
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Wq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Wr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"Ws" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Wt" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"Wu" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Wv" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"Ww" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/starboardaft)
+"Wx" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Wy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/starboard)
+"Wz" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"WA" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "miningops";
+ name = "Mining Ops conveyor switch";
+ pixel_x = 10;
+ pixel_y = 5;
+ req_access = list(48);
+ req_one_access = list(48)
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"WB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck1/fore)
+"WC" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"WD" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"WE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"WG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/prison/cell_block/B)
+"WH" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/effect/landmark/start/explorer,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"WJ" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"WK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"WL" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/chapel/chapel_morgue)
+"WM" = (
+/turf/simulated/wall/bay/r_wall/purple,
+/area/stellardelight/deck1/explobriefing)
+"WP" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "miningops"
+ },
+/obj/machinery/mineral/output,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/oreprocessing)
+"WQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"WR" = (
+/turf/simulated/wall/bay/purple,
+/area/rnd/research)
+"WS" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"WT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"WU" = (
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"WW" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm6)
+"WX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/stellardelight/deck1/researchserver)
+"WY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"WZ" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"Xa" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32;
+ pixel_y = -5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"Xb" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/camera/network/command{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"Xc" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/toilet)
+"Xd" = (
+/obj/machinery/alarm/angled,
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Xe" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Xf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Xg" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Xh" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Warden's Desk";
+ req_access = list(3)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "wardenoffice";
+ name = "Privacy Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"Xi" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/medical/virology)
+"Xj" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/library)
+"Xk" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"Xl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck1/shuttlebay)
+"Xm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Security Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/security)
+"Xn" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"Xo" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/medical)
+"Xp" = (
+/obj/structure/table/steel,
+/obj/item/device/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/item/device/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"Xq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Xr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/button/remote/blast_door{
+ id = "mechbay";
+ name = "Mech Bay";
+ pixel_y = 25;
+ req_access = list(29,47)
+ },
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "mechbay";
+ name = "Mech Bay"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/assembly/robotics)
+"Xs" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portcent)
+"Xt" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Xu" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"Xv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/foam,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Xw" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/pink,
+/obj/structure/cable/pink{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"Xx" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"Xz" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"XA" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck1/exterior)
+"XB" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/security_equiptment_storage)
+"XC" = (
+/obj/effect/floor_decal/milspec/color/red/half{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"XD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "maintenance access";
+ req_one_access = list(19,43,67);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/explobriefing)
+"XE" = (
+/obj/structure/table/reinforced,
+/obj/item/roller,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/gateway)
+"XF" = (
+/obj/effect/floor_decal/milspec/color/emerald/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"XG" = (
+/obj/structure/flora/pottedplant/dead,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck1/researchserver)
+"XH" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"XJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/milspec/color/emerald/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"XL" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell A"
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"XM" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"XN" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/landmark/start/scientist,
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchequip)
+"XO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Mech Bay";
+ req_access = list(29,47);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/assembly/robotics)
+"XP" = (
+/obj/machinery/door/airlock/angled_bay/standard/color/common{
+ dir = 4;
+ id_tag = "bathroomstall3";
+ name = "Toilet 3"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/toilet)
+"XQ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"XR" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/research)
+"XS" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"XT" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"XU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/vending/radren,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"XV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/purple,
+/turf/simulated/floor,
+/area/stellardelight/deck1/exploration)
+"XW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/mining,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"XX" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/library)
+"XY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"XZ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"Ya" = (
+/obj/structure/cable/pink{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Yb" = (
+/obj/machinery/light,
+/turf/simulated/floor/bluegrid,
+/area/assembly/robotics)
+"Yc" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 5";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 5";
+ req_access = list(55)
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen5";
+ name = "Pen 5 Blast Doors"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/xenobiology)
+"Yd" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/security)
+"Ye" = (
+/obj/structure/closet/secure_closet/hydroponics/sci{
+ req_access = list(77)
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris,
+/area/stellardelight/deck1/researchhall)
+"Yf" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck1/lowermed)
+"Yh" = (
+/obj/machinery/camera/network/mining{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"Yi" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"Yj" = (
+/obj/machinery/processor,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"Yk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Yl" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"Ym" = (
+/obj/structure/cable/pink{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/milspec/color/red/half,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Yn" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/obj/random/medical,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Yo" = (
+/obj/structure/morgue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue)
+"Yp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/prison/cell_block)
+"Yq" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/stellardelight/deck1/miningshuttle)
+"Yr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/stellardelight/deck1/dorms/dorm7)
+"Ys" = (
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "dorm5";
+ name = "Room 5 Lock";
+ pixel_y = -22;
+ specialfunctions = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck1/dorms/dorm5)
+"Yt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Yu" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/storage)
+"Yv" = (
+/turf/simulated/wall/bay/black,
+/area/chapel/office)
+"Yw" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"Yx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Yy" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"Yz" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"YA" = (
+/obj/structure/bookcase{
+ desc = "There appears to be a shrine to WGW at the back...";
+ name = "Forbidden Knowledge"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sign/painting/library_private{
+ pixel_y = 32
+ },
+/obj/structure/sign/painting/library_private{
+ pixel_x = -32
+ },
+/obj/item/weapon/book/manual/engineering_hacking,
+/obj/item/weapon/book/manual/nuclear,
+/obj/item/weapon/book/custom_library/fiction/woodysgotwood,
+/turf/simulated/floor/wood,
+/area/library)
+"YB" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"YC" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora_storage)
+"YD" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploration)
+"YE" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/cargo)
+"YF" = (
+/turf/simulated/wall/bay/r_wall/brown,
+/area/stellardelight/deck1/dorms/dorm7)
+"YG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#a6753d";
+ name = "Refinery";
+ req_access = list(48);
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck1/oreprocessing)
+"YH" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"YI" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"YJ" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"YK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#8c1d11";
+ fill_color = "#854a44";
+ name = "Armory";
+ req_access = list(3);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/armoury)
+"YL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/department/robo{
+ pixel_y = 32
+ },
+/obj/machinery/door/blast/angled_shutter/open{
+ dir = 4;
+ id = "dontlooktmyrobotpenis";
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ dir = 4;
+ name = "Robotics Desk";
+ req_access = list(7);
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/assembly/robotics)
+"YM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/purple,
+/turf/simulated/floor,
+/area/gateway)
+"YN" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"YO" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"YP" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck1/exploration)
+"YQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/mining{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"YR" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"YS" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"YT" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/port)
+"YU" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/pathfinder)
+"YV" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/security/tactical)
+"YW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"YX" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"YY" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"YZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/swabs{
+ layer = 5
+ },
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/blue{
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/yellow{
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"Za" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"Zb" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"Zc" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/bluegrid,
+/area/assembly/robotics)
+"Ze" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/black,
+/turf/simulated/floor,
+/area/chapel/chapel_morgue)
+"Zf" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/shuttlebay)
+"Zg" = (
+/obj/structure/closet/secure_closet/miner,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"Zh" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/folder/blue,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/explobriefing)
+"Zi" = (
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Zj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/southleft{
+ id = "Cell C";
+ name = "Cell C";
+ req_access = list(2)
+ },
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/prison/cell_block/C)
+"Zk" = (
+/obj/machinery/button/remote/airlock{
+ id = "bathroomstall2";
+ name = "Toilet 2 Lock";
+ pixel_x = -10;
+ pixel_y = 22;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/toilet)
+"Zl" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals3{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Zm" = (
+/obj/structure/closet/walllocker_double/west,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/miningequipment)
+"Zn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "wardenoffice";
+ name = "Privacy Shutters"
+ },
+/obj/structure/low_wall/bay/reinforced/red,
+/turf/simulated/floor,
+/area/security/warden)
+"Zo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"Zp" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "GatewayShutterE";
+ name = "EVA Shutter";
+ pixel_x = -23;
+ req_one_access = list(18,19,43,67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/starboard)
+"Zq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/exam_room)
+"Zr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "dontlooktmyrobotpenis";
+ name = "Privacy Shutter Control";
+ pixel_y = 2
+ },
+/obj/item/device/robotanalyzer,
+/turf/simulated/floor/tiled/steel,
+/area/assembly/robotics)
+"Zs" = (
+/obj/structure/table/woodentable,
+/obj/structure/sign/painting/chapel_secure{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Zt" = (
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"Zu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/starboardcent)
+"Zv" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/detectives_office)
+"Zw" = (
+/obj/effect/floor_decal/milspec/color/black,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_cell_hallway)
+"Zx" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_y = -33;
+ req_access = list(39)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ autoclose = 0;
+ dir = 4;
+ door_color = "#ffffff";
+ frequency = 1379;
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access = list(39);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/virology)
+"Zy" = (
+/obj/machinery/photocopier,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"Zz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"ZA" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/xenobiology)
+"ZC" = (
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"ZD" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"ZE" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck1/fore)
+"ZF" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/dnaforensics,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"ZG" = (
+/turf/simulated/wall/bay/r_wall/red,
+/area/security/security_lockerroom)
+"ZI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"ZJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/stellardelight/deck1/mining)
+"ZK" = (
+/obj/structure/cable/pink{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portfore)
+"ZM" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris,
+/area/rnd/xenobiology/xenoflora)
+"ZN" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"ZO" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/aft)
+"ZP" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "wardenoffice";
+ name = "Privacy Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"ZQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start/fieldmedic,
+/turf/simulated/floor/tiled/milspec,
+/area/stellardelight/deck1/exploequipment)
+"ZR" = (
+/obj/machinery/camera/network/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"ZS" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "16-0"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/exploration)
+"ZT" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "xenobiopen2";
+ name = "Pen 2 Blast Doors"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/xenobiology)
+"ZU" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/stellardelight/deck1/port)
+"ZV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/department/chapel{
+ pixel_x = -32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck1/fore)
+"ZW" = (
+/obj/structure/cable/green{
+ color = "#42038a";
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"ZX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck1/portaft)
+"ZY" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ZZ" = (
+/turf/simulated/wall/bay/purple,
+/area/rnd/xenobiology)
+
+(1,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(2,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(3,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(4,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(5,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(6,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(7,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(8,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(9,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(10,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(11,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(12,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(13,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(14,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(15,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(16,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(17,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(18,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(19,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(20,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(21,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(22,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(23,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Ga
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(24,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(25,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(26,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(27,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(28,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(29,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(30,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(31,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(32,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(33,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(34,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(35,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(36,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(37,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(38,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(39,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+ea
+JE
+JE
+JE
+JE
+FP
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(40,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+SN
+JE
+JE
+JE
+JE
+JE
+sa
+RF
+hw
+uq
+uq
+uq
+uq
+uq
+uq
+pz
+JE
+JE
+GL
+RF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(41,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+bD
+ea
+EG
+RF
+RF
+uq
+uq
+uq
+vX
+JE
+GL
+RF
+bD
+bD
+bD
+bD
+RF
+RF
+RF
+RF
+vF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(42,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+ib
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+Sd
+RF
+RF
+RF
+RF
+uo
+ga
+bD
+bD
+ra
+sW
+Kk
+ra
+Vi
+Gj
+ra
+ra
+ra
+ra
+Vi
+ra
+ra
+ra
+uF
+Vi
+Vi
+ra
+ra
+ra
+ra
+ra
+ra
+bD
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(43,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+RF
+RF
+RF
+RF
+DD
+kJ
+kJ
+kJ
+kJ
+Ks
+kJ
+Sd
+ra
+ra
+xM
+qd
+ra
+Oz
+Wx
+iU
+iU
+iU
+iU
+iU
+iU
+KZ
+vT
+tE
+Jo
+BP
+Cc
+gw
+xw
+vT
+Gy
+ra
+bD
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(44,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+RF
+RF
+RF
+RF
+RF
+RF
+uq
+uq
+YP
+ra
+ra
+Qb
+Zo
+ra
+Yn
+vT
+um
+um
+um
+um
+um
+um
+In
+wm
+Ag
+Ly
+wm
+wm
+rB
+wm
+Np
+Oz
+ra
+RF
+vF
+uq
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(45,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+RF
+RF
+bD
+bD
+ra
+YP
+ZS
+ra
+pI
+tx
+ra
+xl
+rf
+um
+lI
+Ql
+KD
+KP
+um
+if
+WM
+WM
+WM
+WM
+WM
+WM
+WM
+XD
+WM
+nk
+RF
+vF
+bD
+RF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(46,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+bD
+ra
+ra
+Km
+fE
+ra
+zd
+SW
+ra
+wU
+PG
+UL
+EX
+jm
+ng
+cC
+um
+if
+WM
+Cl
+wq
+mP
+Lp
+wk
+sT
+gS
+Sn
+nk
+bD
+hE
+JE
+JE
+sa
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(47,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+nn
+ND
+ag
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gc
+nn
+aK
+aK
+aK
+aK
+mC
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+sy
+nc
+nc
+nc
+nc
+hD
+RF
+uq
+uq
+uq
+uq
+uq
+bD
+ra
+UB
+jp
+rl
+RY
+RY
+FF
+Xg
+Ln
+vn
+um
+um
+um
+um
+Jp
+um
+if
+WM
+EF
+Rz
+Uo
+kg
+aJ
+kg
+ji
+kO
+He
+JE
+en
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(48,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gc
+RF
+bD
+bD
+uq
+uq
+uq
+uq
+bD
+bD
+nn
+yE
+uq
+gH
+RF
+bD
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+bD
+RF
+ap
+yE
+uq
+uq
+uq
+RF
+gH
+RF
+bD
+bD
+uq
+uq
+uq
+bD
+bD
+RF
+yz
+RF
+uq
+uq
+uq
+yz
+RF
+RF
+bD
+bD
+uq
+uq
+uq
+ra
+yn
+qq
+aA
+qq
+sF
+qq
+qq
+Yk
+pP
+qq
+UQ
+Tb
+qq
+PL
+DQ
+XM
+WM
+Up
+Rz
+CN
+zZ
+yP
+zZ
+rv
+Rz
+ny
+bD
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(49,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+nn
+Ul
+Lg
+TW
+tL
+tL
+nM
+nM
+nM
+Ak
+iN
+SA
+xy
+xy
+as
+Vu
+Vu
+xy
+Vu
+Vu
+xy
+Vu
+Vu
+Vu
+xy
+xy
+Td
+td
+xW
+xW
+xW
+xW
+xW
+Yd
+Td
+Td
+NP
+EH
+EH
+NP
+NP
+NP
+NP
+ek
+NP
+NP
+NP
+NP
+ek
+NP
+NP
+NP
+NP
+EH
+EH
+ra
+ra
+IL
+wF
+wF
+wF
+wF
+wF
+wF
+vT
+NI
+Ua
+Rs
+Ua
+Ua
+Ua
+Ua
+Ec
+WM
+HS
+Rz
+TC
+oZ
+Zh
+zZ
+OB
+Rz
+ny
+uq
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(50,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+WL
+Lg
+ES
+Ze
+Mk
+fZ
+Ey
+sd
+Ak
+mU
+OG
+xy
+Ox
+NW
+cB
+cB
+FV
+dS
+kx
+Zz
+Bb
+cB
+cB
+cB
+Dj
+gY
+aV
+SC
+rJ
+jV
+zH
+Sl
+SC
+gY
+gY
+ZX
+nm
+nm
+NP
+FI
+Ra
+bV
+Ml
+NL
+yN
+ld
+wQ
+Rg
+nm
+tB
+nm
+nm
+nm
+nm
+kA
+vT
+IL
+wF
+pb
+Jl
+TI
+YE
+wF
+pf
+nB
+Ua
+gV
+BW
+ex
+Pu
+Ua
+Ec
+WM
+eJ
+Rz
+NA
+em
+An
+em
+sN
+Rz
+ny
+bD
+vF
+uq
+RF
+by
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(51,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+nn
+yE
+WL
+Lg
+Dg
+Ze
+KI
+fk
+Ge
+cN
+Ak
+xP
+js
+Fo
+ZK
+is
+ZK
+ZK
+kh
+ZK
+ZK
+Ev
+ZK
+ZK
+ZK
+ZK
+nZ
+Gv
+kY
+Xm
+rs
+hb
+sP
+VB
+lq
+Wg
+cF
+rK
+CB
+CB
+CB
+CB
+CB
+RL
+Ib
+To
+bQ
+To
+aO
+Ib
+To
+Xz
+To
+To
+To
+To
+kf
+JP
+nP
+jO
+JW
+Gd
+Om
+BN
+pO
+Uw
+vT
+Ua
+Jg
+ne
+fQ
+nl
+MV
+gt
+WM
+ql
+TP
+CW
+Fx
+zm
+qk
+aC
+Fy
+nk
+bD
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(52,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Lg
+WL
+Fm
+Wr
+tK
+Wr
+Or
+qF
+AV
+LI
+aU
+pT
+AY
+AY
+pp
+pp
+pp
+AY
+pp
+pp
+AY
+pp
+pp
+pp
+AY
+AY
+Rf
+bH
+SC
+SC
+SC
+SC
+SC
+SC
+Wh
+gY
+PM
+PM
+PM
+PM
+Xc
+Xc
+Xc
+VP
+Xc
+Xc
+Xc
+Xc
+vm
+Xc
+qE
+qE
+qE
+qE
+qE
+qE
+qE
+qE
+Vh
+Vh
+Vh
+Vh
+Vh
+wF
+Xq
+yS
+pC
+pC
+pC
+pC
+pC
+pC
+pC
+pC
+Vj
+vy
+mW
+RS
+RS
+RS
+RS
+RS
+JL
+RF
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(53,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+nn
+yE
+Lg
+VM
+Oy
+fk
+jo
+ko
+Ak
+Ak
+Ak
+Ak
+ix
+hj
+Mj
+Rj
+ad
+Dw
+PX
+qN
+PX
+uj
+wb
+UH
+UH
+jB
+fV
+AY
+vG
+yw
+Vb
+Jd
+lm
+Xo
+HI
+us
+Nt
+gY
+PM
+KA
+Lj
+NC
+IY
+CA
+IY
+PU
+IY
+CA
+IY
+vd
+EN
+IY
+bJ
+in
+xS
+jd
+yl
+Ms
+ax
+NH
+vk
+jW
+vK
+wt
+Vh
+Pd
+Xq
+ma
+pC
+uc
+Ke
+CH
+Aa
+FS
+nd
+Nx
+Vj
+XH
+TR
+RS
+mH
+Yl
+fD
+Hf
+JL
+bD
+hE
+JE
+JE
+EG
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(54,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+MP
+yE
+Eh
+Eh
+aq
+tC
+Ak
+Ak
+Ak
+vx
+vx
+vx
+tC
+Kf
+Cf
+AY
+sU
+TU
+Am
+fW
+fW
+fW
+EY
+Nz
+UH
+lh
+cW
+Wp
+AY
+Hg
+GQ
+zw
+dy
+Jj
+Tq
+Rh
+Qr
+aP
+GV
+Rt
+no
+Eo
+Ki
+IY
+MO
+IY
+Zk
+IY
+Ri
+IY
+lQ
+Um
+IY
+Ig
+PF
+NH
+cu
+kW
+NH
+NH
+NH
+mf
+oR
+OF
+wt
+Vh
+fO
+vf
+fO
+pC
+Vo
+Tr
+Tr
+tW
+AE
+ZQ
+sO
+Vj
+CK
+jZ
+RS
+uf
+ay
+pd
+ve
+MW
+uq
+vF
+bD
+RF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(55,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+nn
+yE
+Eh
+Eh
+vx
+pc
+vx
+vx
+vx
+vx
+vx
+ua
+vx
+vx
+kB
+zB
+AY
+NB
+NB
+UH
+UH
+UH
+eq
+yZ
+Lh
+UH
+YY
+Pm
+zY
+AY
+ok
+sQ
+Vb
+Vb
+Vb
+Vb
+Vb
+Vb
+lr
+GN
+PM
+mv
+pN
+bv
+IY
+rZ
+IY
+SG
+IY
+XP
+IY
+lQ
+ob
+SX
+it
+zP
+NH
+cu
+SV
+Ms
+Dy
+NH
+ml
+SZ
+OF
+DV
+Aj
+vj
+vU
+uu
+Vj
+ZN
+yJ
+yJ
+GB
+tY
+na
+zK
+Vj
+By
+TD
+ux
+rM
+jS
+YU
+HG
+MW
+uq
+vF
+uq
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(56,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Eh
+Eh
+vx
+uy
+ID
+tt
+wh
+th
+Hz
+JR
+pE
+zp
+vx
+ph
+Bf
+Yv
+Yv
+eS
+eS
+eS
+Yv
+gm
+Un
+rN
+DI
+rN
+vD
+yo
+fc
+eC
+eE
+gY
+gY
+km
+QB
+gY
+gY
+HY
+GN
+PM
+PH
+Bz
+Pf
+IY
+mc
+wJ
+IU
+fb
+kQ
+kQ
+kQ
+vM
+IY
+oT
+Ew
+NH
+cu
+kW
+NH
+NH
+NH
+ct
+ri
+Ap
+nj
+Aj
+gn
+OZ
+Bl
+Vj
+te
+tY
+At
+vw
+tY
+tY
+pG
+Vj
+PE
+jZ
+RS
+Gt
+ay
+md
+tm
+JL
+bD
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(57,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Eh
+Mc
+vx
+QP
+Iy
+zE
+Hu
+mZ
+dD
+Ii
+ks
+Te
+vx
+wf
+Bf
+Yv
+yV
+xh
+kk
+SQ
+Yv
+qQ
+VL
+HK
+UH
+CX
+mk
+Mu
+AY
+xK
+IS
+cF
+cF
+nz
+Ix
+cF
+FR
+Xs
+GN
+PM
+Rq
+Nr
+Fz
+IY
+Kz
+Ls
+LR
+oC
+ky
+QS
+Ls
+kb
+IY
+oT
+DZ
+MZ
+OM
+kK
+Ms
+ax
+NH
+nF
+Vd
+Uc
+mK
+Aj
+rk
+OZ
+Bl
+Vj
+CT
+AE
+AE
+eu
+AD
+UR
+xk
+Vj
+Jz
+LO
+ey
+ey
+ey
+ey
+ey
+NY
+JE
+oq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(58,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Eh
+Mc
+vx
+rH
+pK
+NG
+Fa
+AX
+Pv
+VN
+lp
+lJ
+vx
+sp
+wa
+Yv
+Rd
+rY
+YH
+tX
+Rc
+Hv
+OC
+uL
+UH
+kt
+Kv
+bF
+AY
+Td
+Ub
+Td
+Td
+Td
+Td
+Td
+Td
+Td
+gG
+PM
+mM
+iF
+mM
+IY
+IY
+IY
+IY
+Fu
+IY
+IY
+IY
+IY
+IY
+NH
+NH
+NH
+NH
+NH
+NH
+NH
+NH
+Aj
+lz
+Aj
+Aj
+Aj
+Dm
+Gh
+Bl
+Vj
+tu
+tu
+Vj
+lO
+Vj
+tu
+tu
+Vj
+zL
+SE
+vz
+WH
+YD
+sE
+gh
+uB
+bD
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(59,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Eh
+Mc
+vx
+aF
+GP
+IJ
+dJ
+dJ
+dJ
+OJ
+JY
+bI
+vx
+ii
+Bf
+Yv
+Fw
+vE
+vp
+xv
+Yv
+wA
+Xf
+gi
+UH
+wV
+sB
+Nh
+BU
+qo
+uA
+HW
+IA
+Hi
+Dq
+aN
+hp
+YT
+YS
+rg
+rg
+LC
+rg
+JA
+wu
+Kd
+rg
+Sa
+rg
+hR
+ke
+rg
+Wz
+re
+MI
+nJ
+uG
+bu
+ZO
+IW
+qv
+iJ
+ET
+Qv
+dP
+hg
+hg
+nT
+cI
+sC
+yj
+jR
+Dt
+BC
+Pr
+YB
+cV
+Pr
+UT
+Md
+Qt
+Qt
+Qt
+Qt
+ho
+uB
+uq
+vF
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(60,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Eh
+Mc
+vx
+ts
+GR
+hC
+tg
+fq
+hu
+tg
+rO
+Cw
+vx
+UP
+Bf
+Yv
+gE
+Hw
+Yv
+Yv
+Yv
+BU
+AJ
+BU
+Pb
+Pb
+Pb
+BU
+BU
+jJ
+qm
+Vw
+ug
+YT
+nS
+Ov
+zM
+GX
+Fv
+Ov
+bw
+kj
+WK
+WK
+ut
+WK
+wW
+oU
+WK
+Jv
+cK
+qy
+cG
+sG
+HP
+bs
+Dk
+lf
+WS
+tJ
+tJ
+tJ
+SJ
+YI
+oy
+sh
+Nl
+nY
+fS
+xb
+PN
+ys
+ce
+zs
+DO
+BH
+Pw
+DO
+iQ
+KU
+zh
+zh
+lw
+PC
+Ty
+uB
+bD
+vX
+JE
+JE
+Wb
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(61,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+fP
+Uq
+sv
+GM
+rF
+yM
+TM
+zN
+eA
+ub
+cM
+tn
+rO
+ZY
+vx
+TS
+Bf
+Yv
+Sg
+Pg
+Yv
+Mm
+RQ
+Hx
+ej
+Jn
+ZV
+py
+gr
+Ou
+ls
+ew
+AG
+CZ
+CZ
+CZ
+hk
+YF
+YF
+YF
+YF
+YF
+ja
+KF
+KF
+KF
+KF
+KF
+uk
+YT
+HW
+TT
+Fk
+oE
+oE
+nx
+oE
+oE
+FG
+TX
+FG
+LW
+eV
+pa
+CG
+CG
+Rn
+CG
+CG
+nT
+SO
+uW
+uW
+uW
+uW
+uW
+uW
+uW
+uW
+uW
+BD
+uW
+uW
+XV
+XV
+XV
+uW
+LZ
+EJ
+EJ
+EJ
+EJ
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(62,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+nn
+yE
+Eh
+Eh
+vx
+vx
+VJ
+yk
+vx
+YK
+vx
+vx
+vx
+vx
+vx
+vx
+wf
+Bf
+Yv
+Zs
+ch
+Yv
+mA
+zW
+xZ
+KV
+KV
+KV
+EO
+hL
+rb
+hL
+YT
+Rk
+YT
+SL
+YT
+Je
+YF
+Vv
+Tc
+rS
+YF
+YF
+KF
+li
+TN
+pm
+KF
+kU
+YT
+BI
+Wf
+Jt
+oE
+hP
+bT
+Yo
+oE
+AS
+dq
+FG
+GC
+HC
+oc
+CG
+Kc
+oh
+cp
+CG
+mD
+rG
+dl
+dl
+sS
+pR
+rn
+Ja
+Zm
+vq
+pR
+aI
+UG
+iY
+uN
+uN
+uN
+uN
+uN
+uN
+Ax
+nA
+EJ
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(63,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Ve
+Ve
+ak
+XL
+DS
+FD
+La
+RC
+Fj
+Mb
+XZ
+sr
+cg
+Ni
+zD
+hc
+Bf
+Yv
+Zy
+SQ
+Yv
+xE
+RX
+xZ
+MA
+Zt
+gj
+Ku
+hY
+Ku
+hY
+Ku
+LV
+YT
+YT
+YT
+Sh
+Wn
+SY
+mz
+SU
+YF
+Js
+KF
+TL
+Ar
+KM
+Kg
+Xx
+Mq
+SB
+lv
+ZU
+oE
+xi
+Va
+Yo
+oE
+Mf
+qn
+FG
+FG
+CG
+CG
+CG
+GZ
+ci
+PV
+CG
+Xe
+XY
+dl
+NS
+zz
+xf
+oJ
+MG
+vC
+Zg
+xf
+ww
+dI
+OT
+yb
+OT
+OT
+OT
+yb
+OT
+bo
+yK
+Vn
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(64,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+Ve
+dR
+qs
+qY
+ye
+Zw
+La
+Zn
+CI
+fI
+fI
+xA
+Mb
+fy
+zD
+Nc
+Fp
+VV
+VV
+VV
+VV
+jf
+zW
+hG
+WB
+DY
+ZE
+Ku
+RD
+UY
+nD
+Ku
+uD
+YT
+at
+KL
+of
+YF
+Ht
+Yr
+ML
+YF
+Js
+KF
+Ae
+Li
+WW
+KF
+kU
+YT
+YT
+cO
+cd
+oE
+FQ
+Va
+Yo
+oE
+eO
+Fr
+YR
+FG
+MX
+oY
+CG
+CU
+MK
+qR
+CG
+iS
+KX
+dl
+QK
+pV
+xf
+qV
+MG
+vC
+vi
+xf
+ww
+dI
+uh
+ih
+OL
+UW
+hy
+Ti
+OT
+OT
+yK
+Vn
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(65,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+fw
+dT
+qP
+pr
+Gm
+Vx
+Ph
+Zn
+FC
+bm
+CE
+vg
+ol
+oa
+zD
+iZ
+Xk
+mu
+ZR
+QG
+XC
+IF
+zW
+Ku
+Ku
+Ku
+Ku
+Ku
+DT
+ll
+nD
+YM
+Rk
+rw
+Ep
+Mt
+EK
+YF
+Yi
+KO
+Co
+YF
+Js
+KF
+qK
+tG
+xH
+KF
+XU
+bg
+iI
+Hl
+YT
+oE
+FB
+Vt
+nO
+rL
+mh
+KR
+nw
+FG
+VC
+gD
+CG
+CG
+RT
+CG
+CG
+yO
+hg
+dl
+sR
+pV
+xf
+qV
+MG
+dL
+kH
+xf
+zO
+dI
+uh
+ba
+Ll
+fi
+bY
+bY
+Ll
+OT
+yK
+Vn
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(66,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+fw
+to
+tM
+qY
+ye
+Pj
+su
+RC
+ZP
+Xh
+RC
+fa
+RC
+Ug
+zD
+Ue
+hT
+mu
+ZI
+Hs
+zb
+IF
+GA
+Ku
+Kt
+Ca
+vQ
+nD
+hX
+nD
+nD
+YM
+Rk
+kU
+ER
+ER
+ER
+ER
+ER
+bU
+bU
+YF
+YF
+KF
+MN
+MN
+vu
+vu
+vu
+vu
+vu
+ue
+YT
+oE
+ar
+tZ
+GG
+oE
+Nw
+Fr
+op
+FN
+Vs
+dH
+oW
+vb
+pA
+Ij
+CG
+nT
+hg
+dl
+ZC
+YQ
+xf
+MF
+MG
+vC
+Zg
+xf
+mY
+bS
+uh
+om
+Ll
+fi
+bY
+bY
+Ll
+OT
+yK
+Vn
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(67,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+gH
+fw
+IM
+Yp
+BY
+DS
+Ee
+UI
+rX
+Rv
+Rv
+MB
+fT
+RG
+PS
+Le
+IH
+JN
+QC
+QC
+QC
+wZ
+hU
+zW
+YM
+LD
+Se
+XE
+Kj
+hX
+nD
+uM
+YM
+Rk
+kU
+ER
+rW
+lC
+HT
+ER
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+vu
+Br
+AP
+Ys
+vu
+ue
+oF
+oE
+gC
+Og
+cf
+oE
+sl
+Rr
+Fd
+FG
+fL
+Hy
+fH
+hs
+ir
+ip
+CG
+cA
+hg
+dl
+Nm
+on
+pR
+rI
+SS
+Dn
+va
+pR
+Zf
+mG
+uh
+ih
+Kw
+iH
+yc
+KQ
+OT
+OT
+yK
+Vn
+vF
+uq
+uq
+uq
+yX
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(68,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Ah
+Ul
+Ve
+ye
+ye
+ye
+DS
+qS
+bX
+Ba
+wT
+wT
+wT
+UO
+yR
+wT
+QC
+vA
+hT
+qp
+SI
+jy
+mO
+zc
+zW
+JJ
+JJ
+JJ
+JJ
+JJ
+LJ
+nD
+NR
+Ku
+wL
+Nf
+wS
+SH
+jD
+PI
+IZ
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+AT
+Aq
+WE
+AB
+gf
+rP
+YT
+oE
+oE
+oE
+oE
+oE
+FG
+mR
+FG
+FG
+xg
+TK
+oM
+ev
+DA
+hv
+CG
+ck
+os
+dl
+wp
+pV
+pR
+pR
+Ns
+pR
+pR
+pR
+DN
+mG
+OT
+yb
+OT
+Iu
+OT
+yb
+OT
+bo
+yK
+Vn
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(69,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+gH
+jr
+eB
+wY
+fl
+WG
+lU
+On
+Qu
+Ne
+Ne
+Ne
+Qu
+xm
+wT
+QC
+lB
+GD
+mu
+SF
+HF
+mO
+zc
+zW
+YM
+un
+kE
+RB
+hH
+Av
+gx
+yd
+YM
+wy
+kU
+ER
+zg
+aj
+Wl
+IZ
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+AT
+Qd
+VH
+Qa
+vu
+QF
+YT
+hJ
+iG
+Jk
+pX
+hJ
+Eu
+bG
+ep
+CG
+CG
+CG
+CG
+CG
+qW
+CG
+CG
+mr
+Uk
+pH
+le
+Be
+Xa
+ZJ
+jF
+KC
+Su
+Hb
+lP
+Xl
+IB
+IB
+IB
+jN
+oG
+oG
+oG
+oG
+si
+Vn
+vX
+sa
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(70,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+NJ
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+jr
+hl
+sx
+IX
+eh
+Rv
+UK
+Qu
+iO
+jl
+xd
+Qu
+cy
+oB
+QC
+GT
+ya
+mu
+NN
+jy
+mO
+Ha
+df
+YM
+VS
+ME
+Qx
+gL
+zy
+En
+hz
+YM
+am
+wi
+bi
+bi
+bi
+bi
+bi
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+IC
+IC
+IC
+IC
+IC
+fN
+xc
+hJ
+zk
+bf
+pv
+uV
+oH
+Pp
+mJ
+dw
+Ng
+ec
+ik
+iB
+QJ
+Od
+ta
+gq
+mI
+dl
+VE
+EC
+Yh
+TB
+wp
+wp
+NZ
+st
+wN
+Lx
+CP
+cn
+CP
+CP
+CP
+CP
+cn
+CP
+JI
+Vn
+uq
+IV
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(71,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+gH
+jr
+Hk
+ic
+If
+WG
+Lc
+xU
+TH
+ti
+Aw
+eH
+Qu
+io
+wT
+QC
+CQ
+ah
+mu
+SF
+aY
+mO
+zc
+zW
+YM
+so
+jP
+Ow
+gL
+Cv
+db
+WT
+YM
+bn
+AQ
+bi
+Si
+gK
+LX
+wE
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+PA
+da
+dc
+zR
+IC
+Im
+ei
+hJ
+hJ
+Zx
+hJ
+hJ
+hJ
+hJ
+Nv
+Yf
+Jx
+Oc
+QA
+Jx
+MM
+QO
+ta
+Ie
+hg
+gQ
+Ps
+Ps
+gQ
+YG
+gQ
+Ps
+Ps
+gQ
+YJ
+mb
+Kr
+Kr
+Kr
+UU
+uN
+uN
+uN
+uN
+dA
+Vn
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(72,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Ah
+pn
+bk
+CM
+CM
+CM
+Qk
+wT
+fF
+TH
+Qg
+vs
+FH
+Qu
+kS
+wT
+QC
+tS
+hT
+Bt
+kG
+jy
+mO
+zc
+zW
+JJ
+JJ
+JJ
+JJ
+JJ
+vH
+nD
+NR
+Ku
+mE
+Ir
+br
+KG
+sn
+kL
+wE
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+PA
+Wk
+iT
+MQ
+qw
+ie
+ei
+hJ
+sf
+gT
+Vq
+lZ
+Gn
+hJ
+qh
+BF
+qh
+qh
+qh
+qD
+VA
+qD
+qD
+sM
+hg
+gQ
+xD
+pw
+uP
+uI
+dQ
+Wt
+hi
+gQ
+qM
+dI
+nK
+GS
+nK
+Ma
+nK
+GS
+nK
+VQ
+PY
+Vn
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(73,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+gH
+DF
+tH
+sA
+qO
+Qk
+wT
+xU
+TH
+hQ
+ab
+mj
+nq
+gW
+go
+ur
+Vc
+xa
+QC
+QC
+QC
+BA
+nW
+zW
+YM
+Op
+fh
+JC
+AK
+zy
+nD
+DL
+YM
+OO
+AQ
+bi
+HX
+Gu
+JB
+bi
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+IC
+RM
+De
+oA
+IC
+uC
+jn
+hJ
+BV
+RE
+QI
+zf
+wR
+hJ
+Lr
+RH
+Jq
+dd
+qh
+lX
+Df
+zn
+qD
+lt
+hg
+gQ
+dO
+sZ
+tz
+xu
+Do
+hA
+uJ
+Ps
+wO
+dI
+xJ
+VY
+zV
+Vm
+gO
+JD
+nK
+nK
+PY
+Vn
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(74,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+DF
+Lw
+dh
+TE
+CM
+zC
+xL
+Qu
+tF
+Th
+cE
+Qu
+LN
+jv
+QC
+zq
+he
+mu
+gy
+QG
+XC
+zc
+GA
+Ku
+Ru
+Xb
+EI
+WY
+ov
+WY
+Ft
+YM
+OO
+AQ
+bi
+bi
+bi
+bi
+bi
+HH
+HH
+nf
+nf
+fr
+jz
+jz
+IC
+IC
+IC
+IC
+IC
+nQ
+ei
+hJ
+fm
+Oj
+PQ
+uZ
+CJ
+hJ
+KW
+Qh
+Qp
+vW
+qh
+ef
+tv
+Ol
+qD
+YN
+hg
+gQ
+cQ
+gQ
+fK
+mV
+dQ
+vJ
+ff
+Ps
+XW
+dI
+xJ
+xO
+yH
+pe
+Hd
+Hd
+yH
+nK
+PY
+Vn
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(75,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+DF
+iD
+vZ
+JX
+Zj
+Rv
+Ym
+Qu
+Ne
+Ne
+Ne
+Qu
+cP
+wT
+QC
+Iq
+HN
+mu
+Vr
+Hs
+zb
+zc
+zW
+Ku
+Ku
+Ku
+Ku
+Ku
+gs
+nD
+tb
+YM
+OO
+sg
+cU
+qL
+Ur
+nf
+uv
+zr
+TF
+nf
+OA
+fr
+fu
+jA
+FK
+fr
+cZ
+GK
+BL
+mm
+ei
+hJ
+hJ
+sI
+hJ
+EB
+hJ
+hJ
+HR
+Qh
+aR
+Zi
+qh
+RP
+yu
+EM
+qD
+bR
+hg
+gQ
+WP
+Ps
+PP
+dQ
+dQ
+Ps
+qb
+gQ
+WQ
+dI
+xJ
+qH
+yH
+pe
+Hd
+Hd
+yH
+nK
+PY
+Vn
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(76,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+bk
+kT
+mn
+TE
+CM
+qG
+PO
+QQ
+wT
+wT
+wT
+QQ
+Nj
+wT
+Fe
+Fe
+Me
+Fe
+Fe
+Fe
+Fe
+KE
+zW
+Dp
+Di
+VD
+EV
+Ku
+xn
+MT
+tb
+Ku
+Qc
+AQ
+RZ
+yi
+iW
+nf
+Oe
+rc
+pJ
+nf
+OA
+fr
+JH
+hK
+bt
+fr
+AQ
+ei
+ei
+se
+Ws
+hJ
+SD
+gZ
+hJ
+ui
+sK
+hJ
+TY
+Au
+Zq
+gF
+qh
+cs
+LU
+Pz
+qD
+PD
+KX
+gQ
+HB
+Ps
+gp
+Hn
+WA
+Ps
+VT
+gQ
+Wd
+dI
+xJ
+VY
+VX
+eU
+wC
+Yq
+nK
+nK
+PY
+Vn
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(77,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+bk
+bk
+wM
+yB
+Qk
+dB
+GW
+RJ
+YO
+eG
+DE
+ze
+eQ
+qe
+Tm
+mw
+bE
+BS
+QV
+cm
+Fe
+Qn
+zW
+xZ
+MA
+Zt
+TJ
+Ku
+aH
+Ku
+rQ
+Ku
+Lo
+EQ
+Qj
+ei
+bd
+cJ
+No
+KJ
+Ay
+nf
+OA
+fr
+Qe
+Vy
+Cb
+Tx
+Ch
+Dz
+im
+aQ
+kn
+hJ
+CR
+Bj
+hJ
+Bj
+Xi
+hJ
+qh
+qh
+qh
+qh
+qh
+qa
+er
+wo
+qD
+bh
+Ok
+gQ
+do
+gQ
+Ps
+gQ
+Ps
+gQ
+Pn
+gQ
+lA
+dI
+nK
+dU
+nK
+nK
+dU
+dU
+nK
+VQ
+PY
+Vn
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(78,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Sy
+ag
+aS
+aS
+XB
+XB
+XB
+ZG
+ZG
+ZG
+Ao
+ZG
+ZG
+ZG
+ZG
+Zv
+Bd
+Ya
+xI
+mg
+nV
+Fe
+sz
+ao
+xZ
+KV
+KV
+KV
+Ky
+AF
+Zp
+ly
+ei
+OO
+ei
+qu
+ei
+Sz
+nf
+Wa
+QM
+dv
+nf
+nf
+fr
+Iz
+Dc
+SP
+fr
+AQ
+ei
+lD
+cl
+wn
+hJ
+Rb
+Ic
+hJ
+Ic
+Rb
+hJ
+an
+lR
+pU
+OH
+qD
+OU
+dr
+rm
+qD
+yt
+ht
+gQ
+dY
+Lv
+Kb
+Kb
+Kb
+HE
+qU
+gQ
+lV
+yL
+qg
+oG
+oG
+oG
+oG
+oG
+oG
+KT
+UJ
+EJ
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(79,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uH
+ag
+aS
+ZD
+pZ
+qI
+ZG
+we
+VW
+LL
+jc
+ae
+sL
+Zb
+Zv
+Bk
+HA
+Fh
+Cz
+Nk
+Fe
+px
+hS
+tR
+vB
+lF
+jY
+lM
+Jb
+za
+sb
+eN
+qj
+ei
+AQ
+ei
+DC
+nf
+nf
+nf
+nf
+nf
+NQ
+fr
+fr
+fr
+fr
+fr
+hN
+ei
+aE
+fz
+VR
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+hJ
+an
+CL
+eV
+pa
+qD
+qD
+Da
+qD
+qD
+dn
+XF
+WR
+WR
+WR
+qA
+qA
+qA
+qA
+qA
+qA
+qA
+qA
+oX
+oX
+oX
+oX
+oX
+kP
+EJ
+EJ
+EJ
+EJ
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(80,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+QY
+VI
+ED
+rh
+ZG
+oO
+ed
+Sv
+LH
+vo
+vo
+IN
+Zv
+Fi
+fd
+YZ
+nh
+BO
+OQ
+FT
+wz
+FT
+iz
+dK
+FT
+wz
+wz
+FT
+FT
+HL
+vr
+vh
+Wy
+Sj
+Jb
+Sj
+mS
+Sj
+Sj
+Sj
+pg
+MD
+nX
+nX
+AZ
+nX
+dG
+nX
+nX
+Ot
+nX
+ON
+Wq
+DJ
+hW
+Vz
+gd
+KH
+zQ
+Xu
+Xu
+Xu
+TO
+jH
+iL
+nG
+Xu
+qT
+Oa
+WR
+Mi
+My
+qA
+zX
+jj
+nt
+FW
+kz
+OV
+qA
+XS
+kp
+tr
+Ux
+pu
+Db
+bD
+ea
+JE
+JE
+FP
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(81,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Dl
+CD
+gb
+wx
+Ei
+Bs
+oI
+WD
+LA
+BJ
+bq
+bq
+Gp
+Zv
+Xd
+QX
+Fh
+FZ
+xX
+OQ
+WJ
+JS
+Xj
+FL
+iq
+Ck
+AH
+iq
+mo
+FT
+kM
+lc
+Vf
+vL
+eP
+Uf
+LE
+xx
+id
+yx
+ei
+ou
+Yt
+ei
+aX
+mQ
+Wj
+Wj
+Wj
+Wj
+Wj
+WU
+tw
+Wj
+Wj
+Wj
+MH
+xx
+xF
+XJ
+CV
+kv
+jg
+XJ
+DK
+XJ
+XJ
+Hp
+RA
+Dd
+gM
+dp
+Jc
+qA
+FY
+WX
+hB
+pM
+GE
+cX
+qA
+ka
+Wv
+lN
+Ek
+pq
+Db
+uq
+vF
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(82,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+QY
+BM
+zx
+US
+ZG
+RU
+VG
+ws
+Bi
+IK
+IK
+mF
+cY
+OE
+Py
+xI
+pY
+ez
+OQ
+VZ
+Eg
+Eg
+Ta
+iq
+iq
+iq
+iq
+xB
+LY
+FE
+Cs
+FE
+FE
+FE
+FE
+FE
+FE
+FE
+FE
+Wu
+Tv
+Mv
+ei
+aD
+aD
+YL
+ry
+dW
+aD
+aD
+Ds
+aD
+aD
+Xr
+Nb
+Nb
+aD
+iM
+LF
+aM
+aM
+Mg
+Mg
+Mg
+aM
+aM
+nI
+nI
+nI
+WR
+sY
+LP
+qA
+zX
+yY
+yQ
+du
+XG
+es
+qA
+Sk
+vI
+yD
+IE
+Yu
+kP
+RF
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(83,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+aS
+vc
+BT
+dV
+ZG
+qZ
+oQ
+Re
+dm
+YX
+VF
+Is
+Zv
+Gi
+JM
+ZF
+xG
+Bv
+OQ
+fX
+iq
+iq
+bA
+zj
+LM
+Fb
+Bx
+Cj
+LY
+WC
+Ik
+Cg
+hI
+UM
+Xv
+wP
+lY
+Cg
+bz
+Wu
+Iw
+zl
+ei
+aD
+wK
+Bn
+Zr
+xs
+zG
+Ih
+ru
+aB
+aD
+Mr
+fo
+Yb
+aD
+Rl
+wg
+aM
+oS
+oL
+gu
+oL
+UN
+aM
+tI
+JK
+uR
+WR
+Gc
+yv
+qA
+qA
+qA
+qA
+ha
+qA
+qA
+qA
+oX
+oX
+pt
+oX
+oX
+kP
+RF
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(84,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+aS
+aS
+XB
+XB
+ZG
+ZG
+ZG
+hF
+ZG
+ZG
+ZG
+ZG
+Zv
+Fe
+MS
+Fe
+Fe
+Fe
+OQ
+FT
+jK
+lo
+xV
+oK
+iK
+XX
+jq
+yg
+Hj
+iA
+CC
+yT
+yT
+xT
+Zu
+yT
+yT
+yT
+eM
+Wu
+co
+zl
+ei
+aD
+mN
+sc
+cS
+hV
+LK
+IQ
+Qq
+sq
+aD
+vY
+AO
+vY
+aD
+nH
+QR
+aM
+Xp
+Pl
+ST
+Pl
+FM
+aM
+xz
+Wo
+jG
+OX
+BZ
+QE
+yq
+WR
+Xn
+Tn
+lH
+Nd
+pF
+WZ
+nN
+Cp
+AL
+cq
+Ye
+Fn
+JE
+en
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(85,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Sy
+ag
+ni
+ni
+eF
+eF
+Gr
+ee
+Po
+HZ
+nv
+fn
+mx
+Gr
+sJ
+bx
+LY
+YA
+TV
+iE
+FT
+zo
+NF
+xV
+eb
+Kp
+kw
+Kp
+Eb
+LY
+IG
+Ik
+bl
+bl
+bl
+bl
+bl
+bl
+Cg
+gz
+Kl
+Zl
+oD
+ei
+aD
+Es
+ig
+BK
+BK
+NM
+Za
+gU
+Sr
+XO
+fR
+jQ
+Sf
+fJ
+Sb
+Tf
+tq
+DP
+jI
+DW
+FU
+JT
+uU
+hM
+UE
+nE
+UA
+zU
+Bu
+BB
+ps
+de
+QH
+fx
+mt
+OI
+bN
+tD
+zS
+Lk
+mi
+dN
+GI
+uq
+vF
+uq
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(86,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+ro
+ag
+ni
+ni
+Qi
+Gr
+eT
+BG
+au
+ft
+Ac
+xN
+Gr
+Cr
+bx
+LY
+Us
+Uh
+rr
+rp
+jL
+AN
+me
+jC
+iq
+iq
+iq
+Eb
+LY
+AC
+Uu
+Et
+lx
+kc
+PZ
+od
+rA
+pi
+TQ
+Wu
+Tk
+Uj
+sm
+aD
+wc
+oo
+cD
+cD
+MJ
+sc
+QZ
+Bo
+aD
+Zc
+sc
+Zc
+aD
+fs
+Ab
+aM
+zA
+Dx
+eo
+Dx
+hx
+ZZ
+hm
+ZW
+cv
+UD
+Tj
+lG
+tO
+WR
+Fc
+iw
+vv
+tf
+JQ
+JQ
+JQ
+JQ
+Tl
+JQ
+JQ
+bj
+bD
+vF
+bD
+RF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(87,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Sy
+ag
+Qw
+Rw
+tp
+Yx
+di
+eX
+qB
+tU
+Pa
+Gr
+sD
+bx
+LY
+Kq
+EU
+pD
+FT
+eI
+CO
+Uz
+Vp
+Sx
+aG
+iq
+dx
+LY
+Cm
+Ip
+bl
+fj
+jh
+rC
+bZ
+bl
+Cg
+vP
+Wu
+HO
+dj
+sm
+aD
+JU
+LB
+nu
+yI
+lk
+lu
+rz
+ss
+aD
+bW
+rV
+EW
+aD
+uX
+Go
+aM
+kd
+Dx
+gX
+aZ
+gl
+ZZ
+Nu
+rD
+IP
+fp
+cw
+yU
+dZ
+WR
+GU
+bP
+XN
+hd
+JQ
+wI
+Xt
+UF
+Rm
+Lz
+RR
+iV
+bD
+Cx
+JE
+JE
+sa
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(88,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+ni
+ni
+Gr
+ac
+lS
+Fs
+eD
+xR
+NK
+qJ
+yy
+bx
+LY
+LY
+LY
+LY
+LY
+LY
+Rp
+Rp
+LY
+Rp
+Rp
+Rp
+LY
+LY
+yC
+TZ
+XR
+XR
+XR
+XR
+XR
+XR
+iy
+vP
+Wu
+JF
+JF
+JF
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+Ct
+yp
+Sc
+Dx
+Dx
+Dx
+be
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+Dx
+JQ
+JQ
+rj
+ox
+cT
+NV
+sj
+Oo
+iV
+uq
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(89,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Sy
+ag
+ni
+Gr
+Yy
+Il
+dt
+Io
+jt
+fG
+Gr
+tN
+PW
+jw
+ai
+cr
+fB
+yy
+Bw
+sV
+sV
+bM
+Ss
+Ss
+Ss
+Ss
+yF
+Em
+BR
+LT
+mL
+kr
+GF
+Lq
+UX
+Lm
+ul
+Oh
+Dv
+Dv
+Dv
+Dv
+Dv
+Dv
+Qz
+Dv
+lT
+Dv
+il
+OR
+CY
+Dv
+Qz
+Dv
+Dv
+bB
+kq
+Dx
+fM
+uY
+hq
+HD
+Dx
+XQ
+JV
+KS
+Dx
+XQ
+Pk
+KS
+Dx
+Cn
+RN
+ku
+Dx
+ZM
+FO
+Qy
+pj
+Qy
+wB
+DG
+PB
+iV
+bD
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(90,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+gH
+ni
+ni
+Gr
+pl
+Gr
+Gr
+Gr
+Gr
+Gr
+VK
+AI
+yy
+yy
+bx
+yy
+yy
+xq
+yy
+yy
+tP
+yy
+yy
+yy
+yy
+AW
+Cg
+yr
+XR
+UZ
+BQ
+Ud
+zt
+XR
+Fl
+Cg
+nL
+oe
+SM
+Wu
+aw
+mB
+oe
+Lu
+oe
+HV
+oe
+oe
+Lu
+oe
+oe
+KY
+oe
+oe
+QU
+PR
+Dx
+zT
+ZA
+vV
+uz
+Dx
+Ad
+RN
+RN
+Oq
+Ad
+RN
+RN
+lb
+Wi
+bL
+sH
+Dx
+xj
+We
+XT
+XT
+XT
+kC
+uT
+lW
+bj
+RF
+vF
+uq
+RF
+dk
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(91,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Sy
+yG
+YV
+YV
+wX
+ni
+ni
+ni
+ni
+ni
+ge
+aW
+wG
+wG
+aW
+ge
+ge
+wG
+ge
+ge
+wG
+ge
+ge
+ge
+wG
+wG
+FE
+Ka
+oz
+oz
+oz
+oz
+oz
+oz
+gP
+FE
+Wu
+uQ
+uQ
+Wu
+Wu
+Wu
+Wu
+Ww
+Wu
+Wu
+Wu
+Wu
+Ww
+Wu
+Wu
+Wu
+Wu
+uQ
+uQ
+Wu
+ym
+Yj
+ZA
+vV
+Ez
+Dx
+jx
+ln
+OY
+Dx
+Bm
+kI
+Ai
+Dx
+Qm
+Yc
+zI
+CS
+Gl
+tl
+KN
+Yw
+FA
+IR
+DG
+PB
+iV
+bD
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(92,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Hc
+RF
+bD
+bD
+uq
+uq
+uq
+uq
+bD
+bD
+Sy
+ag
+uq
+gH
+RF
+bD
+bD
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+bD
+RF
+vF
+RF
+uq
+uq
+uq
+ea
+tj
+EG
+bD
+bD
+uq
+uq
+uq
+bD
+bD
+RF
+vF
+RF
+uq
+uq
+uq
+vF
+RF
+RF
+bD
+bD
+uq
+uq
+uq
+fg
+dF
+xt
+vN
+sX
+Dx
+KK
+gg
+Ff
+UV
+bK
+gg
+rT
+cj
+bK
+gg
+KB
+iC
+XT
+St
+XT
+XT
+XT
+kC
+sj
+Oo
+iV
+uq
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(93,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Sy
+Xw
+yE
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+Ci
+JE
+JE
+JE
+JE
+EG
+IV
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+JO
+JE
+JE
+JE
+JE
+EG
+RF
+uq
+uq
+uq
+uq
+uq
+bD
+fg
+la
+ZA
+TG
+Hq
+Tp
+pk
+eR
+zv
+Gb
+Fq
+Af
+eR
+Gb
+eR
+eR
+hZ
+iC
+PJ
+sj
+gk
+Wm
+BE
+As
+Jw
+bb
+iV
+bD
+vF
+uq
+RF
+vF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(94,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+bD
+ym
+ym
+hO
+YW
+bc
+Dx
+lK
+gg
+yf
+dg
+jk
+gg
+rT
+NX
+jk
+gg
+Er
+iC
+DH
+Ry
+Ry
+DH
+DH
+MR
+Wc
+DH
+pQ
+RF
+hE
+JE
+JE
+EG
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(95,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+RF
+RF
+bD
+bD
+ym
+ym
+eY
+Hr
+Dx
+wv
+Ut
+ZT
+Dx
+Ex
+ju
+Lt
+Dx
+IO
+Vl
+or
+iC
+AR
+QD
+QD
+EP
+FX
+Ro
+hr
+qx
+Vk
+bD
+vF
+bD
+RF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(96,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+RF
+RF
+RF
+RF
+RF
+RF
+uq
+uq
+ym
+Vg
+el
+Dx
+aL
+RN
+RN
+Ts
+aL
+RN
+RN
+LQ
+tA
+bL
+wj
+iC
+rd
+iv
+iv
+iv
+pL
+Nq
+Yz
+YC
+Vk
+uq
+vF
+uq
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(97,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+RF
+RF
+RF
+RF
+RF
+ea
+JE
+JE
+JE
+AM
+JE
+JE
+oi
+ym
+Dx
+nb
+JV
+KS
+Dx
+nb
+fv
+KS
+Dx
+Cn
+RN
+Eq
+iC
+BX
+Gq
+BX
+mX
+xQ
+Ob
+Sq
+my
+Vk
+uq
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(98,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+pz
+JE
+JE
+JE
+JE
+JE
+JE
+JE
+EG
+RF
+RF
+RF
+vX
+FP
+bD
+bD
+ym
+ym
+RN
+RN
+jb
+ym
+RN
+RN
+kN
+ym
+RN
+RN
+SR
+Vg
+pQ
+Ce
+Ce
+pQ
+pQ
+Ce
+VO
+pQ
+pQ
+bD
+vF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(99,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+bD
+bD
+RF
+RF
+RF
+RF
+uq
+uq
+uq
+ea
+tT
+sa
+RF
+bD
+bD
+bD
+bD
+vX
+JE
+sa
+RF
+vF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(100,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+pz
+JE
+JE
+JE
+JE
+JE
+EG
+RF
+IV
+uq
+uq
+uq
+uq
+uq
+uq
+pz
+XA
+JE
+cb
+RF
+RF
+RF
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(101,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+RF
+vX
+JE
+JE
+JE
+JE
+FP
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(102,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(103,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(104,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(105,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(106,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(107,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(108,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(109,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(110,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(111,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(112,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(113,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(114,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(115,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+lg
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(116,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(117,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(118,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(119,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(120,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(121,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(122,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(123,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(124,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(125,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(126,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(127,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(128,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(129,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(130,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(131,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(132,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(133,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(134,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(135,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(136,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(137,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(138,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(139,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
+(140,1,1) = {"
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+uq
+"}
diff --git a/maps/stellardelight/stellar_delight2.dmm b/maps/stellardelight/stellar_delight2.dmm
new file mode 100644
index 0000000000..574fe6745e
--- /dev/null
+++ b/maps/stellardelight/stellar_delight2.dmm
@@ -0,0 +1,42712 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"ab" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftstarboard)
+"ac" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"ad" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"ae" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"af" = (
+/obj/item/bee_pack,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/weapon/tool/crowbar,
+/obj/item/bee_smoker,
+/obj/item/beehive_assembly,
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to start your own honey farm.";
+ name = "beekeeping crate"
+ },
+/obj/item/beehive_assembly,
+/obj/item/beehive_assembly,
+/obj/item/beehive_assembly,
+/obj/item/beehive_assembly,
+/obj/item/bee_pack,
+/obj/item/bee_pack,
+/obj/item/bee_pack,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ag" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"ah" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "CO2 Filter";
+ tag_north = 2;
+ tag_south = 1;
+ tag_west = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"ai" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"aj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "Hydroponics/Kitchen Access";
+ req_one_access = list(35,28)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics)
+"ak" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"al" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"am" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"an" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"ao" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"ap" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"aq" = (
+/obj/effect/landmark/start/atmostech,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"ar" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"as" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"at" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"au" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"aw" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/structure/symbol/sa{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"ax" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"ay" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"az" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"aB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"aC" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"aD" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#e6ab22";
+ fill_color = "#877242";
+ name = "Combustion Workshop";
+ req_access = list(24);
+ stripe_color = "#2ebfbd"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/combustionworkshop)
+"aE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"aF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/white/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"aG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"aI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"aK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"aL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"aM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"aN" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/locker)
+"aO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"aQ" = (
+/obj/structure/grille,
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"aR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/trolley{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"aS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/obj/effect/landmark/start/botanist,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"aT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "botanylockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"aW" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"aX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"aY" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"aZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"bb" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bc" = (
+/obj/machinery/seed_extractor,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bd" = (
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"be" = (
+/obj/machinery/computer/station_alert,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"bf" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/triage)
+"bg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/port)
+"bh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/hatch/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"bi" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"bj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "\improper HIGH VOLTAGE";
+ pixel_y = 32
+ },
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bk" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"bl" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"bo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"bp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"bq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bs" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"bt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "botanylockdown";
+ name = "Window Lockdown";
+ pixel_x = -25
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bu" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"bw" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"bx" = (
+/obj/structure/sign/double/barsign,
+/turf/simulated/wall/bay/steel,
+/area/crew_quarters/bar)
+"by" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"bz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/camera/network/engine{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/engineering/engine_room)
+"bA" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"bB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"bC" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/starboardescape)
+"bD" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"bE" = (
+/obj/machinery/door/blast/angled,
+/turf/simulated/floor,
+/area/quartermaster/storage)
+"bF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/storage)
+"bH" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"bI" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/portescape)
+"bJ" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"bK" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/sleeper{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/sleeper_console{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/body_scanner{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/scanner_console,
+/obj/item/weapon/circuitboard/grinder{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/bioprinter{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/chem_master{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"bL" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"bN" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"bP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"bR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "maintenance access";
+ req_one_access = list(24);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/atmos/monitoring)
+"bS" = (
+/obj/machinery/biogenerator,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bT" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/storage)
+"bU" = (
+/mob/living/simple_mob/vore/alienanimals/teppi/baby,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bV" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/book/manual/bar_guide,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"bW" = (
+/obj/effect/floor_decal/milspec/cargo,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"bX" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"bY" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/aftport)
+"bZ" = (
+/obj/machinery/computer/atmoscontrol,
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 6
+ },
+/obj/machinery/requests_console/preset/engineering{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"ca" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cb" = (
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"ce" = (
+/obj/machinery/vending/wardrobe/cargodrobe,
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"cf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"cg" = (
+/obj/structure/bed/chair/comfy/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/requests_console/preset/bridge{
+ pixel_y = 30
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"ch" = (
+/turf/simulated/wall/bay/r_wall/green,
+/area/crew_quarters/kitchen)
+"ci" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"cj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"ck" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"cl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/monitoring)
+"cm" = (
+/obj/machinery/shieldgen,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"cn" = (
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"co" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"cq" = (
+/obj/machinery/air_sensor{
+ frequency = 1438;
+ id_tag = "burn_chamber";
+ output = 63
+ },
+/obj/machinery/camera/network/engine,
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck2/combustionworkshop)
+"cr" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"cs" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"ct" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"cu" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"cv" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/fuelstorage)
+"cw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"cx" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"cy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Void";
+ sortType = "Void"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"cz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/sign/department/cargo{
+ pixel_x = 32
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"cA" = (
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"cB" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"cC" = (
+/obj/structure/flora/pottedplant/decorative,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"cD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"cE" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"cF" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"cG" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"cH" = (
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"cI" = (
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"cJ" = (
+/obj/structure/bed/chair/comfy/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"cK" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cL" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"cM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"cN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "engine_airlock";
+ pixel_y = 24;
+ req_one_access = list(10,11);
+ tag_airpump = "engine_airpump";
+ tag_chamber_sensor = "engine_sensor";
+ tag_exterior_door = "engine_exterior";
+ tag_interior_door = "engine_interior"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "engine_airpump"
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/engineering/engine_room)
+"cO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"cP" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"cQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ req_access = list(25);
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/barbackroom)
+"cR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"cT" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"cU" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "cargounload"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"cV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"cW" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/button/remote/blast_door{
+ id = "kitchenlockdown";
+ name = "Window Lockdown";
+ pixel_x = 2;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"cX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "qmwindows";
+ name = "Privagy Shutters"
+ },
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/quartermaster/qm)
+"cY" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/milspec/color/blue/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"cZ" = (
+/obj/item/device/flashlight/lamp/green{
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/blue_captain,
+/obj/structure/table/darkglass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/requests_console/preset/captain{
+ pixel_x = -30
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"da" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"db" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"dc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"dd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"de" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"dg" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"dh" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"di" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"dj" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"dk" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"dm" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"do" = (
+/turf/simulated/wall/bay/brown,
+/area/quartermaster/storage)
+"dp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"dq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"dr" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"ds" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"dt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"du" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"dv" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"dw" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"dx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"dy" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"dz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"dA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/workshop)
+"dB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"dC" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/portaft)
+"dD" = (
+/obj/structure/table/standard,
+/obj/item/stack/nanopaste,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"dF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"dG" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"dH" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 1
+ },
+/obj/machinery/camera/network/engine{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"dI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"dJ" = (
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"dK" = (
+/obj/machinery/computer/transhuman/designer{
+ dir = 8
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"dL" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftport)
+"dM" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"dN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"dO" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"dP" = (
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"dQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"dR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"dS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"dU" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"dV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/o2production)
+"dX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"dY" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"dZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"ea" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"eb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "d2_portmaint_airpump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "d2_portmaint_airlock";
+ pixel_y = 24;
+ req_one_access = list(13);
+ tag_airpump = "d2_portmaint_airpump";
+ tag_chamber_sensor = "d2_portmaint_sensor";
+ tag_exterior_door = "d2_portmaint_exterior";
+ tag_interior_door = "d2_portmaint_interior"
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = "d2_portmaint_sensor";
+ pixel_y = -24;
+ req_access = list(13)
+ },
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"ec" = (
+/obj/effect/floor_decal/milspec/color/blue/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"ed" = (
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"ee" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"ef" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer W";
+ name = "Medbay Doors Control";
+ pixel_x = -6;
+ pixel_y = 32
+ },
+/obj/effect/landmark/start/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"eg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/fuelstorage)
+"eh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"ei" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"ej" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ek" = (
+/obj/structure/sign/directions/recreation{
+ dir = 4;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"el" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"em" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"en" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/aftstarboard)
+"ep" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"eq" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/storage)
+"er" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"es" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Sorting Office";
+ sortType = "Sorting Office"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"et" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"eu" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"ev" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/item/clothing/shoes/black,
+/obj/item/device/communicator,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"ew" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "bridgelockdown";
+ name = "Bridge Lockdown";
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"ex" = (
+/obj/structure/closet/hydrant{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"ey" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"ez" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"eA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"eB" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"eC" = (
+/turf/simulated/wall/bay/steel,
+/area/storage/primary)
+"eD" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/sign/directions/stairs_up{
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/stairs_down{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"eE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"eF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"eG" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"eH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"eI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"eJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/full,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"eK" = (
+/obj/structure/table/steel,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"eL" = (
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"eM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"eN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"eO" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"eP" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"eQ" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/requests_console/preset/engineering{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"eR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"eS" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"eT" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"eU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"eV" = (
+/obj/structure/sign/directions/recreation{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"eW" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"eX" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"eY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"eZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"fa" = (
+/obj/machinery/door/window/westright{
+ dir = 1;
+ req_one_access = list(35,28)
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"fc" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1380;
+ id_tag = "starboard_escape_pod";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/starboardescape)
+"fd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"fe" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboardescape)
+"ff" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump/high_power/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"fg" = (
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"fh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"fi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"fk" = (
+/obj/machinery/vending/engivend,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"fl" = (
+/turf/simulated/wall/bay/steel,
+/area/crew_quarters/locker)
+"fm" = (
+/obj/machinery/vending/wardrobe/engidrobe,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"fn" = (
+/obj/structure/sign/directions/evac{
+ dir = 6;
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"fo" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/device/perfect_tele{
+ name = "manager's translocator"
+ },
+/obj/structure/table/darkglass,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"fp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"fr" = (
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"fs" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"ft" = (
+/obj/machinery/vitals_monitor,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"fu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"fv" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"fw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"fx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"fz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"fA" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"fB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"fF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"fG" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"fI" = (
+/obj/effect/floor_decal/milspec/color/white/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"fJ" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/aftstarboard)
+"fK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"fL" = (
+/obj/machinery/computer/arcade/battle,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"fN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "\improper HIGH VOLTAGE";
+ pixel_y = -32
+ },
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"fO" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"fP" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"fQ" = (
+/obj/structure/lattice,
+/obj/structure/cable/orange{
+ icon_state = "32-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/atmos)
+"fR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"fT" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/structure/closet/walllocker_double/north{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/fiftyspawner/wood,
+/obj/item/stack/material/glass/phoronrglass{
+ amount = 20
+ },
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/plastic,
+/obj/fiftyspawner/plastic,
+/obj/item/stack/material/plasteel{
+ amount = 30
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"fU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"fV" = (
+/turf/simulated/floor,
+/area/bridge)
+"fW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"fX" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/portescape)
+"fY" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/conveyor_switch/oneway{
+ id = "cargoload"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"fZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/storage)
+"ga" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"gb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/smartfridge/sheets/persistent_lossy,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"gc" = (
+/mob/living/simple_mob/animal/passive/cow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"gd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"ge" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"gf" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"gg" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer W";
+ name = "Medbay Doors Control";
+ pixel_x = -6;
+ pixel_y = 32
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"gh" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/robotics{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/mecha_control,
+/obj/item/weapon/circuitboard/aifixer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"gi" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"gj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"gk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"gl" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"gm" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "port_escape_berth";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/port)
+"gn" = (
+/obj/structure/displaycase,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"go" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Air to Ports"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"gp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"gq" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"gr" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"gs" = (
+/obj/machinery/atmospherics/unary/vent_pump/engine{
+ external_pressure_bound = 100;
+ external_pressure_bound_default = 0;
+ frequency = 1438;
+ icon_state = "map_vent_in";
+ id_tag = "cooling_out";
+ initialize_directions = 4;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck2/combustionworkshop)
+"gu" = (
+/obj/machinery/firealarm/angled,
+/obj/item/device/defib_kit/loaded,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"gv" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "32-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"gw" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"gx" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/westright{
+ req_one_access = list(35,28)
+ },
+/obj/effect/floor_decal/milspec/color/green,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"gy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"gB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"gC" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"gE" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"gF" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"gG" = (
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"gH" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"gJ" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"gK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"gL" = (
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"gM" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"gN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"gO" = (
+/obj/structure/table/standard,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/packageWrap,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"gP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"gQ" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"gR" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"gS" = (
+/obj/structure/dispenser,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"gT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"gU" = (
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"gV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"gW" = (
+/obj/machinery/power/tesla_coil,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"gX" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"gY" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"gZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"ha" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"hb" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"hc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/bed/chair/bay/comfy/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"hd" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"he" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"hg" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/stellardelight/deck2/portescape)
+"hi" = (
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/weapon/storage/box/body_record_disk,
+/obj/item/device/retail_scanner/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"hj" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"hk" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"hl" = (
+/turf/simulated/wall/bay/green,
+/area/crew_quarters/kitchen)
+"hm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"hn" = (
+/turf/simulated/wall/bay/white,
+/area/medical/cryo)
+"ho" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"hp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"hq" = (
+/obj/structure/sign/department/ass,
+/turf/simulated/wall/bay/brown,
+/area/storage/primary)
+"hr" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"hs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "Engineering EVA Storage";
+ req_access = null;
+ req_one_access = list(11,24);
+ stripe_color = "#913013"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/workshop)
+"ht" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"hu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"hw" = (
+/obj/structure/table/standard,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"hx" = (
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"hy" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"hz" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/item/stack/cable_coil/yellow,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"hA" = (
+/obj/structure/closet/walllocker_double/south{
+ dir = 2;
+ pixel_y = 30
+ },
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/deck/cah,
+/obj/item/weapon/deck/cah/black,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards/casino,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"hC" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"hD" = (
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 4
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"hF" = (
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"hI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 6
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"hJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"hK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"hL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/white,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"hM" = (
+/obj/structure/table/standard,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"hN" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "N2/O2 Filter";
+ tag_east = 4;
+ tag_north = 2;
+ tag_south = 3;
+ tag_west = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"hO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"hP" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/item/clothing/shoes/black,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/communicator,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"hQ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"hR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"hS" = (
+/obj/effect/floor_decal/milspec/cargo,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"hT" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/cable/white{
+ icon_state = "32-1"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/triage)
+"hU" = (
+/obj/structure/disposalpipe/tagger/partial{
+ dir = 8;
+ name = "partial tagger - Sorting Office";
+ sort_tag = "Sorting Office"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"hV" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"hW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"hX" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"hY" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark/start/bartender,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"hZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"ib" = (
+/obj/machinery/power/grounding_rod,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"ic" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"ie" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"if" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/floor_decal/milspec/color/green,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ig" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"ih" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"ii" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/obj/effect/floor_decal/milspec/color/green/half,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ij" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/structure/table/bench/steel,
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"ik" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"il" = (
+/obj/machinery/vending/assist,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"im" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"in" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"io" = (
+/obj/structure/bed/chair/bay/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start/intern,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"ip" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ id = "psychshutter";
+ name = "Privacy Shutter"
+ },
+/obj/structure/low_wall/bay/reinforced/white,
+/turf/simulated/floor,
+/area/medical/psych)
+"iq" = (
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"ir" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/bar)
+"is" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"it" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"iu" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"iv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"iw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"ix" = (
+/obj/structure/bed/chair/sofa/corp{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"iy" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"iz" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"iA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/storage)
+"iB" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/requests_console/preset/cargo{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"iC" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 20
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"iD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"iE" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/stairs_up{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftstarboard)
+"iF" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ dir = 4;
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"iG" = (
+/obj/structure/cable,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Power - Main";
+ charge = 2e+007;
+ cur_coils = 4;
+ input_attempt = 1;
+ input_level = 500000;
+ output_level = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"iH" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"iI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"iJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"iK" = (
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/structure/table/rack/steel,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/circuitboard/autolathe,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"iL" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window,
+/obj/effect/shuttle_landmark{
+ base_area = /area/stellardelight/deck2/exterior;
+ base_turf = /turf/simulated/floor/airless;
+ docking_controller = "starboard_escape_berth";
+ landmark_tag = "starboard_ship_berth";
+ name = "Stellar Delight Escape Pod Starboard"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboardescape)
+"iM" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/structure/closet/walllocker_double/north,
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"iN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "Hydroponics/Kitchen Access";
+ req_one_access = list(35,28)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/kitchen)
+"iO" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"iP" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/requests_console/preset/medical{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"iQ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"iR" = (
+/obj/machinery/power/tesla_coil,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"iS" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"iT" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"iU" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"iV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"iW" = (
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ dir = 8;
+ id = "MedbayFoyer W";
+ name = "Medbay Doors Control";
+ pixel_x = 25
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"iX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9c9c9c";
+ name = "Bar";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/bar)
+"iY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"iZ" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"ja" = (
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"jc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"jd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/emergsuit_wall{
+ dir = 4;
+ pixel_x = 27
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"jf" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"jg" = (
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"ji" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"jj" = (
+/obj/structure/easel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"jk" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"jm" = (
+/obj/structure/table/reinforced,
+/obj/item/device/gps/engineering{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/device/gps/engineering{
+ pixel_y = 3
+ },
+/obj/item/device/gps/engineering{
+ pixel_x = -3
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"jn" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"jo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/green,
+/turf/simulated/floor,
+/area/hydroponics)
+"jp" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"jq" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"jr" = (
+/obj/structure/closet/emergsuit_wall{
+ pixel_y = 29
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"js" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"jt" = (
+/obj/machinery/vending/nifsoft_shop,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"jv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"jx" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"jy" = (
+/obj/structure/sign/directions/cargo{
+ pixel_x = -32;
+ pixel_y = -35
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = -32;
+ pixel_y = -29
+ },
+/obj/effect/floor_decal/milspec/color/blue/corner{
+ dir = 8
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = -32;
+ pixel_y = -41
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"jz" = (
+/obj/machinery/firealarm/angled,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"jA" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/door/window/northleft{
+ name = "Atmospherics Hardsuits";
+ req_access = list(24)
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"jB" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"jC" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"jD" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"jE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"jF" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"jG" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"jI" = (
+/obj/structure/table/woodentable,
+/obj/structure/plushie/ian{
+ dir = 8;
+ pixel_y = 6
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"jK" = (
+/obj/structure/table/glass,
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"jL" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"jM" = (
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"jN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"jO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "\improper HIGH VOLTAGE";
+ pixel_y = -32
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"jP" = (
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"jQ" = (
+/turf/simulated/floor/reinforced,
+/area/quartermaster/storage)
+"jS" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/orange/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"jT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"jU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "bridgelockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/bridge)
+"jV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"jW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"jX" = (
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"jY" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"jZ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"ka" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "Particle Accelerator";
+ req_access = list(10);
+ stripe_color = "#913013"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engine_room)
+"kb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/triage)
+"kc" = (
+/obj/machinery/computer/power_monitor,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"kd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"ke" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"kf" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"kg" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"kh" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"ki" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"kj" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"kk" = (
+/obj/machinery/vending/blood,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"kl" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/structure/flora/pottedplant/decorative,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"km" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"kn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"ko" = (
+/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,
+/obj/structure/table/reinforced,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"kp" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"kq" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/weapon/stamp/cargo,
+/obj/item/weapon/storage/backpack/dufflebag,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"kr" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"ks" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/mech_recharger{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/circuitboard/cell_charger{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/recharger{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/recharge_station{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/arcade/battle,
+/obj/item/weapon/circuitboard/arcade/clawmachine{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/arcade/orion_trail{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/jukebox{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"kt" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/aftport)
+"ku" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"kv" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"kx" = (
+/obj/structure/disposalpipe/sortjunction/wildcard/flipped{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"ky" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"kz" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "cold loop pump"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"kA" = (
+/obj/structure/table/reinforced,
+/obj/random/toolbox,
+/obj/item/device/geiger,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"kB" = (
+/obj/structure/table/standard,
+/obj/item/clothing/under/pizzaguy,
+/obj/item/clothing/under/pizzaguy,
+/obj/item/clothing/under/pizzaguy,
+/obj/item/clothing/head/pizzaguy,
+/obj/item/clothing/head/pizzaguy,
+/obj/item/clothing/head/pizzaguy,
+/obj/machinery/status_display/supply_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"kC" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"kD" = (
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#323d80";
+ name = "Bridge";
+ req_access = list(19);
+ req_one_access = list(19);
+ stripe_color = "#f7d35c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/briefingroom)
+"kE" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation_area)
+"kF" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/blue/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"kG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"kH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"kI" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"kJ" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"kK" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"kL" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"kM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"kN" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/stellardelight/substation/engineering)
+"kO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"kP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"kQ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"kR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/green,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "botanylockdown"
+ },
+/turf/simulated/floor,
+/area/hydroponics)
+"kS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"kT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#e6ab22";
+ fill_color = "#877242";
+ name = "Tech Storage";
+ req_access = list(23);
+ stripe_color = "#913013"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engine_eva)
+"kV" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"kW" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"kX" = (
+/obj/machinery/vending/dinnerware,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"kY" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"kZ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"la" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"lc" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"ld" = (
+/obj/structure/table/glass,
+/obj/machinery/photocopier/faxmachine{
+ department = "Medical"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"le" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#a6753d";
+ fill_color = "#75736f";
+ name = "Quartermaster";
+ req_access = list(41);
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/quartermaster/qm)
+"lf" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"lg" = (
+/obj/structure/closet/secure_closet/captains,
+/obj/item/clothing/glasses/omnihud/all,
+/obj/item/weapon/disk/nuclear,
+/obj/item/weapon/paper/dockingcodes/sd,
+/obj/item/device/retail_scanner/command,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"lh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "maintenance access";
+ req_one_access = list(24);
+ stripe_color = "#e6ab22"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/atmos/storage)
+"li" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"lj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"lk" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/machinery/door/window/southright{
+ dir = 1;
+ name = "Engineering Hardsuits";
+ req_one_access = list(11)
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"ll" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"lm" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"ln" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"lo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"lq" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "\improper RADIOACTIVE AREA";
+ pixel_x = -32
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"lr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"ls" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"lt" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"lu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"lv" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"lw" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/powermonitor{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/stationalert_engineering{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/atmos_alert{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/rcon_console,
+/obj/item/weapon/circuitboard/atmoscontrol{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/drone_control{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"lx" = (
+/obj/machinery/power/tesla_coil,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"ly" = (
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"lz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start/chef,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"lA" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"lB" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"lC" = (
+/obj/machinery/computer/communications{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"lD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"lE" = (
+/obj/machinery/floodlight,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"lF" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"lG" = (
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"lH" = (
+/obj/machinery/power/thermoregulator,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"lI" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/westleft{
+ req_one_access = list(35,28)
+ },
+/obj/effect/floor_decal/milspec/color/green,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"lJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ dir = 8;
+ door_color = "#9c9c9c";
+ name = "Commons";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation_area)
+"lK" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"lL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"lN" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"lO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"lP" = (
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"lQ" = (
+/obj/structure/sign/directions/chapel{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/dorms{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ dir = 1;
+ name = "\improper Exploration Department";
+ pixel_x = 32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/stairs_down{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 12
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"lR" = (
+/obj/machinery/vending/wardrobe/virodrobe,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"lS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"lT" = (
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/structure/sign/department/bar{
+ pixel_y = 32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"lU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"lV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "engine_interior";
+ locked = 1;
+ name = "Engine Airlock"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "engine_airlock";
+ name = "interior access button";
+ pixel_y = 32;
+ req_access = list(10,11)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engine_room)
+"lW" = (
+/obj/machinery/medical_kiosk{
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"lX" = (
+/obj/machinery/door/window/southright{
+ dir = 1;
+ name = "Jetpack Storage";
+ req_one_access = list(11,24)
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"lY" = (
+/obj/structure/sign/directions/library{
+ dir = 1;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/dorms{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/science{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/stairs_down{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 12
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"lZ" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"ma" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"md" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/loadout_misc,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"me" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"mf" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"mg" = (
+/obj/machinery/vending/cola/soft,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"mh" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"mi" = (
+/obj/structure/sign/department/bridge{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"mj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"mk" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"ml" = (
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"mm" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"mn" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"mo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"mq" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/fuelstorage)
+"mr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"ms" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"mt" = (
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"mu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#e6ab22";
+ fill_color = "#877242";
+ name = "Combustion Workshop";
+ req_access = list(24);
+ stripe_color = "#2ebfbd"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/atmos/monitoring)
+"mv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"mw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/cargo,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"mx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"my" = (
+/mob/living/simple_mob/animal/goat{
+ name = "Ted"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"mz" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"mA" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"mB" = (
+/obj/machinery/atmospherics/pipe/tank/phoron{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"mC" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ icon_state = "emitter1";
+ state = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"mD" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"mE" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"mF" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"mG" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/item/clothing/shoes/black,
+/obj/machinery/light,
+/obj/item/device/communicator,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"mH" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/blue,
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"mI" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/atmos)
+"mJ" = (
+/obj/structure/table/woodentable,
+/obj/item/device/paicard,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"mK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Operating Theatre 2";
+ req_access = list(45);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/surgery2)
+"mL" = (
+/obj/structure/flora/pottedplant/small,
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/recreation_area)
+"mM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"mN" = (
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"mO" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/engineering_monitoring)
+"mP" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"mQ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"mR" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"mS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"mT" = (
+/turf/simulated/wall/bay/steel,
+/area/storage/art)
+"mU" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"mV" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"mW" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"mX" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"mY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"mZ" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"na" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"nb" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"nd" = (
+/turf/simulated/wall/bay/white,
+/area/medical/surgery2)
+"nf" = (
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"ng" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"ni" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_room)
+"nj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"nm" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"no" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"np" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange,
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Engineering Subgrid";
+ name_tag = "Engineering Subgrid"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/stellardelight/substation/engineering)
+"nq" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_eva)
+"nr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/storage)
+"ns" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Engineering"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"nt" = (
+/turf/simulated/wall/bay/brown,
+/area/crew_quarters/recreation_area)
+"nu" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#323d80";
+ fill_color = "#c9892e";
+ id_tag = "captaindoor";
+ name = "Captain's Office";
+ req_access = list(20);
+ stripe_color = "#f7d35c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/captain)
+"nv" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"nw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"nx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"ny" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 6
+ },
+/obj/structure/sign/atmos/co2{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"nz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"nA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"nB" = (
+/obj/machinery/vending/sol,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"nC" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/machinery/requests_console{
+ department = "Service";
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"nD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"nE" = (
+/obj/machinery/atmospherics/pipe/tank/carbon_dioxide,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"nF" = (
+/obj/structure/table/standard,
+/obj/item/clothing/head/soft,
+/obj/item/clothing/head/soft,
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/camera/network/cargo,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"nG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"nH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"nI" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"nJ" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"nK" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/bridge)
+"nL" = (
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"nM" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"nN" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"nO" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/engine_eva)
+"nP" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"nQ" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Service";
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"nR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"nS" = (
+/obj/effect/floor_decal/milspec/color/green/corner{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"nT" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"nU" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"nV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"nW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"nX" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"nZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"oa" = (
+/turf/simulated/wall/bay/brown,
+/area/maintenance/stellardelight/substation/engineering)
+"ob" = (
+/obj/effect/shuttle_landmark/premade/sd/deck2/starboard,
+/turf/space,
+/area/space)
+"oc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"od" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"oe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"of" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"og" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"oh" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"oi" = (
+/obj/structure/sign/department/bridge{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"oj" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"ok" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"ol" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"om" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"on" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"oo" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"op" = (
+/obj/machinery/power/generator{
+ anchored = 1;
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"oq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"or" = (
+/obj/structure/closet/walllocker_double/east,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/multitool,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"os" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/blue,
+/obj/structure/sign/deck2{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck2/central)
+"ot" = (
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/portables_connector/fuel,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"ou" = (
+/obj/machinery/computer/supplycomp/control{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"ov" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/combustionworkshop)
+"ow" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/storage/tech)
+"ox" = (
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"oy" = (
+/obj/machinery/door/blast/angled{
+ dir = 4;
+ id = "burnchamberlockvent"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck2/combustionworkshop)
+"oz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"oA" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"oB" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"oC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"oD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ req_access = list(28);
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/kitchen)
+"oE" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/o2production)
+"oF" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"oG" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"oH" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"oI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Engineering Hard Storage";
+ req_access = list(11);
+ stripe_color = "#913013"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engineering_monitoring)
+"oJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "barlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/crew_quarters/bar)
+"oK" = (
+/obj/structure/table/standard,
+/obj/item/device/defib_kit/loaded,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"oL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"oM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ dir = 8;
+ name = "Art Storage"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/storage/art)
+"oO" = (
+/obj/machinery/chem_master/condimaster,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"oP" = (
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"oQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"oR" = (
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"oS" = (
+/obj/structure/bed/chair/bay/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/entertainer,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"oT" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"oU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"oV" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"oX" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"oY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"oZ" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = 32
+ },
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/landmark/start/commandsecretary,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"pa" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"pb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"pc" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort1"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"pd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"pe" = (
+/obj/machinery/shieldgen,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"pf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "Gas Storage";
+ req_one_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/cryo)
+"pg" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/storage/belt/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"ph" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"pi" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/mob/living/simple_mob/otie/red/chubby/cocoa,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"pj" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"pk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Port Solar Array";
+ name_tag = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"pl" = (
+/obj/structure/table/standard,
+/obj/machinery/photocopier/faxmachine{
+ department = "Cargo"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"pm" = (
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"pn" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"po" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"pp" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"pq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"pr" = (
+/obj/machinery/light/small,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/port)
+"pu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"pv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "glass airlock"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/aftport)
+"pw" = (
+/obj/structure/sign/pods,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/port)
+"px" = (
+/obj/machinery/power/emitter,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"py" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"pz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start/chef,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"pA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"pB" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"pC" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"pD" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"pF" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"pG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"pH" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"pI" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"pJ" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"pK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ locked = 1;
+ name = "maintenance access";
+ req_one_access = list(19);
+ stripe_color = "#e6ab22"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/atmos/monitoring)
+"pL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"pM" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"pN" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"pO" = (
+/obj/machinery/atmospherics/binary/algae_farm/filled{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"pP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"pQ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/starboardescape)
+"pR" = (
+/obj/structure/closet/gmcloset{
+ name = "formal wardrobe"
+ },
+/obj/item/glass_jar,
+/obj/item/device/retail_scanner/civilian,
+/obj/item/device/retail_scanner/civilian,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/packageWrap,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"pS" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"pT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/monitoring)
+"pU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"pV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"pW" = (
+/obj/machinery/media/jukebox,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"pX" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"pY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"pZ" = (
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"qa" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"qb" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"qd" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"qe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"qf" = (
+/turf/simulated/wall/bay/r_wall/white,
+/area/medical/surgery2)
+"qg" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"qh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"qi" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"qj" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/device/flashlight/lamp/green{
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"qk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"ql" = (
+/obj/machinery/atmospherics/pipe/tank/phoron,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"qm" = (
+/obj/machinery/vending/medical,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"qn" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"qo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"qp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"qq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"qr" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/storage)
+"qs" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"qt" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/freezer,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"qu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"qv" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"qw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"qx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"qy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"qz" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"qA" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/skills{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/med_data{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/secure_data{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/security,
+/obj/item/weapon/circuitboard/security/engineering{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/security/mining{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/stationalert_security{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"qC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"qD" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"qF" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"qG" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"qH" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"qI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"qJ" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"qL" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"qM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/fuelstorage)
+"qN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"qO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"qP" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"qQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/smartfridge/chemistry,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"qS" = (
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"qT" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/stairs_up{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftport)
+"qV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"qW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"qX" = (
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/random/tech_supply/component/nofail,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/item/device/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/item/device/integrated_circuit_printer,
+/obj/structure/table/steel,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"qY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"qZ" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/deck2{
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/medical/morgue{
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/medical/resleeving{
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/medical/virology{
+ pixel_x = -32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/stairs_down{
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"ra" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"rb" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/o2production)
+"rc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/milspec/color/white/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"rd" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "bar";
+ layer = 3.3;
+ name = "Bar Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"re" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/landmark/start/cargo,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"rf" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/closet/walllocker_double/west,
+/obj/item/weapon/book/manual/engineering_particle_accelerator,
+/obj/item/weapon/book/manual/tesla_engine,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"rg" = (
+/obj/structure/bed/chair/sofa/corp/corner{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"rh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"ri" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"rj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"rk" = (
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"rl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"rm" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"rn" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/machinery/camera/network/civilian{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"ro" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"rp" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"rq" = (
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"rr" = (
+/obj/structure/closet/walllocker_double/south{
+ pixel_x = -5
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/standard,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "kitchen";
+ name = "Kitchen shutters";
+ pixel_x = 9;
+ pixel_y = -25
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 10;
+ pixel_y = -34
+ },
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"rs" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"rt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/obj/effect/landmark/start/botanist,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ru" = (
+/obj/structure/bed/chair/bay/comfy/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"rv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"rw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "Engineering Workshop";
+ req_access = null;
+ req_one_access = list(11,24);
+ stripe_color = "#913013"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/workshop)
+"rx" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/storage/primary)
+"ry" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/jetpack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/suit/space/void/captain,
+/obj/item/clothing/head/helmet/space/void/captain,
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/westright{
+ dir = 4;
+ name = "Captain's Storage";
+ req_access = list(20)
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/card/id/gold/captain/spare{
+ name = "\improper Captain's spare ID"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"rz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"rA" = (
+/mob/living/simple_mob/animal/passive/opossum/poppy,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"rB" = (
+/obj/structure/particle_accelerator/particle_emitter/right{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"rC" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"rD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboardescape)
+"rE" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"rF" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"rG" = (
+/obj/structure/bed/chair/comfy,
+/obj/effect/landmark/start/bartender,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"rH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"rI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"rK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"rM" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/starboard)
+"rN" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/crew_quarters/captain)
+"rO" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/stack/material/sandstone{
+ amount = 5
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 9
+ },
+/obj/machinery/requests_console{
+ department = "Service";
+ pixel_y = 26
+ },
+/obj/item/device/retail_scanner/civilian,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"rQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"rR" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portaft)
+"rT" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/storage/tech)
+"rU" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"rV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/crew_quarters/bar)
+"rW" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/atmos)
+"rX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#9c9c9c";
+ name = "Laundry";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/locker)
+"rY" = (
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 35
+ },
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 41
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = -32;
+ pixel_y = 23
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 10;
+ pixel_x = -32;
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"rZ" = (
+/obj/structure/sign/pods,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/starboard)
+"sa" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"sb" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"sc" = (
+/obj/structure/bed/chair/sofa/corp{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"sd" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"se" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"sg" = (
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/port)
+"sh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"si" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/portfore)
+"sj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"sk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#a6753d";
+ name = "Cargo Office";
+ req_access = list(31);
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/quartermaster/storage)
+"sl" = (
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"sm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "engine_sensor";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "engine_airpump"
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/engineering/engine_room)
+"sn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"so" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"sp" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"sq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/white,
+/turf/simulated/floor,
+/area/medical/chemistry)
+"sr" = (
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"su" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"sv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"sw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/engine{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"sx" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/atmos)
+"sy" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/storage)
+"sz" = (
+/obj/machinery/computer/atmoscontrol,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"sA" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"sB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"sC" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"sD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/locker)
+"sE" = (
+/obj/machinery/honey_extractor,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"sF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"sG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/wall/bay/brown,
+/area/quartermaster/storage)
+"sH" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"sI" = (
+/obj/structure/sign/deck2{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"sJ" = (
+/obj/machinery/vending/wardrobe/medidrobe,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"sK" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"sL" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "bar";
+ layer = 3.3;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"sM" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"sN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/storage/primary)
+"sO" = (
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"sP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"sQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"sR" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"sS" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/effect/floor_decal/milspec/color/blue,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck2/central)
+"sT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"sU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/structure/sign/atmos/o2{
+ pixel_x = 32;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"sV" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"sW" = (
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"sX" = (
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"sY" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "\improper RADIOACTIVE AREA";
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/engine,
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"sZ" = (
+/obj/structure/closet/crate{
+ icon_state = "crate";
+ name = "Grenade Crate"
+ },
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/item/weapon/tool/screwdriver,
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"ta" = (
+/turf/simulated/wall/bay/brown,
+/area/engineering/workshop)
+"tb" = (
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 8
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"tc" = (
+/obj/structure/lattice,
+/turf/space,
+/area/stellardelight/deck2/exterior)
+"td" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"tf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry"
+ },
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Chemistry";
+ req_one_access = list(33)
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "chemistry";
+ layer = 3.1;
+ name = "Chemistry Shutters"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"tg" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "\improper RADIOACTIVE AREA"
+ },
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/engine_room)
+"th" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"ti" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"tj" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"tk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/fuelstorage)
+"tl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"tm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"tn" = (
+/obj/structure/table/standard,
+/obj/item/device/camera{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/item/device/camera{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"to" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/atmostech,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"tp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"ts" = (
+/obj/structure/bed/chair/bay/comfy/brown{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"tt" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "qmwindows";
+ name = "Privacy Shutters";
+ pixel_y = 15
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"tu" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"tv" = (
+/obj/structure/bed/psych,
+/obj/structure/sign/painting/library_secure{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"tw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Starboard Solar Array";
+ name_tag = "Starboard Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"ty" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"tz" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"tA" = (
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"tB" = (
+/obj/machinery/firealarm/angled,
+/obj/structure/frame,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"tC" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"tD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"tE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"tF" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"tG" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/item/weapon/storage/backpack/dufflebag,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"tI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"tJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"tK" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/storage)
+"tL" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/port)
+"tM" = (
+/obj/structure/table/rack,
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"tN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"tP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"tQ" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/stellardelight/substation/engineering)
+"tS" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/grid_checker,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"tT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"tU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"tV" = (
+/obj/item/weapon/storage/box/nifsofts_medical{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/nifsofts_medical,
+/obj/structure/table/reinforced,
+/obj/item/device/radio{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/device/radio{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"tW" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"tX" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"tZ" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"ua" = (
+/obj/effect/floor_decal/milspec/color/blue/corner,
+/obj/structure/sign/directions/medical{
+ pixel_x = 32;
+ pixel_y = -29
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_x = 32;
+ pixel_y = -35
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = -41
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"ub" = (
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck2/combustionworkshop)
+"uc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/rack,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"ud" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"ue" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold4w/visible/red,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"uf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ug" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "privacyshutters";
+ name = "Privacy Shutter"
+ },
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/stellardelight/deck2/briefingroom)
+"uh" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"ui" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/space,
+/area/space)
+"uj" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"uk" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/o2production)
+"ul" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"um" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"un" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"uo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Engineering Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/engineering)
+"up" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/milspec/color/orange/corner,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"uq" = (
+/obj/structure/sign/directions/medical{
+ dir = 8;
+ pixel_x = 32;
+ pixel_y = 35
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_x = 32;
+ pixel_y = 28
+ },
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 41
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = 22
+ },
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 47
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"ur" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"us" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"ut" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"uu" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/combustionworkshop)
+"uv" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"uw" = (
+/obj/structure/particle_accelerator/power_box{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"ux" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"uy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"uz" = (
+/obj/structure/sign/deck2{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"uA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"uB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"uC" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"uD" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"uE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"uF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/halls,
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"uG" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"uI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/camera/network/cargo{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"uJ" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Look's like it's set to the info station... I wonder what else is on?";
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"uK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"uL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"uM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ locked = 1;
+ name = "maintenance access";
+ req_one_access = list(19);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engine_eva)
+"uN" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"uO" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"uP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"uQ" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"uR" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"uU" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"uV" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"uW" = (
+/obj/machinery/appliance/mixer/candy,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"uX" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"uY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"uZ" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "bar";
+ name = "Bar Shutter Control";
+ pixel_x = 24
+ },
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/food/drinks/shaker{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = -9
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "barlockdown";
+ name = "Window Lockdown";
+ pixel_x = 24;
+ pixel_y = 10
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"va" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"vb" = (
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"vc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"vd" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"ve" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"vf" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"vg" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"vh" = (
+/obj/structure/closet/crate/freezer,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"vi" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"vj" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"vk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"vm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/closet/walllocker_double/north,
+/obj/item/weapon/circuitboard/tesla_coil,
+/obj/item/weapon/circuitboard/tesla_coil,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"vn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"vo" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/weapon/cell/device,
+/obj/item/weapon/cell/device,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"vp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"vq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"vt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"vu" = (
+/obj/machinery/lapvend,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"vw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"vx" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"vy" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"vz" = (
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"vA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"vB" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"vC" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/machinery/disposal/deliveryChute,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"vD" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"vF" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"vG" = (
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/clothing/gloves/sterile/nitrile,
+/obj/item/clothing/gloves/sterile/nitrile,
+/obj/random/tetheraid,
+/obj/random/tetheraid,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"vH" = (
+/obj/effect/floor_decal/milspec/color/white/corner,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"vI" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"vJ" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/atmos)
+"vK" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"vL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"vM" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/stellardelight/substation/engineering)
+"vN" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"vO" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"vP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"vQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"vR" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"vS" = (
+/obj/structure/bed/chair/bay/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"vT" = (
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"vU" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"vV" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "burnchamberlockdown"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"vW" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"vX" = (
+/obj/machinery/vending/fitness,
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"vY" = (
+/obj/item/device/radio/headset/headset_med,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/structure/closet/wardrobe/chemistry_white,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"wa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"wb" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"wd" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"we" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"wf" = (
+/obj/structure/bed/chair/sofa/corp/corner{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"wg" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"wh" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Scan Records"
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"wi" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"wk" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"wl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/milspec/color/white/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"wm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/fuelstorage)
+"wn" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/portescape)
+"wo" = (
+/obj/structure/bed/chair/bay/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"wp" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/combustionworkshop)
+"wq" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"wr" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"ws" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"wt" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"wu" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"wv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"ww" = (
+/obj/structure/table/glass,
+/obj/random/medical{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"wy" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"wz" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"wA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"wB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/port)
+"wC" = (
+/obj/machinery/recharger,
+/obj/item/weapon/storage/box/syringegun,
+/obj/item/weapon/gun/launcher/syringe,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"wD" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"wE" = (
+/obj/structure/disposalpipe/sortjunction/untagged/flipped{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"wF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"wG" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"wH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"wI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"wJ" = (
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"wK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"wL" = (
+/obj/machinery/appliance/mixer/cereal,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"wM" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"wN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/cargo,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"wO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/aftstarboard)
+"wP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"wR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start/cargo,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"wS" = (
+/obj/structure/bed/chair,
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"wT" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/stellardelight/deck2/triage)
+"wV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"wW" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/starboard)
+"wX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"wY" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck2/aftport)
+"wZ" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"xa" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"xb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"xc" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"xd" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/stellardelight/deck2/briefingroom)
+"xe" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"xg" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"xi" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "N2O Filter";
+ tag_east = 2;
+ tag_south = 1;
+ tag_west = 7
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"xj" = (
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"xk" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"xl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/obj/structure/sign/atmos_air{
+ pixel_x = 32;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"xm" = (
+/obj/machinery/alarm/angled,
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"xn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/white/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"xo" = (
+/obj/machinery/computer/supplycomp/control,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"xp" = (
+/turf/simulated/wall/bay/white,
+/area/medical/psych)
+"xq" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"xr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"xt" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"xu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"xv" = (
+/obj/item/weapon/melee/chainofcommand,
+/obj/item/weapon/coin/phoron{
+ desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo.";
+ name = "limited edition phoron coin"
+ },
+/obj/item/weapon/folder/blue_captain,
+/obj/item/weapon/stamp/captain,
+/obj/structure/table/darkglass,
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"xw" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/trolley{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"xx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"xy" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"xz" = (
+/obj/structure/particle_accelerator/end_cap{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"xA" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"xB" = (
+/obj/machinery/computer/station_alert/all,
+/obj/structure/panic_button{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"xC" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"xD" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"xE" = (
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"xG" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"xH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Mental Health";
+ req_access = list(64);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/psych)
+"xI" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/accessory,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"xJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"xK" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"xL" = (
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"xM" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"xN" = (
+/mob/living/simple_mob/animal/passive/mouse/brown/feivel,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"xO" = (
+/obj/machinery/light,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"xP" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"xQ" = (
+/obj/structure/sign/redcross,
+/turf/simulated/wall/bay/white,
+/area/medical/reception)
+"xR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 8
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"xU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"xV" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"xW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 6
+ },
+/obj/structure/sign/atmos/phoron{
+ pixel_x = -32;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"xX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"xY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"xZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"ya" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"yc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"yd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/aftport)
+"ye" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"yf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"yg" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"yh" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 4;
+ pixel_x = 27
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"yi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "maintenance access";
+ req_access = list(11,24);
+ req_one_access = null;
+ stripe_color = "#e6ab22"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engineering_monitoring)
+"yj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"yk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"yl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/storage)
+"ym" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/sign/department/atmos{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"yn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"yo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"yp" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/portescape)
+"yq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"yr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"ys" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"yu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 29
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"yv" = (
+/obj/effect/landmark/start/botanist,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"yw" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"yx" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"yy" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"yz" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"yA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_eva)
+"yB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"yC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"yD" = (
+/obj/structure/closet/hydrant{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"yE" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"yF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"yG" = (
+/obj/structure/bed/chair/sofa/corp/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"yH" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"yI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"yJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "bridgelockdown"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#323d80";
+ name = "Bridge";
+ req_access = list(19);
+ req_one_access = list(19);
+ stripe_color = "#f7d35c"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/bridge)
+"yK" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"yM" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"yN" = (
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ locked = 1;
+ name = "Burn Chamber";
+ req_one_access = list(24);
+ stripe_color = "#e6ab22"
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "burnchamberlockdown"
+ },
+/turf/simulated/floor/reinforced,
+/area/stellardelight/deck2/combustionworkshop)
+"yP" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"yQ" = (
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"yR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"yS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"yT" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"yU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"yV" = (
+/obj/item/device/sleevemate,
+/obj/item/device/denecrotizer/medical,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"yW" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck2/aftstarboard)
+"yX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Animal Pen";
+ req_one_access = list(35,28)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics)
+"yY" = (
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"yZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"za" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"zb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"zc" = (
+/obj/structure/sign/department/chem{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"zd" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"zf" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"zh" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"zi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"zj" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"zk" = (
+/obj/machinery/light/small,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/starboard)
+"zl" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"zm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"zo" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"zp" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"zq" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"zr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"zs" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"zt" = (
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"zu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"zv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"zw" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 1
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"zy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"zz" = (
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"zC" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/landmark/start/medical,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"zD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"zG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"zH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"zI" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "d2_portmaint_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "d2_portmaint_airlock";
+ name = "exterior access button";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck2/portsolars)
+"zJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"zK" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"zL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/obj/machinery/firealarm/angled,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/medical/cryo)
+"zM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"zN" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"zO" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"zQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Medbay Storage";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/cmostore)
+"zR" = (
+/obj/effect/floor_decal/milspec/color/orange/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"zS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"zT" = (
+/obj/machinery/shieldgen,
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"zU" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall/bay/white,
+/area/medical/surgery)
+"zV" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"zW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"zX" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"zY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"zZ" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Aa" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/port)
+"Ab" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"Ad" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"Ae" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/uniform,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"Af" = (
+/obj/structure/table/reinforced,
+/obj/item/device/retail_scanner/engineering,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"Ag" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Ah" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboardescape)
+"Ai" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Aj" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Ak" = (
+/obj/structure/table/standard,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/kitchen/rollingpin,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Al" = (
+/obj/structure/table/fancyblack,
+/obj/item/weapon/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"Am" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"An" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"Ao" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Ap" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Ar" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"As" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ name = "Scrubber to Waste"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"At" = (
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"Au" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/space,
+/area/space)
+"Av" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/secure_closet/atmos_personal,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Aw" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/directions/engineering/atmospherics{
+ dir = 8;
+ pixel_x = -32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 10;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/aftstarboard)
+"Ax" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = 29
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Ay" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Az" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/quartermaster/storage)
+"AA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"AB" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"AC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"AD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"AE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"AF" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"AG" = (
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"AI" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"AJ" = (
+/obj/structure/sign/directions/science{
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/dorms{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ name = "\improper Exploration Department";
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/security{
+ pixel_x = 32;
+ pixel_y = 12
+ },
+/obj/structure/sign/directions/stairs_down{
+ pixel_x = 32;
+ pixel_y = 18
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/aftport)
+"AK" = (
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Master Grid";
+ name_tag = "Master"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"AL" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/engineering/atmospherics{
+ dir = 10;
+ pixel_x = 32;
+ pixel_y = -12
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 6;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/aftport)
+"AM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/storage/art)
+"AN" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "bar";
+ layer = 3.3;
+ name = "Bar Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"AO" = (
+/obj/machinery/computer/skills{
+ pixel_y = 7
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "captaindoor";
+ name = "Door Remote";
+ pixel_x = -15;
+ pixel_y = 2
+ },
+/obj/structure/table/darkglass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"AP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"AR" = (
+/obj/machinery/light,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"AS" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/algae_farm{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/unary_atmos/heater,
+/obj/item/weapon/circuitboard/unary_atmos/cooler{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"AT" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"AU" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"AV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/fuelstorage)
+"AW" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"AX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"AY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"AZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Ba" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Bb" = (
+/obj/structure/flora/pottedplant/minitree,
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Bc" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Bd" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"Be" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Bf" = (
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 15
+ },
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Bg" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/aftstarboard)
+"Bh" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Bi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"Bj" = (
+/obj/machinery/smartfridge/produce/persistent_lossy,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/crew_quarters/kitchen)
+"Bk" = (
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"Bl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ door_color = "#ffffff";
+ name = "Operating Theatre 1";
+ req_access = list(45);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/surgery)
+"Bm" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Bn" = (
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder{
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Bo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start/chef,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Bp" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"Bq" = (
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/starboard)
+"Br" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/obj/effect/shuttle_landmark{
+ base_area = /area/stellardelight/deck2/exterior;
+ base_turf = /turf/simulated/floor/airless;
+ docking_controller = "port_escape_berth";
+ landmark_tag = "port_ship_berth";
+ name = "Stellar Delight Escape Pod Port"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/portescape)
+"Bs" = (
+/obj/machinery/field_generator{
+ anchored = 1;
+ state = 1
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Bt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Bu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Bv" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Bw" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/port)
+"Bx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"By" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"BB" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"BC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"BD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9c9c9c";
+ fill_color = null;
+ name = "Commons";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation_area)
+"BE" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"BF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"BG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"BH" = (
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"BI" = (
+/obj/structure/table/standard,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/qm,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"BJ" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"BK" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"BL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"BM" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/weapon/stamp/cargo,
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 6
+ },
+/obj/machinery/camera/network/cargo,
+/obj/item/device/retail_scanner/cargo,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"BN" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/engineering)
+"BO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"BP" = (
+/obj/effect/floor_decal/milspec/color/blue/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"BQ" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"BR" = (
+/obj/structure/closet/secure_closet/medical1,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"BS" = (
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 9;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"BT" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/atmos/storage)
+"BU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"BW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"BX" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"BY" = (
+/obj/machinery/atmospherics/pipe/tank/nitrogen{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"BZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Ca" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Cb" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/port)
+"Cc" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Cd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Ce" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass/common{
+ dir = 8;
+ name = "Escape Pod"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"Cf" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Cg" = (
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"Ch" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Ci" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Cj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Ck" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Cl" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/storage)
+"Cm" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Cn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Co" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Cp" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Cq" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Cr" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Ct" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Cu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Cv" = (
+/obj/machinery/gear_painter,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"Cw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Cx" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Cy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Cz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"CA" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"CB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"CC" = (
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"CD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"CE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"CF" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"CG" = (
+/obj/machinery/computer/ship/helm,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"CH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"CI" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"CJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"CK" = (
+/obj/structure/table/fancyblack,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"CL" = (
+/obj/structure/table/reinforced,
+/obj/random/maintenance/clean,
+/obj/random/powercell,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"CM" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"CN" = (
+/obj/structure/sign/directions/science{
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/dorms{
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions{
+ desc = "A direction sign, pointing out the way to Exploration.";
+ name = "\improper Exploration Department";
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/security{
+ pixel_x = -32;
+ pixel_y = 12
+ },
+/obj/structure/sign/directions/stairs_down{
+ pixel_x = -32;
+ pixel_y = 18
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/aftstarboard)
+"CO" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"CP" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"CQ" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"CR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"CS" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/cargo,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"CT" = (
+/obj/machinery/atmospherics/pipe/tank/nitrogen,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"CU" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"CV" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/clothing,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"CW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"CY" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"CZ" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Da" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Dc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/atmostech,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Dd" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/structure/symbol/sa{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"De" = (
+/obj/structure/flora/pottedplant/decorative,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Df" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Dg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Dh" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Di" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Dj" = (
+/obj/machinery/smartfridge/drinks,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Dk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ door_color = "#ffffff";
+ id_tag = "MedbayFoyer W";
+ name = "Medbay Foyer";
+ req_access = list(5);
+ req_one_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/triage)
+"Dl" = (
+/obj/structure/bed/chair/bay/comfy/brown,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"Dm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Dn" = (
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"Do" = (
+/obj/machinery/seed_storage/garden,
+/obj/effect/floor_decal/milspec/color/green,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Dq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Dr" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"Ds" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Dt" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Du" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/item/clothing/shoes/black,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/communicator,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"Dv" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Dw" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_eva)
+"Dx" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/weapon/clipboard,
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"Dy" = (
+/obj/structure/table/standard,
+/obj/item/device/defib_kit/loaded,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Dz" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Chemistry";
+ req_access = list(33);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/chemistry)
+"DA" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/aftport)
+"DB" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"DD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/freezer{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"DE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"DF" = (
+/obj/machinery/atmospherics/portables_connector/fuel,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"DG" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"DH" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"DI" = (
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"DJ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/medical/cryo)
+"DK" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Engine - Core";
+ charge = 2e+006;
+ input_attempt = 1;
+ input_level = 100000;
+ output_level = 200000
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"DL" = (
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"DM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"DN" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"DO" = (
+/obj/structure/flora/pottedplant/decorative,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"DP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"DQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"DR" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"DS" = (
+/obj/structure/bed/chair/bay/comfy/brown,
+/obj/effect/landmark/start/clown,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"DT" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"DV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/sign/department/cargo{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"DW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"DX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"DY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 5
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"DZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Ea" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "d2_starmaint_airpump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "d2_starmaint_airlock";
+ pixel_y = 24;
+ req_one_access = list(13);
+ tag_airpump = "d2_starmaint_airpump";
+ tag_chamber_sensor = "d2_starmaint_sensor";
+ tag_exterior_door = "d2_starmaint_exterior";
+ tag_interior_door = "d2_starmaint_interior"
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = "d2_starmaint_sensor";
+ pixel_y = -24;
+ req_access = list(13)
+ },
+/obj/machinery/light/small,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Eb" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Ec" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Ed" = (
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/clipboard,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Ee" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Ef" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/aftport)
+"Eg" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"Eh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Ei" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/effect/landmark/start/atmostech,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Ej" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/sign/directions/stairs_down{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/stairs_up{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Ek" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"El" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Em" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"En" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Eo" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Ep" = (
+/obj/structure/bed/chair/bay/comfy/brown,
+/obj/effect/landmark/start/mime,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"Eq" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"Er" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Es" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Et" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"Eu" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/quartermaster/storage;
+ base_turf = /turf/simulated/floor/reinforced;
+ docking_controller = "cargo_bay";
+ landmark_tag = "supply_station";
+ name = "Ship Cargo Bay"
+ },
+/turf/simulated/floor/reinforced,
+/area/quartermaster/storage)
+"Ev" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Ew" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass/common{
+ dir = 8;
+ name = "Escape Pod"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"Ex" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#ffffff";
+ name = "Gas Storage";
+ req_one_access = list(5,24);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/cryo)
+"Ey" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/storage/primary)
+"Ez" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/beanbags,
+/obj/item/weapon/gun/projectile/shotgun/doublebarrel,
+/obj/item/weapon/paper{
+ info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest.";
+ name = "Shotgun permit"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"EA" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"EC" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"ED" = (
+/obj/machinery/photocopier/faxmachine{
+ department = "Captain's Office"
+ },
+/obj/structure/table/darkglass,
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"EE" = (
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"EF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/o2production)
+"EG" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"EH" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/cargo{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"EJ" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"EK" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"EL" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"EM" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"EN" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 6
+ },
+/obj/effect/floor_decal/milspec/color/blue/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"EO" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/captaindouble,
+/obj/structure/curtain/black,
+/obj/effect/landmark/start/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"EP" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"EQ" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"ER" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Engineering Hard Storage";
+ req_access = list(11);
+ stripe_color = "#913013"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/storage)
+"ES" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ET" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/conveyor{
+ id = "cargoload"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"EU" = (
+/obj/structure/table/glass,
+/obj/random/medical{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"EV" = (
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"EW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"EX" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"EZ" = (
+/obj/machinery/vending/tool,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"Fa" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Fb" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Fc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Fd" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"Fe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Ff" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Fg" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Fh" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Fi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "cargo_bay";
+ pixel_y = 24;
+ req_one_access = null;
+ tag_door = null
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Fk" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"Fl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Fm" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Fn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"Fo" = (
+/obj/machinery/power/solar_control{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Fp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Bridge"
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/structure/closet/walllocker_double/north{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/item/weapon/paper/dockingcodes,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Fq" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Fr" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/folder/white,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"Fs" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Ft" = (
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Fv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Fw" = (
+/obj/structure/table/gamblingtable,
+/obj/machinery/light/floortube{
+ pixel_y = -6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"Fx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/machinery/button/ignition{
+ id = "castfireball";
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "burnchamberlockdown";
+ name = "Window Lockdown";
+ pixel_x = -9;
+ pixel_y = 31
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "burnchamberlockvent";
+ name = "Chamber Vent";
+ pixel_x = -1;
+ pixel_y = 37
+ },
+/obj/machinery/computer/general_air_control/supermatter_core{
+ input_tag = "cooling_in";
+ name = "Engine Cooling Control";
+ output_tag = "cooling_out";
+ sensors = list("burn_chamber" = "Burn Chamber");
+ throwpass = 1
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Fy" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Fz" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"FA" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"FB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"FC" = (
+/obj/structure/closet/secure_closet/bar,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"FD" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "atmos_out";
+ use_power = 1
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"FE" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"FF" = (
+/obj/structure/particle_accelerator/particle_emitter/center{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"FG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"FH" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"FJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9c9c9c";
+ name = "Bar";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/bar)
+"FK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"FL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"FM" = (
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"FN" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/grinder{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/circuitboard/grill{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/fryer{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/oven{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/microwave,
+/obj/item/weapon/circuitboard/cerealmaker{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/candymachine{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/biogenerator{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"FP" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"FQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"FR" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/overwear,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"FS" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"FT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"FU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"FV" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"FW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"FX" = (
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"FY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"FZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Ga" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Gb" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"Gc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Gd" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Ge" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Gf" = (
+/turf/simulated/wall/bay/orange,
+/area/maintenance/stellardelight/substation/engineering)
+"Gg" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"Gh" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "CO2 to O2 Generators"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Gi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Gj" = (
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Gl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Gn" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Go" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Gp" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Gq" = (
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/portfore)
+"Gr" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"Gs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/aftport)
+"Gt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/starboard)
+"Gu" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Gv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Gw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Gx" = (
+/obj/structure/sign/deck2{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Gy" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Gz" = (
+/obj/machinery/computer/general_air_control{
+ frequency = 1443;
+ level = 3;
+ name = "Distribution and Waste Monitor";
+ sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"GA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"GB" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"GC" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"GD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "O2 Production";
+ req_access = list(24);
+ stripe_color = "#2ebfbd"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/o2production)
+"GE" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"GF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"GG" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"GH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"GI" = (
+/obj/effect/landmark{
+ name = "Observer-Start"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/emblem/stellardelight/center,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"GJ" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/atmos)
+"GK" = (
+/obj/structure/closet,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"GL" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"GM" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"GN" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/starboardescape)
+"GO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"GP" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"GQ" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/firecloset,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"GR" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"GS" = (
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 10
+ },
+/obj/effect/floor_decal/milspec/color/blue/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"GT" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"GU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"GV" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"GW" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"GX" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"GY" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"GZ" = (
+/obj/machinery/computer/security/engineering{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Ha" = (
+/obj/machinery/icecream_vat,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"Hb" = (
+/obj/item/modular_computer/console/preset/command,
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"Hc" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Hd" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/starboard)
+"He" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/engine{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Hf" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ icon_state = "emitter1";
+ state = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Hg" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/central)
+"Hh" = (
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Hi" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Hj" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Hk" = (
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Hl" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Hm" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/atmos/monitoring)
+"Ho" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Hp" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/device/megaphone,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"Hq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Engineering Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/engineering)
+"Hr" = (
+/turf/simulated/wall/bay/white,
+/area/medical/surgery)
+"Hs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Ht" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Hu" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ name = "package tagger - Trash";
+ sort_tag = "Trash"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Hv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "\improper HIGH VOLTAGE";
+ pixel_y = 32
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"Hw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Hx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"Hy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"HA" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/item/weapon/tool/screwdriver,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"HB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"HC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"HD" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/starboard)
+"HE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"HF" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/medical,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"HG" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"HH" = (
+/obj/machinery/light,
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"HI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/green,
+/obj/effect/landmark/start/atmostech,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"HJ" = (
+/turf/simulated/wall/bay/steel,
+/area/crew_quarters/kitchen)
+"HK" = (
+/turf/simulated/wall/bay/orange,
+/area/engineering/locker_room)
+"HL" = (
+/obj/structure/bed/chair/bay/comfy/captain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"HM" = (
+/obj/structure/table/reinforced,
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"HN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"HO" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"HP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ dir = 8;
+ name = "Primary Tool Storage"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/storage/primary)
+"HQ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/bar)
+"HR" = (
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"HS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"HT" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"HV" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"HW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/crew_quarters/locker)
+"HX" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/obj/machinery/meter,
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"HY" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/emblem/stellardelight{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"HZ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Ia" = (
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/weapon/storage/box/syringes{
+ pixel_y = 9
+ },
+/obj/item/weapon/storage/box/syringes{
+ pixel_y = 9
+ },
+/obj/random/medical,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 14;
+ pixel_y = 10
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Ib" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/white/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Id" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Ie" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"If" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "burnchamberlockdown"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Ig" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Ih" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Ii" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Ij" = (
+/obj/item/weapon/computer_hardware/battery_module,
+/obj/item/weapon/computer_hardware/battery_module,
+/obj/item/weapon/computer_hardware/battery_module/nano,
+/obj/item/weapon/computer_hardware/hard_drive,
+/obj/item/weapon/computer_hardware/hard_drive,
+/obj/item/weapon/computer_hardware/hard_drive/micro,
+/obj/item/weapon/computer_hardware/network_card,
+/obj/item/weapon/computer_hardware/network_card,
+/obj/item/weapon/computer_hardware/network_card/wired,
+/obj/item/weapon/computer_hardware/processor_unit,
+/obj/item/weapon/computer_hardware/processor_unit,
+/obj/item/weapon/computer_hardware/processor_unit/small,
+/obj/item/weapon/computer_hardware/tesla_link,
+/obj/item/weapon/computer_hardware/nano_printer,
+/obj/item/weapon/computer_hardware/hard_drive/portable,
+/obj/item/weapon/computer_hardware/hard_drive/portable,
+/obj/item/device/multitool,
+/obj/item/clothing/gloves/yellow,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Ik" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/vending/snack,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Il" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Im" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"In" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Io" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/device/retail_scanner/command,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Ip" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftport)
+"Iq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"Ir" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"Is" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"It" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"Iu" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Iw" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Ix" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "\improper RADIOACTIVE AREA";
+ pixel_y = -32
+ },
+/obj/machinery/camera/network/engine{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Iy" = (
+/obj/structure/table/reinforced,
+/obj/random/powercell,
+/obj/random/tech_supply,
+/obj/structure/closet/walllocker_double/west,
+/obj/item/device/t_scanner,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"Iz" = (
+/obj/item/stack/cable_coil/yellow,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"IA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"IB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"IC" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"ID" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"IE" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/crew_quarters/recreation_area)
+"IF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"IG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"IH" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"II" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Engineering Glass";
+ req_access = list(10);
+ stripe_color = "#913013"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/locker_room)
+"IJ" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"IK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"IL" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/keycard_auth{
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"IN" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Air to Distro"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"IO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"IP" = (
+/obj/machinery/shield_gen/external,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"IQ" = (
+/obj/structure/table/glass,
+/obj/machinery/door/window/southright{
+ dir = 1;
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"IR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/trolley{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/cargo{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"IT" = (
+/obj/machinery/vending/wardrobe/chemdrobe,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"IU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/o2production)
+"IV" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"IW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"IX" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"IY" = (
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"IZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Ja" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/circuitboard/partslathe,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Jb" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"Jd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Je" = (
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Jf" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"Jg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Jh" = (
+/turf/space,
+/area/space)
+"Ji" = (
+/obj/machinery/computer/arcade/orion_trail,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Jj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Jk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_eva)
+"Jl" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Jm" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Jn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Jo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/fuelstorage)
+"Jp" = (
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"Jq" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/fore)
+"Jr" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/internals,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Js" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"Jt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Jv" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Jx" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "\improper RADIOACTIVE AREA";
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Jy" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"JB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/storage/art)
+"JC" = (
+/obj/structure/sign/department/cargo{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"JD" = (
+/obj/machinery/computer/power_monitor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"JE" = (
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"JF" = (
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 15
+ },
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"JH" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"JI" = (
+/obj/effect/floor_decal/milspec/color/green/half,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"JJ" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"JK" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"JL" = (
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"JM" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"JN" = (
+/obj/effect/floor_decal/milspec/cargo,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"JP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/rack,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"JQ" = (
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"JR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9c9c9c";
+ fill_color = null;
+ name = "Commons";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation_area)
+"JS" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"JT" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"JV" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/chemist,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"JX" = (
+/obj/machinery/shield_gen,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"JY" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/storage/art)
+"JZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "qmwindows";
+ name = "Privagy Shutters"
+ },
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/quartermaster/qm)
+"Ka" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Kb" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"Kc" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/milspec/color/green/half,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Kd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Ke" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/storage/primary)
+"Kf" = (
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Kg" = (
+/obj/structure/table/glass,
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Kh" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Ki" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Kj" = (
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"Kk" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/closet/secure_closet/atmos_personal,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Kl" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck2/triage)
+"Km" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Kn" = (
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Ko" = (
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Kp" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Kq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/vending/wardrobe/atmosdrobe,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Kr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_eva)
+"Ks" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/landmark/start/medical,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Kt" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 9
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 2
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -5
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -12
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Ku" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Kv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Kw" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Kx" = (
+/obj/structure/table/woodentable,
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/reagent_containers/food/drinks/shaker{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/obj/item/weapon/flame/lighter/zippo{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba,
+/obj/item/weapon/reagent_containers/food/drinks/metaglass,
+/obj/item/weapon/reagent_containers/food/drinks/metaglass,
+/obj/item/weapon/reagent_containers/food/drinks/metaglass,
+/obj/item/weapon/reagent_containers/food/drinks/metaglass,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"Ky" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Kz" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "d2_starmaint_interior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "d2_starmaint_airlock";
+ name = "interior access button";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"KA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"KB" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"KC" = (
+/obj/structure/closet/walllocker_double{
+ pixel_y = 28
+ },
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"KD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"KE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"KG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"KH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"KI" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/power/emitter,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"KJ" = (
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"KK" = (
+/turf/simulated/wall/bay/r_wall/green,
+/area/hydroponics)
+"KL" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portfore)
+"KM" = (
+/obj/machinery/the_singularitygen/tesla{
+ anchored = 1
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"KN" = (
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"KP" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"KQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"KR" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"KS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "Medbay Foyer";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/triage)
+"KT" = (
+/obj/machinery/vending/medical,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"KU" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"KV" = (
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"KW" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"KX" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/storage)
+"KY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm/angled,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"La" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Lb" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+"Lc" = (
+/obj/structure/table/reinforced,
+/obj/item/device/floor_painter,
+/obj/item/device/t_scanner,
+/obj/item/device/multitool{
+ pixel_x = 5
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"Ld" = (
+/obj/item/modular_computer/console/preset/medical{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Le" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Lf" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Lg" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Lh" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Li" = (
+/obj/machinery/floodlight,
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"Lk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Ll" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Lm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Ln" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/packageWrap,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Lp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"Lq" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Look's like it's set to the info station... I wonder what else is on?";
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Lr" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Ls" = (
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Lt" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/nifsofts_engineering,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"Lu" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/northright{
+ dir = 2;
+ name = "Cargo Ordering";
+ req_access = list(50)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/storage)
+"Lv" = (
+/obj/structure/bed/chair,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Lw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_eva)
+"Lx" = (
+/obj/structure/flora/pottedplant/orientaltree,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Ly" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"Lz" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"LB" = (
+/obj/machinery/power/solar_control{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"LC" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"LD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"LE" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/quartermaster/storage)
+"LF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/fiftyspawner/cardboard,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"LG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"LH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"LI" = (
+/turf/simulated/wall/bay/orange,
+/area/engineering/engineering_monitoring)
+"LK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"LL" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Bar";
+ req_access = list(25)
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"LM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/portescape)
+"LN" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/effect/landmark/start/bartender,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"LO" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"LP" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 6
+ },
+/obj/machinery/camera/network/civilian,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"LQ" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"LR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"LS" = (
+/mob/living/simple_mob/animal/passive/chicken,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"LT" = (
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"LU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Distro Loop Drain"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"LV" = (
+/obj/structure/table/glass,
+/obj/structure/sign/department/operational{
+ pixel_x = 32
+ },
+/obj/random/medical,
+/obj/random/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"LW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"LX" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/conveyor_switch/oneway{
+ id = "cargounload"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"LY" = (
+/turf/simulated/wall/bay/brown,
+/area/engineering/engine_eva)
+"LZ" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Ma" = (
+/obj/structure/table/standard,
+/obj/item/device/taperecorder,
+/obj/item/stack/cable_coil/random,
+/obj/item/weapon/hand_labeler,
+/obj/item/stack/cable_coil/random,
+/obj/item/device/floor_painter,
+/obj/machinery/camera/network/civilian,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"Mb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Mc" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Md" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Me" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Mf" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "Phoron Filter";
+ tag_north = 2;
+ tag_south = 1;
+ tag_west = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Mg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"Mh" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/rdserver{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/protolathe{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/destructive_analyzer{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/rdconsole,
+/obj/item/weapon/circuitboard/autolathe{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/mechfab{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/prosthetics{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Mi" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Mj" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Mk" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Ml" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/aftstarboard)
+"Mm" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Mn" = (
+/obj/machinery/beehive,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Mo" = (
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Mp" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Mq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Mr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/storage)
+"Mt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 32
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 9
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"Mu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/structure/sign/atmos/n2{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Mv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Mw" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/radio/intercom{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"Mx" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"My" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/contraband,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Mz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/secure{
+ name = "Secure Tech Storage";
+ req_access = list(19,23)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/storage/tech)
+"MA" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/evac{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/port)
+"MB" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/storage)
+"MC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 8
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"MD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"ME" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/closet/emergsuit_wall{
+ pixel_y = 29
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/storage)
+"MF" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"MG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"MH" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"MJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"MK" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"MM" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/machinery/light/floortube{
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"MN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"MP" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ name = "Direct Injector"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"MQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"MR" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"MS" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"MT" = (
+/obj/machinery/power/grounding_rod,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"MU" = (
+/turf/simulated/wall/bay/green,
+/area/hydroponics)
+"MV" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"MW" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/crew{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/card,
+/obj/item/weapon/circuitboard/communications{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"MX" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"MY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Medical";
+ sortType = "Medical"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"MZ" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Na" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Nb" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Nc" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Ne" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Nf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "qmwindows";
+ name = "Privagy Shutters"
+ },
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/quartermaster/qm)
+"Ng" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Nh" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Nj" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Nk" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Nl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Nm" = (
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Nn" = (
+/obj/machinery/computer/ship/engines,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"No" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"Np" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Nq" = (
+/obj/machinery/suit_cycler/engineering,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Nr" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Ns" = (
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"Nt" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/machinery/door/window/northleft{
+ name = "Engineering Hardsuits";
+ req_access = list(11)
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Nu" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "psychshutter";
+ name = "Shutter Control";
+ pixel_x = -15;
+ pixel_y = -28
+ },
+/obj/effect/landmark/start/psych,
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"Nv" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Nw" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Ny" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Nz" = (
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"NA" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "d2_starmaint_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 4;
+ frequency = 1379;
+ master_tag = "d2_starmaint_airlock";
+ name = "exterior access button";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"NB" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 4;
+ pixel_x = 27
+ },
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"NC" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"ND" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"NE" = (
+/obj/structure/reagent_dispensers/foam,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"NF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"NG" = (
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 35
+ },
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 41
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = 23
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_x = 32;
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"NH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"NJ" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"NK" = (
+/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"NL" = (
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"NM" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil/super_capacity,
+/obj/item/weapon/smes_coil/super_capacity,
+/obj/item/weapon/smes_coil/super_io,
+/obj/item/weapon/smes_coil/super_io,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"NN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/brown,
+/turf/simulated/floor,
+/area/quartermaster/storage)
+"NO" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 27
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"NP" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"NQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#ffffff";
+ name = "Medbay Foyer";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/triage)
+"NS" = (
+/obj/structure/table/rack/steel,
+/obj/item/instrument/violin,
+/obj/item/instrument/piano_synth,
+/obj/item/instrument/recorder,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/recreation_area)
+"NU" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"NW" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftstarboard)
+"NX" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"NY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"NZ" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Oa" = (
+/obj/structure/table/standard,
+/obj/machinery/photocopier/faxmachine{
+ department = "Quartermaster-Office"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"Od" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/fuelstorage)
+"Og" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"Oi" = (
+/obj/machinery/firealarm/angled,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Oj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Ok" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"Ol" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/filingcabinet/medical,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Om" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"On" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ id = "bar";
+ layer = 3.3;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Oo" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance,
+/obj/item/weapon/disk/nifsoft/compliance,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Op" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Oq" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"Or" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Os" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"Ot" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Ou" = (
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Ov" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Ow" = (
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"Ox" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 27
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Oz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"OA" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"OB" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"OC" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"OD" = (
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"OE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"OF" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/engine_room)
+"OG" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall/bay/white,
+/area/medical/surgery2)
+"OH" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"OI" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"OJ" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"OK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"OL" = (
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"OM" = (
+/obj/structure/foodcart,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"ON" = (
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"OO" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/beakers{
+ name = "box of measuring cups";
+ pixel_x = 2;
+ pixel_y = 3;
+ starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"OP" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"OQ" = (
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"OR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"OS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"OT" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/requests_console/preset/atmos{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"OU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"OV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"OW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"OX" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"OY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"OZ" = (
+/obj/structure/closet/toolcloset,
+/obj/item/weapon/pickaxe,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Pb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Pc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Pd" = (
+/obj/structure/particle_accelerator/fuel_chamber{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"Pe" = (
+/obj/structure/table/woodentable,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Pf" = (
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/structure/sign/directions/evac{
+ pixel_x = -32;
+ pixel_y = -6
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/starboard)
+"Pg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/cook_guide,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Ph" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Pi" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Pj" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Pk" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Pl" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/smallcactus{
+ pixel_y = 14
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"Pm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Pn" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Po" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"Pq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Pr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Pt" = (
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Pu" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Pv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#ffffff";
+ name = "Medbay Storage";
+ req_access = list(5);
+ stripe_color = "#5a96bb"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/medical/cmostore)
+"Pw" = (
+/obj/machinery/sparker{
+ id = "castfireball";
+ pixel_x = 20
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck2/combustionworkshop)
+"Px" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "d2_portmaint_interior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 4;
+ frequency = 1379;
+ master_tag = "d2_portmaint_airlock";
+ name = "interior access button";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Py" = (
+/obj/machinery/alarm/angled,
+/obj/machinery/vending/nifsoft_shop,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Pz" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/medical/cryo)
+"PA" = (
+/obj/structure/sign/deck2{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"PB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/fuelstorage)
+"PC" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"PD" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"PE" = (
+/turf/simulated/wall/bay/white,
+/area/medical/reception)
+"PF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"PG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/port)
+"PH" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"PI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"PJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/atmostech,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"PK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"PL" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/structure/sign/department/mail{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"PM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"PO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"PP" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/stellardelight/deck2/briefingroom)
+"PQ" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"PR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "barlockdown"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/crew_quarters/bar)
+"PS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "cargounload"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"PT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/table/rack,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"PU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"PV" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"PW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 8
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"PY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/medical/cryo)
+"PZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Qa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Qc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Qd" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Qe" = (
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Qf" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Qg" = (
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"Qh" = (
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Qi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Qj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/network/cargo{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Qk" = (
+/obj/machinery/computer/rcon{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ pixel_y = -6
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Ql" = (
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/device/pipe_painter,
+/obj/item/weapon/pipe_dispenser,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/steel,
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Qm" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Qn" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/milspec/color/orange/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Qo" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Qp" = (
+/obj/structure/table/glass,
+/obj/item/weapon/backup_implanter{
+ pixel_y = 9
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 2
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -5
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -12
+ },
+/obj/structure/sign/department/operational{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"Qq" = (
+/obj/structure/bed/chair,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Qr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"Qt" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"Qu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"Qv" = (
+/obj/structure/particle_accelerator/particle_emitter/left{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"Qw" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Qx" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Qy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Qz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "Particle Accelerator";
+ req_access = list(10);
+ stripe_color = "#913013"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engine_room)
+"QA" = (
+/obj/structure/closet/crate/solar,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"QB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "psychshutter";
+ name = "Privacy Shutter"
+ },
+/obj/structure/low_wall/bay/reinforced/white,
+/turf/simulated/floor,
+/area/medical/psych)
+"QC" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"QD" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"QE" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"QG" = (
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"QH" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"QI" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"QJ" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"QK" = (
+/obj/machinery/atmospherics/omni/mixer{
+ name = "Air Mixer";
+ tag_east = 1;
+ tag_east_con = 0.79;
+ tag_north = 1;
+ tag_north_con = 0.21;
+ tag_south = 2;
+ tag_south_con = null;
+ tag_west_con = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"QM" = (
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner,
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"QN" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -27
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table/reinforced,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"QO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"QP" = (
+/turf/simulated/wall/bay/white,
+/area/medical/cmostore)
+"QQ" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"QR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"QS" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"QT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ name = "Engineering Reception Desk";
+ req_access = list(10)
+ },
+/obj/item/weapon/folder/yellow,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/engineering_monitoring)
+"QU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/orange,
+/turf/simulated/floor,
+/area/engineering/engineering_monitoring)
+"QV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ dir = 8;
+ door_color = "#9c9c9c";
+ name = "Commons";
+ stripe_color = "#89bd66"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation_area)
+"QW" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"QX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"QY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"QZ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Ra" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/storage/tech)
+"Rb" = (
+/obj/machinery/power/tesla_coil,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Rc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry"
+ },
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Chemistry";
+ req_one_access = list(33)
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "chemistry";
+ layer = 3.1;
+ name = "Chemistry Shutters"
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"Rd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "bridgelockdown"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#323d80";
+ name = "Bridge";
+ req_access = list(19);
+ req_one_access = list(19);
+ stripe_color = "#f7d35c"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/bridge)
+"Re" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "Engineering Monitoring Room";
+ req_access = null;
+ req_one_access = list(11,24);
+ stripe_color = "#913013"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engineering_monitoring)
+"Rf" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"Rh" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/red,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Ri" = (
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Rj" = (
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Rk" = (
+/obj/structure/sign/department/eng{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Rl" = (
+/obj/machinery/atmospherics/portables_connector/fuel,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"Rm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"Rn" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"Ro" = (
+/obj/machinery/vending/wardrobe/hydrobe,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Rp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"Rq" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"Rr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Rs" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ icon_state = "emitter1";
+ state = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Ru" = (
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/starboard)
+"Rv" = (
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"Rw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#e6ab22";
+ name = "O2 Production";
+ req_access = list(24);
+ stripe_color = "#2ebfbd"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/o2production)
+"Rx" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Ry" = (
+/obj/machinery/particle_accelerator/control_box,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"Rz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"RA" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"RD" = (
+/obj/structure/sign/directions/kitchen{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"RE" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"RF" = (
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"RG" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"RH" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"RI" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start/chemist,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"RJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"RK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"RL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"RM" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"RN" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"RO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"RP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"RQ" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/body_scanconsole{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"RS" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"RT" = (
+/obj/effect/floor_decal/milspec/color/blue/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"RU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"RV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"RW" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"RX" = (
+/obj/structure/table/standard,
+/obj/item/device/camera_film{
+ pixel_x = 4;
+ pixel_y = 11
+ },
+/obj/item/device/camera_film{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"RY" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/engine_room)
+"RZ" = (
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck2/portaft)
+"Sb" = (
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/engineering/engine_room)
+"Sc" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ name = "Tanks To Engines"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"Sd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"Se" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"Sf" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Sg" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Sh" = (
+/obj/machinery/disposal/wall{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Sj" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Sk" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Sm" = (
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Sn" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"So" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = 32
+ },
+/obj/machinery/requests_console/preset/bridge{
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/effect/landmark/start/commandsecretary,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Sp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"Sq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/qm,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"Sr" = (
+/obj/effect/floor_decal/milspec/color/green/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Ss" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"St" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"Su" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"Sv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Sw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "engine_airlock";
+ name = "exterior access button";
+ pixel_y = 32;
+ req_access = list(10,11)
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "engine_exterior";
+ locked = 1;
+ name = "Engine Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/engine_room)
+"Sx" = (
+/turf/simulated/wall/bay/steel,
+/area/crew_quarters/bar)
+"Sy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "Hydroponics";
+ req_one_access = list(35,28);
+ stripe_color = "#00ab03"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics)
+"Sz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "atmoswindowlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/o2production)
+"SA" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/engineering)
+"SD" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"SE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portfore)
+"SF" = (
+/obj/machinery/computer/arcade/battle,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"SG" = (
+/obj/structure/table/rack/steel,
+/obj/item/device/slime_scanner,
+/obj/item/device/sleevemate,
+/obj/item/device/robotanalyzer,
+/obj/item/device/reagent_scanner,
+/obj/item/device/healthanalyzer,
+/obj/item/device/geiger,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/device/analyzer,
+/obj/item/device/t_scanner,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"SH" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "privacyshutters";
+ name = "Shutter Control";
+ pixel_x = 25
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"SI" = (
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"SK" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/engineering/atmos/monitoring)
+"SL" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"SM" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"SN" = (
+/obj/structure/closet/wardrobe/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"SO" = (
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"SP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"SQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"SR" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"SS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"ST" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"SU" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"SV" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ name = "Bridge";
+ sortType = "Bridge"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"SW" = (
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"SX" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"SY" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = -11
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"SZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Ta" = (
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Tc" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Td" = (
+/obj/structure/sign/directions/evac{
+ dir = 10;
+ pixel_x = 32
+ },
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/orange/corner,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Te" = (
+/obj/machinery/power/smes/buildable/offmap_spawn/empty{
+ RCon_tag = "Solar Array - Port"
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Tf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Tg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "16-0"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Th" = (
+/obj/machinery/computer/station_alert,
+/obj/machinery/light/floortube{
+ dir = 1;
+ pixel_y = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"Ti" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Tj" = (
+/obj/machinery/vending/loadout/costume,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"Tk" = (
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Tl" = (
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Tm" = (
+/obj/structure/table/rack,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Tn" = (
+/obj/machinery/chem_master,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"To" = (
+/turf/simulated/wall/bay/orange,
+/area/engineering/workshop)
+"Tp" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"Tq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Waste to Filter"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"Tr" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Ts" = (
+/turf/simulated/shuttle/wall,
+/area/stellardelight/deck2/starboardescape)
+"Tt" = (
+/obj/effect/shuttle_landmark/premade/sd/deck2/port,
+/turf/space,
+/area/space)
+"Tu" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ dir = 8;
+ name = "Tank Refuel"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"Tv" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"Tw" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Tx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"TA" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"TB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box,
+/obj/item/weapon/tape_roll{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/tape_roll,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"TC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"TD" = (
+/obj/structure/table/steel,
+/obj/item/weapon/module/power_control,
+/obj/item/weapon/airlock_electronics,
+/obj/item/weapon/module/power_control,
+/obj/item/weapon/airlock_electronics,
+/obj/item/device/aicard,
+/obj/item/weapon/aiModule/reset,
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"TF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"TG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm/angled,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"TH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"TI" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"TJ" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"TK" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/weapon/stamp/cargo,
+/obj/item/weapon/storage/backpack/dufflebag,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"TL" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"TM" = (
+/obj/effect/floor_decal/milspec/color/black/corner,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"TN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"TO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"TQ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/starboardescape)
+"TR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"TS" = (
+/obj/structure/flora/pottedplant/tall,
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"TU" = (
+/obj/structure/lattice,
+/turf/space,
+/area/crew_quarters/bar)
+"TV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"TW" = (
+/obj/structure/sign/department/atmos{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"TX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"TY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"TZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Ua" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Ub" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Uc" = (
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftstarboard)
+"Ud" = (
+/obj/structure/table/glass,
+/obj/machinery/door/window/southright{
+ dir = 1;
+ req_access = list(5)
+ },
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Ue" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Uf" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Ug" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Uh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Ui" = (
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Uj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"Uk" = (
+/obj/machinery/pipedispenser,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Ul" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Um" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Un" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ name = "Ports to Waste"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Uo" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/milspec/color/green,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Up" = (
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Uq" = (
+/obj/machinery/vending/medical,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Ur" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Us" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Ut" = (
+/turf/simulated/floor/glass/reinforced,
+/area/crew_quarters/recreation_area)
+"Uu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ id = "privacyshutters";
+ name = "Privacy Shutter"
+ },
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/stellardelight/deck2/briefingroom)
+"Uv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portfore)
+"Ux" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"Uy" = (
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"Uz" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Engineering";
+ sortType = "Engineering"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"UA" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"UB" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Engineering";
+ output_attempt = 0
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/orange,
+/turf/simulated/floor/plating,
+/area/maintenance/stellardelight/substation/engineering)
+"UC" = (
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"UD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"UE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"UF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"UG" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/stellardelight/deck2/fuelstorage)
+"UH" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"UI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/combustionworkshop)
+"UJ" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"UK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start/engineer,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"UL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"UM" = (
+/obj/effect/floor_decal/emblem/stellardelight,
+/obj/effect/floor_decal/milspec/color/blue/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"UN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"UO" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/structure/plasticflaps,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"UQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"US" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"UT" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"UU" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"UV" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/circuitboard/body_designer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/resleeving_control{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/transhuman_clonepod{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/transhuman_synthprinter{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"UW" = (
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"UX" = (
+/obj/structure/table/gamblingtable,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation_area)
+"UY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"UZ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Vb" = (
+/turf/simulated/wall/bay/white,
+/area/stellardelight/deck2/triage)
+"Vc" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Vd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/kitchen)
+"Ve" = (
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"Vf" = (
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Vg" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/briefingroom)
+"Vh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ name = "Bar Backroom";
+ req_access = list(25);
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/bar)
+"Vi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Vj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ door_color = "#a6753d";
+ name = "Cargo Office";
+ req_access = list(31);
+ stripe_color = "#3b2b1a"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/quartermaster/storage)
+"Vk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Vl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Trash";
+ sortType = "Trash"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Vm" = (
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/fuelstorage)
+"Vn" = (
+/mob/living/simple_mob/vore/alienanimals/teppi/baby,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"Vo" = (
+/turf/simulated/wall/bay/r_wall/orange,
+/area/engineering/workshop)
+"Vp" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Vq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Vr" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/structure/flora/pottedplant/decorative,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"Vt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Vu" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Vv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/machinery/light/floortube{
+ pixel_y = -6
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3;
+ pixel_y = 13
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Vw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"Vx" = (
+/obj/machinery/power/grounding_rod,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Vy" = (
+/obj/machinery/disposal/wall{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Vz" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/landmark/start/botanist,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"VA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"VB" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1438;
+ id = "cooling_in";
+ name = "Coolant Injector";
+ pixel_y = 1;
+ power_rating = 30000;
+ use_power = 1;
+ volume_rate = 700
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck2/combustionworkshop)
+"VC" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"VE" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"VG" = (
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"VH" = (
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"VI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"VJ" = (
+/turf/simulated/floor/airless,
+/area/engineering/engine_eva)
+"VK" = (
+/obj/structure/table/standard,
+/obj/item/stack/nanopaste,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"VL" = (
+/obj/structure/closet/chefcloset,
+/obj/item/glass_jar,
+/obj/item/device/retail_scanner/civilian,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/tool/wrench,
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"VM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"VN" = (
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck2/central)
+"VO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"VP" = (
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/port)
+"VS" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = -9;
+ pixel_y = 10
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = -9;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"VT" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/portescape)
+"VU" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/gadget,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/crew_quarters/locker)
+"VV" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"VW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"VX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = 32
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"VY" = (
+/obj/machinery/computer/timeclock/premade/north,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"VZ" = (
+/obj/effect/floor_decal/milspec/color/white/half,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Wa" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"Wb" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"Wc" = (
+/obj/structure/table/standard,
+/obj/item/weapon/module/power_control,
+/obj/item/weapon/cell{
+ maxcharge = 2000
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"We" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"Wf" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"Wg" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Wh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"Wi" = (
+/obj/machinery/computer/crew,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Wj" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"Wk" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Wl" = (
+/obj/machinery/vending/assist,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"Wm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"Wn" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"Wo" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"Wp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Wq" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck2/fore)
+"Wr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/central)
+"Ws" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"Wu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Wv" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Ww" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Wx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Wy" = (
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Wz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/white,
+/turf/simulated/floor,
+/area/medical/reception)
+"WA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#e6ab22";
+ fill_color = "#877242";
+ name = "Atmospherics";
+ req_access = list(24);
+ stripe_color = "#2ebfbd"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/engineering/atmos/monitoring)
+"WB" = (
+/obj/structure/table/glass,
+/mob/living/simple_mob/animal/passive/cat/jones,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"WC" = (
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"WE" = (
+/obj/machinery/firealarm/angled{
+ dir = 4
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"WF" = (
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = 35
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_x = -32;
+ pixel_y = 29
+ },
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 41
+ },
+/obj/structure/sign/directions/bar{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 47
+ },
+/obj/structure/sign/directions/engineering/atmospherics{
+ dir = 10;
+ pixel_x = -32;
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"WG" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/quartermaster/storage)
+"WH" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"WI" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"WJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"WK" = (
+/obj/structure/closet/emcloset,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"WL" = (
+/obj/structure/closet/emergsuit_wall{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/milspec/color/blue/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"WM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"WN" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"WO" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"WP" = (
+/turf/simulated/shuttle/wall,
+/area/stellardelight/deck2/portescape)
+"WQ" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"WR" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/device/paicard,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"WS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"WT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"WU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#e6ab22";
+ fill_color = "#877242";
+ name = "Fuel Storage";
+ req_access = list(24);
+ stripe_color = "#2ebfbd"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/fuelstorage)
+"WW" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"WX" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/captain,
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/captain)
+"WY" = (
+/obj/structure/table/glass,
+/obj/random/medical{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"WZ" = (
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/locker)
+"Xa" = (
+/turf/simulated/wall/bay/r_wall/white,
+/area/medical/chemistry)
+"Xb" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Xc" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "barlockdown"
+ },
+/turf/simulated/floor/airless,
+/area/crew_quarters/bar)
+"Xd" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"Xe" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Xf" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tool/crowbar,
+/obj/item/clothing/gloves/black,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/workshop)
+"Xg" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/chemist,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Xh" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Xi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Xj" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"Xk" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/kitchen)
+"Xl" = (
+/obj/machinery/firealarm/angled,
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Xm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Xo" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_room)
+"Xp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"Xq" = (
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Xr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"Xs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"Xt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"Xu" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"Xv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"Xx" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/recreation_area)
+"Xy" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"Xz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"XB" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/transhuman_resleever{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/circuit_imprinter{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/aiupload{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/borgupload{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/storage/tech)
+"XC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"XD" = (
+/obj/structure/easel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"XF" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/adv{
+ name = "human repair kit";
+ pixel_x = -9;
+ pixel_y = 9
+ },
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = -9;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 6;
+ pixel_y = 9
+ },
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"XG" = (
+/obj/machinery/atmospherics/binary/algae_farm/filled{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"XH" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Engineering Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/stellardelight/substation/engineering)
+"XI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"XJ" = (
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"XK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"XL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ dir = 4;
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/aftstarboard)
+"XM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "starboard_escape_berth";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/eris/white/danger,
+/area/stellardelight/deck2/starboard)
+"XN" = (
+/obj/machinery/computer/supplycomp{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/cargo{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/quartermaster/storage)
+"XO" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"XP" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"XQ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"XR" = (
+/obj/machinery/suit_cycler/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/captain)
+"XS" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/computer/security/engineering,
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"XT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"XU" = (
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"XV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"XW" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/orange,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/atmos)
+"XX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/quartermaster,
+/turf/simulated/floor/wood,
+/area/quartermaster/qm)
+"XY" = (
+/obj/effect/landmark/start/medical,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"XZ" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/anomaly_spectroscopy,
+/obj/item/weapon/book/manual/anomaly_testing,
+/obj/item/weapon/book/manual/materials_chemistry_analysis,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"Ya" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Air to Distro"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"Yb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Yc" = (
+/obj/structure/musician/piano{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Yd" = (
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Ye" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Yf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "barlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/barbackroom)
+"Yg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/bay/brown,
+/area/quartermaster/storage)
+"Yh" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portaft)
+"Yi" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck2/barbackroom)
+"Yj" = (
+/obj/structure/table/standard,
+/obj/item/device/retail_scanner/civilian,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Yk" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"Yl" = (
+/obj/machinery/firealarm/angled,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"Ym" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"Yn" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ dir = 4;
+ id = "chemistry";
+ name = "Chemistry Shutters";
+ pixel_x = -24;
+ pixel_y = -30;
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Yo" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"Yp" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Yq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/engineering/engine_room)
+"Yr" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/storage)
+"Ys" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/full,
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/chemistry)
+"Yu" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"Yv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 6
+ },
+/obj/structure/sign/atmos/n2o{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/storage)
+"Yw" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"Yx" = (
+/obj/structure/sign/deck2{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"Yy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Yz" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"YA" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window,
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboardescape)
+"YB" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"YC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start/chef,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"YD" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"YE" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/atmos/monitoring)
+"YF" = (
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"YG" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"YH" = (
+/obj/machinery/beehive,
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"YI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/reception)
+"YJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"YK" = (
+/obj/effect/floor_decal/milspec/color/green/half{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"YL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"YM" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck2/barbackroom)
+"YN" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/civilian{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/crew_quarters/recreation_area)
+"YP" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"YQ" = (
+/obj/machinery/vending/snix,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"YR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engineering_monitoring)
+"YS" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftport)
+"YT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"YU" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"YW" = (
+/obj/machinery/vending/radren,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"YX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/starboard)
+"YY" = (
+/turf/simulated/wall/bay/brown,
+/area/quartermaster/qm)
+"YZ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/ladder/up,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardfore)
+"Za" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardaft)
+"Zb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 8;
+ fill_color = "#ffffff";
+ name = "Kitchen Cold Room";
+ req_access = list(28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/kitchen)
+"Zc" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1380;
+ id_tag = "port_escape_pod";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/stellardelight/deck2/portescape)
+"Zd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/workshop)
+"Ze" = (
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"Zf" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/radio/off{
+ pixel_y = 6
+ },
+/obj/item/device/radio/off{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/device/radio/off{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/device/radio/off,
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/locker_room)
+"Zh" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/engineering/engine_eva)
+"Zi" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/bodybag/cryobag{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/box/lights/mixed{
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Zj" = (
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Zk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"Zl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "kitchenlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/crew_quarters/kitchen)
+"Zm" = (
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Zn" = (
+/obj/structure/cable/yellow{
+ icon_state = "32-8"
+ },
+/obj/structure/sign/department/miner_dock{
+ pixel_y = 32
+ },
+/turf/simulated/open,
+/area/quartermaster/storage)
+"Zo" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/milspec/color/black/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/milspec/color/silver/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Zp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Zq" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"Zr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"Zs" = (
+/turf/simulated/floor,
+/area/stellardelight/deck2/combustionworkshop)
+"Zt" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fuelstorage)
+"Zu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/art)
+"Zv" = (
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/weapon/storage/box/rxglasses{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/rxglasses,
+/obj/item/device/glasses_kit,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Zw" = (
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/medical/cmostore)
+"Zx" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/bridge)
+"Zy" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/kitchen)
+"ZA" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/firealarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"ZC" = (
+/obj/item/weapon/stool/padded{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/crew_quarters/bar)
+"ZD" = (
+/obj/structure/table/reinforced,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/stellardelight/deck2/triage)
+"ZE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/fuelstorage)
+"ZF" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"ZG" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck2/exterior)
+"ZH" = (
+/obj/machinery/computer/guestpass{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/milspec/color/orange/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/aftstarboard)
+"ZI" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"ZJ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/portsolars)
+"ZK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/stellardelight/deck2/triage)
+"ZL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/crew_quarters/kitchen)
+"ZM" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/fore)
+"ZN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck2/o2production)
+"ZO" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"ZP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/engineering/engine_room)
+"ZQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck2/port)
+"ZR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/door/window/westright{
+ name = "Engineering Reception Desk";
+ req_access = list(10)
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/engineering/engineering_monitoring)
+"ZS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"ZT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "atmoswindowlockdown";
+ name = "Window Lockdown";
+ pixel_y = 56
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/monitoring)
+"ZU" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/bridge)
+"ZV" = (
+/turf/simulated/floor,
+/area/stellardelight/deck2/aftport)
+"ZW" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/camera/network/civilian{
+ dir = 5
+ },
+/obj/effect/floor_decal/milspec/color/green,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ZX" = (
+/obj/machinery/power/smes/buildable/offmap_spawn/empty{
+ RCon_tag = "Solar Array - Starboard"
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck2/starboardsolars)
+"ZY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ id = "cargoload"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/quartermaster/storage)
+"ZZ" = (
+/obj/structure/bed/chair/sofa/corp/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/recreation_area)
+
+(1,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(2,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(3,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(4,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(5,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(6,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(7,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(8,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(9,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(10,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(11,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(12,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(13,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(14,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(15,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(16,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(17,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(18,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(19,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(20,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(21,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(22,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(23,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(24,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(25,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Tt
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(26,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(27,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(28,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(29,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(30,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(31,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(32,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(33,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(34,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(35,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(36,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+iU
+SO
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+CQ
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(37,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Sk
+Le
+Le
+Le
+Le
+Le
+hI
+Dt
+Jm
+Jm
+Jm
+Jm
+Jm
+sR
+Jm
+Jm
+Jm
+Jm
+Jm
+Jm
+Us
+Jm
+nI
+kL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(38,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ds
+uu
+oy
+ov
+ov
+ov
+Ff
+xR
+ov
+ov
+Ff
+Ff
+ov
+ov
+Wb
+Au
+QI
+tZ
+QI
+tZ
+QI
+eW
+QI
+Pu
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(39,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ds
+Le
+Le
+Le
+wg
+Le
+Le
+Le
+Le
+Le
+SO
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ds
+kL
+ov
+ub
+VB
+vV
+NH
+Zs
+QO
+kz
+dH
+zu
+IF
+vk
+UI
+ui
+Pu
+Pu
+Pu
+Pu
+Pu
+Pu
+wu
+Pu
+Pu
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(40,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+iU
+Le
+Le
+Le
+Le
+Le
+Vc
+Le
+Fh
+Le
+kL
+NL
+NL
+NL
+NL
+NL
+NL
+Iz
+NL
+NL
+CP
+MX
+Le
+Sj
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+ZG
+NL
+ov
+cq
+ub
+yN
+gZ
+aq
+Zs
+lF
+op
+Tr
+pB
+sF
+Jd
+Kp
+Pu
+Pu
+Pu
+Pu
+Pu
+Pu
+wu
+Pu
+Pu
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(41,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+ZG
+yH
+yH
+yH
+yH
+yH
+yH
+NL
+yH
+yH
+yH
+yH
+yH
+ZG
+NL
+Wb
+Wb
+Wb
+Wb
+Wb
+NL
+NL
+ZG
+tc
+ov
+Pw
+gs
+If
+VO
+kP
+kP
+kP
+Sg
+YT
+Ap
+AD
+ov
+Qw
+ma
+Qw
+ma
+Qw
+ma
+Pu
+wu
+Pu
+Pu
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(42,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+ZG
+iH
+Uh
+Uh
+Uh
+Uh
+Uh
+NL
+Ig
+Ig
+Ig
+Ig
+BE
+CP
+Le
+Le
+Le
+Le
+Le
+rW
+GJ
+GJ
+vJ
+mI
+ov
+wp
+wp
+wp
+Fx
+zi
+BG
+Kd
+VI
+DX
+Fa
+jE
+uk
+IU
+IU
+uk
+uk
+uk
+NL
+Pu
+wu
+Pu
+Pu
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(43,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+se
+dk
+dk
+dk
+dk
+dk
+dk
+dk
+bw
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+yy
+uK
+bH
+mZ
+Mx
+Cq
+Cq
+Cq
+Cq
+NL
+Cq
+Cq
+Cq
+Cq
+Cq
+NL
+Jh
+Jh
+Jh
+Jh
+mI
+sx
+DB
+rs
+DB
+DB
+Hm
+Hm
+Hm
+wp
+wp
+aD
+wp
+MQ
+vW
+Ny
+vw
+nA
+EF
+In
+hu
+BZ
+TF
+uk
+uk
+Qw
+ms
+Qw
+ma
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(44,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+jx
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+CP
+Le
+SO
+qG
+Uh
+Uh
+Uh
+NL
+Ig
+Ig
+Ig
+Ig
+BE
+Wb
+Wb
+Jh
+Jh
+mI
+mI
+uR
+DB
+DB
+St
+Wo
+bR
+xr
+Gh
+nW
+RL
+DY
+Hm
+Hm
+Hm
+Hm
+Hm
+mu
+oE
+eU
+TH
+qO
+pO
+Pm
+uk
+uk
+ZG
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(45,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+Ar
+NL
+jx
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+CP
+SO
+Mx
+Mx
+Mx
+NL
+Mx
+Mx
+Mx
+Mx
+Mx
+Wb
+Wb
+Wb
+mI
+mI
+fQ
+th
+Wo
+XW
+Qg
+eq
+eq
+iA
+eq
+eq
+be
+ZT
+Hm
+Em
+Am
+Et
+Am
+nR
+Rw
+od
+UY
+WJ
+pO
+HI
+Av
+dV
+mh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(46,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+se
+dk
+dk
+dk
+dk
+dk
+dk
+UT
+cT
+nP
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+CP
+SO
+NL
+NL
+Cf
+NL
+NL
+NL
+NL
+Jh
+Jh
+Wb
+BT
+BT
+eq
+eq
+eq
+eq
+eq
+eq
+eq
+nE
+JS
+NK
+eq
+sz
+to
+GC
+Ag
+Fl
+sp
+hK
+Pq
+oE
+Kq
+ge
+IA
+eG
+Ei
+js
+uk
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(47,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+bD
+yK
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+NL
+jx
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+ZG
+Wb
+ie
+zI
+ie
+Jh
+Wb
+Wb
+Jh
+Jh
+Jh
+BT
+cx
+ez
+QH
+eq
+ql
+ez
+mB
+eq
+nE
+JS
+NK
+eq
+XS
+kM
+ZS
+VA
+km
+Na
+Ul
+Fv
+GD
+Ck
+Jt
+ut
+XG
+PJ
+Kk
+rb
+mR
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(48,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+jx
+Wb
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+jx
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+ZG
+Jh
+aa
+eb
+Fz
+Fz
+Fz
+jL
+Wb
+Jh
+FD
+BT
+cx
+JS
+QH
+eq
+ql
+JS
+mB
+eq
+ny
+xu
+oA
+oo
+Er
+la
+la
+tz
+eu
+ig
+tN
+mx
+oE
+tD
+UY
+OK
+pO
+Qu
+ro
+Sz
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(49,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+KL
+hO
+SE
+KL
+aT
+aT
+aT
+KL
+aT
+KL
+SE
+KL
+aT
+aT
+aT
+KL
+aT
+aT
+KL
+aT
+aT
+aT
+KL
+KL
+KL
+KL
+KL
+WP
+Br
+hg
+WP
+rR
+rR
+rR
+rR
+QY
+QY
+rR
+rR
+rR
+rR
+rR
+ie
+Tw
+Fz
+Pk
+Px
+sa
+Fo
+Te
+CO
+ux
+ux
+MC
+BT
+Yv
+xu
+oA
+oo
+xW
+xu
+oA
+mA
+kW
+eI
+WS
+Un
+Ab
+Ab
+Ek
+QC
+uN
+gy
+SS
+Dg
+oE
+ZN
+pY
+DE
+sT
+WM
+ro
+Sz
+QW
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(50,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+KL
+KL
+Md
+Qx
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+KD
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Gv
+Uv
+Gv
+yz
+KL
+WP
+Zc
+fX
+WP
+rR
+rR
+RE
+um
+iz
+sn
+kg
+RZ
+dC
+cV
+iz
+qC
+zv
+Xm
+eE
+pk
+Fe
+PU
+GO
+GK
+ZJ
+My
+PW
+eq
+Wv
+xi
+oQ
+oQ
+zM
+Mf
+oQ
+oQ
+wA
+ah
+ue
+As
+Tq
+oU
+xN
+Zq
+VV
+et
+Ca
+Yo
+UG
+UG
+Od
+UG
+UG
+cv
+cv
+cv
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(51,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Wb
+Jh
+Jh
+hO
+Md
+Ub
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+KK
+KK
+KK
+kR
+kR
+kR
+KK
+kR
+kR
+KK
+kR
+kR
+kR
+KK
+KK
+OQ
+Ev
+KL
+WP
+yp
+bI
+WP
+rR
+EG
+Yh
+Yh
+Yh
+AP
+Yh
+Yh
+Yh
+uL
+Yh
+Ym
+qY
+fw
+uc
+JP
+DH
+CA
+NB
+Lf
+dO
+AU
+dx
+lh
+gM
+oe
+AX
+Dc
+he
+CR
+AX
+AX
+he
+AX
+ao
+AX
+Qr
+ag
+XK
+qN
+CM
+qw
+iJ
+Xu
+UG
+di
+Iq
+EQ
+Zt
+qM
+Vm
+mq
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(52,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+CZ
+dk
+dk
+dk
+dk
+Vd
+Zy
+oD
+ch
+ch
+Bk
+Wa
+vh
+Wa
+OM
+hl
+rO
+sV
+ZW
+Wp
+LO
+rt
+Lz
+bb
+kG
+sd
+Vz
+oz
+pd
+uA
+KK
+Gq
+Cu
+hO
+WP
+VT
+fX
+WP
+QY
+Kb
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+Bw
+bh
+wB
+Bw
+Bw
+Bw
+Bw
+bg
+bF
+Wx
+hN
+qg
+ac
+Wx
+ez
+ac
+QK
+ff
+nG
+CH
+AW
+LU
+ja
+Eq
+VW
+Cn
+mD
+vD
+qL
+UG
+JM
+GU
+Su
+LG
+AV
+Vm
+Vm
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(53,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+se
+nP
+NL
+Jh
+Jh
+Xk
+Xk
+kX
+Gi
+wL
+ch
+DD
+my
+AC
+DP
+BF
+hl
+pN
+yv
+Uo
+iZ
+ES
+ea
+Qo
+pX
+iZ
+ej
+WN
+ok
+dP
+AR
+KK
+si
+pS
+hO
+WP
+LM
+LM
+WP
+QY
+Kb
+Bw
+YQ
+Gc
+dX
+fr
+MD
+ox
+MD
+zp
+eL
+fr
+vU
+MD
+MD
+fR
+IC
+TZ
+cn
+TZ
+dR
+WK
+eq
+RN
+gY
+qg
+ac
+vB
+Nl
+wI
+Ai
+RN
+tF
+IN
+Ki
+Ya
+vF
+An
+uB
+XI
+im
+vn
+qF
+UG
+Bd
+No
+zY
+yg
+AV
+cv
+cv
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(54,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+se
+nP
+NL
+Jh
+Jh
+Xk
+Xk
+Fm
+ki
+Yp
+uW
+ch
+gQ
+cu
+VH
+LW
+Ha
+hl
+af
+dQ
+Do
+iZ
+GM
+lf
+mz
+sA
+iZ
+ii
+WN
+bU
+LS
+Jp
+KK
+JH
+Fc
+KL
+wn
+sW
+sW
+wn
+rR
+Rz
+Bw
+vX
+Ec
+kI
+ti
+ti
+ti
+ti
+IB
+ti
+ti
+ti
+ti
+qI
+xe
+MY
+ti
+ti
+ti
+Es
+Bx
+eq
+Mu
+xu
+oA
+TA
+sU
+xu
+oA
+NX
+xl
+HX
+OH
+zd
+YE
+ly
+go
+UD
+Lk
+oq
+om
+IH
+WU
+zV
+Tu
+Js
+Sc
+PB
+NL
+NL
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(55,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+se
+nP
+NL
+Wb
+Jh
+Xk
+Xk
+rn
+oO
+CE
+IW
+VL
+hl
+hl
+hl
+hl
+Zb
+hl
+hl
+Mn
+oj
+if
+vP
+Uy
+ap
+zb
+EA
+wP
+JI
+fa
+gc
+Vn
+dP
+KK
+Nw
+Iw
+KL
+Bw
+BW
+BW
+Bw
+rR
+Kb
+Bw
+mg
+pL
+CJ
+hr
+Cj
+Cj
+Cj
+Cj
+Cj
+Cj
+ZQ
+Cj
+tP
+tU
+jd
+Cj
+Bf
+NG
+cO
+Bx
+eq
+CT
+JS
+BY
+eq
+cE
+JS
+Ch
+eq
+mf
+sb
+wZ
+eq
+OT
+ty
+lt
+OY
+nZ
+Dm
+CB
+qF
+UG
+Rl
+Sd
+ZE
+MP
+PB
+cv
+cv
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(56,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+bD
+yK
+NL
+Wb
+Wb
+Wb
+Xk
+OA
+dm
+YC
+lz
+hZ
+lr
+iN
+YK
+gG
+bq
+YJ
+uf
+bt
+Dq
+Is
+iY
+iY
+iY
+Yw
+iZ
+iZ
+iZ
+Kc
+WN
+ok
+dP
+AR
+KK
+bP
+kK
+Rp
+gm
+PG
+PG
+Cb
+Rp
+Ws
+Bw
+Bw
+Ec
+wF
+Mo
+xp
+xp
+QB
+QB
+QB
+xp
+Hr
+Hr
+Hr
+Hr
+Hr
+Hr
+Hr
+Ec
+cO
+Bx
+eq
+CT
+kQ
+BY
+eq
+cE
+uO
+Ch
+eq
+mf
+oL
+wZ
+eq
+Cz
+Hs
+kn
+Zp
+dt
+Ov
+al
+qF
+UG
+ot
+MG
+Su
+ay
+wm
+Vm
+mq
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(57,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+jx
+Wb
+Wb
+Jh
+Jh
+Xk
+nC
+Ta
+Bn
+yf
+IW
+Yj
+Bj
+ml
+BH
+BH
+jM
+BH
+YH
+Ro
+sE
+bc
+Ue
+SY
+zr
+bS
+aS
+aG
+RA
+qp
+dF
+sh
+mS
+KK
+mY
+qy
+Bw
+Aa
+sg
+sg
+pr
+Bw
+FS
+yP
+Bw
+Ko
+wF
+SX
+xp
+qn
+hC
+Dx
+yo
+XZ
+Hr
+Oj
+Ht
+Fq
+Qy
+wd
+Hr
+Gs
+yd
+pv
+eq
+eq
+eq
+eq
+eq
+eq
+eq
+eq
+eq
+eq
+nr
+yl
+yl
+WA
+cl
+pT
+vx
+FL
+gB
+HC
+fG
+UG
+DF
+RU
+Wj
+DR
+AV
+Vm
+Vm
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(58,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+jx
+Jh
+Jh
+Jh
+Jh
+Zl
+QG
+Bm
+Ak
+Pg
+IW
+rr
+hl
+MU
+jo
+jo
+aj
+jo
+MU
+MU
+MU
+jo
+jo
+MU
+Sy
+MU
+gx
+lI
+MU
+jo
+jo
+yX
+jo
+KK
+Bw
+Bw
+Bw
+pw
+Yk
+Ce
+pw
+Bw
+Bw
+Bw
+Bw
+Ec
+wF
+SX
+ip
+so
+Nu
+EC
+ws
+va
+Hr
+hw
+hV
+RM
+Om
+zt
+Hr
+jt
+gK
+eP
+yY
+fn
+HG
+bk
+Mc
+Mc
+yD
+SQ
+nX
+SQ
+ym
+Qn
+nw
+xx
+TW
+Hm
+BQ
+FL
+gB
+yB
+qF
+UG
+UG
+Jo
+eg
+eg
+tk
+cv
+cv
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(59,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+lZ
+Di
+Jh
+Jh
+Jh
+Zl
+gr
+Ta
+OO
+Vv
+IW
+pI
+uV
+Zo
+ND
+ND
+au
+ND
+Sr
+zO
+Qe
+Qe
+Qe
+Qe
+PZ
+GY
+Qe
+Qe
+Hk
+Qe
+Qe
+Qe
+Qe
+nS
+Vw
+eL
+pA
+VP
+VP
+VP
+MD
+eL
+pA
+MD
+MD
+WF
+wF
+SX
+ip
+Gr
+dh
+Fr
+ws
+tv
+Hr
+zU
+Ee
+Bh
+iD
+ca
+Hr
+xm
+dj
+YS
+YS
+YS
+ul
+YS
+YS
+YS
+YS
+YS
+dz
+YS
+EW
+gf
+DQ
+QR
+zR
+Hm
+wM
+FL
+eH
+cM
+XV
+Tf
+aZ
+xU
+jV
+KQ
+ey
+Le
+Le
+gF
+Ii
+Sj
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(60,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+lZ
+Di
+Wb
+Xk
+Xk
+cW
+gj
+pz
+Bo
+cw
+Ta
+Gy
+Gj
+jC
+XC
+XC
+XC
+XC
+XC
+XC
+XC
+ih
+ZM
+bN
+MV
+XO
+XO
+XO
+XO
+XO
+hd
+sO
+sO
+Vw
+Ve
+Ve
+VP
+VP
+VP
+Ve
+Ve
+Ve
+Ve
+Ve
+Ve
+wF
+SX
+ip
+mP
+Tp
+HB
+fb
+jI
+Hr
+dD
+sK
+Ge
+yU
+xj
+Hr
+nB
+cj
+FX
+CD
+CD
+eD
+CD
+CD
+FX
+FX
+gw
+ci
+FX
+JC
+zf
+CD
+pq
+cz
+Hm
+vx
+bo
+Uk
+xt
+tI
+ga
+qx
+MJ
+Gl
+FK
+qq
+Wb
+Wb
+NL
+CP
+SO
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(61,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+jx
+NL
+Xk
+iC
+Ta
+Ta
+Ta
+GB
+zJ
+ZL
+Ng
+gl
+aB
+TM
+HR
+of
+cP
+yh
+QM
+Xe
+qo
+ek
+mN
+kV
+Zr
+Zr
+Zr
+Zr
+sO
+Xi
+ua
+Rj
+Vw
+mi
+bA
+MA
+tL
+VP
+bA
+bA
+bA
+bA
+bA
+BP
+wF
+FP
+xp
+ke
+lc
+Dn
+RW
+jX
+Hr
+Dy
+uv
+EL
+IZ
+OC
+Hr
+Hr
+Oi
+bY
+Ef
+kt
+wY
+Ip
+ZV
+bY
+FX
+FX
+ci
+Hl
+do
+do
+do
+Vj
+do
+Hm
+Hm
+Hm
+Hm
+Hm
+Hm
+Hm
+Hm
+pK
+Hm
+Hm
+SK
+LE
+LE
+LE
+LE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(62,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+jx
+NL
+Xk
+iF
+Pn
+Pn
+Pn
+Yu
+nU
+Pn
+HJ
+RD
+KH
+zz
+nt
+nt
+nt
+nt
+nt
+kE
+QV
+nt
+nt
+nt
+DN
+xP
+Wq
+Vr
+Wk
+Xi
+RT
+nK
+nK
+nK
+Rd
+xd
+xd
+ug
+ug
+ug
+ug
+xd
+xd
+oH
+SD
+fv
+xp
+xp
+xH
+xp
+xp
+xp
+Hr
+Hr
+Hr
+Hr
+Bl
+Hr
+Hr
+Hr
+Gx
+DA
+AJ
+Ef
+wY
+dL
+qT
+AL
+sI
+FX
+zl
+Ao
+do
+ME
+bl
+hU
+do
+vC
+UO
+PC
+PL
+PC
+UO
+Pj
+sG
+pb
+Jr
+Ur
+EH
+yT
+UZ
+yC
+LE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(63,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+jx
+HQ
+HQ
+YD
+EV
+EV
+EV
+ZC
+FM
+EV
+Sx
+po
+td
+jF
+nt
+Ji
+YN
+De
+QZ
+Ho
+aE
+QJ
+WR
+nt
+Rq
+Rq
+Rq
+Rq
+Jq
+Xi
+RT
+nK
+fV
+nK
+zH
+xd
+mH
+Ad
+rF
+GV
+GV
+OD
+xd
+Mj
+Da
+vH
+PE
+Qh
+bi
+Nh
+Vb
+ZD
+HM
+FH
+bu
+Qp
+Ih
+KV
+jK
+Vb
+QP
+QP
+QP
+QP
+QP
+QP
+QP
+QP
+QP
+ei
+Bt
+eB
+do
+Zn
+Lm
+YP
+do
+Az
+NN
+qu
+re
+pc
+NN
+NN
+Yg
+Fi
+EK
+eR
+EK
+qt
+Wf
+ID
+bE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(64,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+bD
+dk
+dM
+ir
+pn
+QS
+QS
+QS
+BJ
+Fb
+TC
+DI
+Sx
+jr
+KH
+zz
+nt
+Mp
+dY
+cC
+iO
+mt
+Cy
+mt
+Yc
+nt
+Rq
+Rq
+lQ
+Rq
+Jq
+Xi
+kF
+nK
+nK
+nK
+Rd
+xd
+Pl
+OL
+cJ
+cb
+Al
+Fk
+Uu
+Mj
+Da
+Ib
+PE
+pM
+Xb
+hp
+Dk
+ds
+hx
+hx
+Ay
+LZ
+bJ
+Ll
+hx
+EU
+QP
+QN
+Zi
+tM
+ko
+Ia
+XY
+pg
+QP
+cs
+ci
+eB
+do
+WG
+Hu
+ak
+Me
+ar
+uI
+Sn
+wk
+Cm
+Qj
+AZ
+ht
+ye
+DZ
+DZ
+DZ
+DZ
+DZ
+in
+bE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(65,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+oJ
+Gn
+MK
+YU
+Nc
+Nc
+dU
+TC
+YU
+rV
+VG
+KH
+HO
+nt
+GL
+mt
+mt
+mt
+mt
+Cy
+mt
+SI
+nt
+nt
+nt
+nt
+nt
+PA
+Xi
+cY
+nK
+nK
+So
+lD
+xd
+xd
+xd
+cg
+CK
+cb
+Fk
+Uu
+ll
+xZ
+xn
+PE
+dK
+me
+gH
+kb
+iW
+uh
+Ox
+fO
+Jy
+nT
+yk
+Mb
+ww
+QP
+Uq
+Kf
+Kf
+XF
+VS
+XY
+pg
+QP
+Rv
+ci
+eB
+do
+WG
+gb
+kx
+Rx
+Jj
+PH
+wE
+es
+Rx
+Vi
+pD
+jQ
+jQ
+jQ
+Eu
+jQ
+jQ
+jQ
+Qa
+bE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(66,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+oJ
+wG
+MK
+YU
+Gn
+CY
+Gn
+TC
+YU
+rV
+lT
+KH
+Ct
+nt
+WC
+mt
+mt
+mt
+mt
+jv
+ct
+Lq
+ct
+HE
+xE
+yG
+nt
+kr
+Mi
+RT
+nK
+xB
+Zj
+Sp
+Io
+kJ
+xd
+dZ
+er
+Gg
+PP
+xd
+dp
+Da
+VZ
+PE
+PE
+kZ
+ya
+Vb
+Vb
+KS
+Vb
+KT
+wz
+ZK
+Ze
+nj
+Qi
+Pv
+lL
+cR
+ee
+cR
+yI
+XY
+pg
+QP
+Qf
+MR
+Ua
+do
+do
+do
+do
+Ti
+DM
+JN
+hS
+hS
+zj
+dN
+pD
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(67,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+oJ
+Gn
+MK
+YU
+ic
+ls
+oF
+TC
+aY
+bx
+VG
+KH
+zz
+nt
+UW
+Bp
+oS
+oS
+oS
+Bp
+mt
+mt
+mt
+DL
+Lb
+ix
+nt
+rH
+QX
+RT
+jU
+kc
+ru
+Xs
+Cw
+Cw
+kD
+Mt
+it
+SH
+Vg
+xd
+AB
+Da
+VZ
+Wz
+Lv
+RF
+YI
+Kt
+EJ
+WQ
+Vb
+wh
+wz
+RQ
+Ze
+Eo
+Ze
+QP
+gu
+Kf
+Kf
+Kf
+Kf
+XY
+pg
+QP
+jN
+db
+Eb
+OP
+TS
+XN
+NN
+ou
+vy
+mw
+mw
+jD
+zj
+PS
+cU
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(68,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+HQ
+Nk
+YU
+YU
+YU
+qe
+YU
+TC
+YU
+Sx
+VG
+KH
+zz
+nt
+yc
+Dl
+UX
+UX
+UX
+vS
+mt
+mt
+mt
+DL
+Lb
+sc
+nt
+yF
+uE
+RT
+jU
+Lx
+Zx
+UL
+BX
+Vy
+xd
+xd
+xd
+xd
+xd
+xd
+rk
+Da
+VZ
+xQ
+lW
+RF
+mo
+IQ
+ef
+xO
+Vb
+fP
+ve
+TL
+QD
+Ba
+jp
+QP
+QP
+tV
+Id
+yV
+Kf
+XY
+pg
+QP
+tA
+db
+Eb
+dq
+zj
+We
+Lu
+CS
+vq
+Rh
+gO
+vq
+hS
+dN
+LX
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(69,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+TU
+oJ
+Gn
+MK
+YU
+Nc
+Ux
+xD
+Pc
+fB
+iX
+UQ
+kS
+PK
+JR
+xA
+DS
+UX
+Bp
+UX
+ts
+Ut
+Ut
+Ut
+DL
+tb
+rg
+nt
+dG
+wK
+GS
+jU
+ew
+Rf
+Uj
+ZU
+JQ
+nK
+nK
+bL
+wi
+VN
+sS
+Mj
+Da
+VZ
+vN
+RF
+RF
+Xt
+eS
+jG
+iP
+Vb
+Kg
+wz
+fx
+zC
+fx
+MH
+LZ
+Vb
+Vb
+Vb
+Vb
+hi
+XY
+pg
+QP
+TJ
+db
+Eb
+dq
+zj
+GE
+NN
+BM
+RO
+pl
+LF
+oC
+hS
+dN
+pD
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+CP
+SO
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(70,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Xc
+oJ
+LP
+zw
+Jl
+Gn
+CI
+iT
+TC
+ku
+Sx
+Je
+DW
+JL
+nt
+BS
+Dl
+UX
+BK
+Fw
+vS
+Ut
+IE
+Ut
+Xx
+NS
+mL
+nt
+HY
+GI
+UM
+jU
+Hb
+HL
+nD
+CG
+wo
+nK
+nK
+uQ
+xy
+Hg
+os
+em
+PO
+wl
+Ci
+zG
+wX
+Pr
+qj
+ld
+rC
+Vb
+HA
+wz
+TR
+Kl
+vi
+Ze
+Ay
+qZ
+hT
+bf
+Vb
+Zv
+Kf
+sZ
+QP
+Hj
+ln
+xC
+xG
+zj
+GE
+do
+iB
+vq
+XJ
+MM
+nz
+hS
+dN
+su
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+FW
+bE
+Jh
+AF
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(71,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+TU
+oJ
+Gn
+MK
+oB
+wq
+wq
+WI
+LR
+by
+FJ
+OW
+pG
+co
+BD
+ud
+Ep
+UX
+Bp
+UX
+ts
+Ut
+Ut
+Ut
+DL
+hD
+wf
+nt
+pa
+rj
+EN
+jU
+Mw
+IL
+Uj
+Nn
+JQ
+rN
+rN
+rN
+rN
+rN
+rN
+Mj
+Wr
+VZ
+vN
+RF
+RF
+wa
+eS
+WB
+rC
+Vb
+Ol
+FG
+ZK
+Ks
+ZK
+Ze
+hx
+Vb
+Vb
+Vb
+Vb
+vG
+Kf
+wC
+QP
+cK
+Vk
+BL
+KR
+wH
+Sv
+sk
+gN
+Um
+wR
+wR
+fz
+bB
+OR
+fY
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(72,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+HQ
+pi
+YU
+lU
+as
+as
+Rr
+AY
+YU
+Sx
+Ls
+KH
+zz
+nt
+yc
+Dl
+UX
+UX
+UX
+vS
+mt
+mt
+mt
+DL
+Lb
+sc
+nt
+yF
+uE
+RT
+jU
+Lx
+Ld
+Uj
+Zj
+Zj
+rN
+ry
+sB
+cZ
+lC
+rN
+zo
+Wr
+VZ
+xQ
+wS
+RF
+sv
+Ud
+gg
+HH
+Vb
+wT
+BU
+RQ
+Ze
+FE
+La
+QP
+QP
+kk
+xV
+jW
+Kf
+Kf
+AG
+QP
+Pt
+db
+Eb
+rv
+zj
+DV
+do
+EM
+uY
+hS
+hS
+bW
+zj
+ZY
+ET
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(73,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+oJ
+Gn
+MK
+fi
+VC
+XU
+sr
+Xq
+qS
+Sx
+EE
+KH
+zz
+nt
+hA
+Bp
+io
+io
+io
+Bp
+mt
+mt
+mt
+DL
+Lb
+ix
+nt
+Yy
+Hy
+RT
+jU
+Wi
+hc
+GP
+nv
+JK
+nu
+RH
+ky
+AO
+WX
+rN
+Hh
+Wr
+VZ
+Wz
+Qq
+Km
+Mq
+xL
+LC
+yQ
+Vb
+wT
+zD
+ik
+Ze
+og
+Ze
+QP
+sJ
+nJ
+kj
+Pb
+Vq
+kO
+yE
+QP
+jN
+db
+Eb
+gq
+HZ
+Nj
+NN
+ae
+or
+WE
+Ui
+BO
+Ui
+dN
+pD
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+Wb
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(74,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+oJ
+wG
+MK
+fi
+dw
+On
+rd
+AN
+sL
+rV
+lT
+KH
+Ct
+nt
+Yl
+mt
+mt
+mt
+mt
+hm
+VM
+uJ
+VM
+BC
+lG
+ZZ
+nt
+ys
+IK
+RT
+nK
+Dh
+lo
+lB
+GW
+Fp
+rN
+VE
+oc
+xv
+Ow
+rN
+IG
+AA
+rc
+Xa
+Xa
+Rc
+tf
+Xa
+Xa
+NQ
+Vb
+qm
+Wu
+GF
+hR
+fu
+dc
+zQ
+fF
+aX
+Qc
+Tm
+hn
+pf
+hn
+hn
+Qf
+qb
+Ua
+YY
+Nf
+Nf
+YY
+le
+YY
+YY
+xk
+BO
+Ui
+dN
+pD
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+Wb
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(75,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+oJ
+Gn
+zw
+fi
+dw
+On
+py
+fp
+mn
+rV
+VG
+KH
+HO
+nt
+XP
+mt
+mt
+mt
+mt
+lO
+mt
+mt
+nt
+nt
+nt
+nt
+nt
+PA
+IK
+cY
+nK
+nK
+oZ
+gC
+rN
+rN
+rN
+iM
+uP
+IV
+IV
+rN
+uF
+dB
+aF
+Xa
+eJ
+JV
+Yn
+Hc
+Xa
+zc
+uj
+Ll
+dr
+hx
+hx
+tT
+Iu
+QP
+IT
+LQ
+nV
+ft
+hn
+zL
+PY
+Ex
+ZF
+Jn
+zh
+cX
+ed
+du
+dJ
+mE
+tG
+YY
+ce
+BO
+Ui
+dN
+pD
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+jQ
+Qa
+bE
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(76,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+bD
+dk
+Di
+HQ
+LT
+as
+uX
+dw
+On
+hY
+fp
+MZ
+Sx
+Xl
+KH
+zz
+nt
+SF
+Fy
+cC
+iO
+mt
+lO
+Ri
+sH
+nt
+Rq
+Rq
+lY
+Rq
+Jq
+IK
+kF
+nK
+nK
+nK
+yJ
+rN
+SN
+DG
+vK
+uP
+IV
+sX
+rN
+mk
+eZ
+VZ
+sq
+vO
+Ft
+Dv
+ol
+Dz
+rm
+hj
+kC
+vI
+NP
+Cd
+OE
+EU
+QP
+lR
+jq
+Zw
+Df
+hn
+DJ
+Pz
+hn
+eO
+Jn
+zh
+cX
+Oa
+tt
+BI
+PD
+ed
+cX
+nF
+BO
+Ui
+cy
+tu
+HN
+HN
+HN
+HN
+HN
+HN
+HN
+nm
+bE
+Wb
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(77,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+jx
+HQ
+HQ
+pW
+sP
+dw
+On
+py
+fp
+Dj
+Sx
+po
+AI
+jF
+nt
+fL
+mU
+DO
+kp
+GA
+fK
+ij
+sH
+nt
+Rq
+Rq
+Rq
+Rq
+Jq
+IK
+RT
+nK
+fV
+nK
+uC
+rN
+lg
+EO
+ED
+fo
+XR
+gn
+rN
+we
+dB
+fI
+sq
+xJ
+fh
+MS
+NF
+qQ
+iq
+zX
+vf
+LV
+GT
+lP
+WY
+Vb
+QP
+QP
+QP
+QP
+QP
+hn
+hn
+hn
+hn
+Oz
+KA
+XQ
+JZ
+Hp
+Sq
+XX
+Dr
+Fn
+JZ
+PM
+wN
+rK
+Vl
+qk
+Eh
+SZ
+Jv
+jZ
+pp
+yR
+HF
+IO
+bE
+Wb
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(78,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+tj
+dk
+PR
+Pe
+bp
+dw
+On
+py
+fp
+ZO
+Sx
+VY
+KH
+zz
+nt
+nt
+nt
+nt
+nt
+kE
+lJ
+nt
+nt
+nt
+dv
+Im
+Gb
+kl
+Wk
+IK
+RT
+nK
+nK
+nK
+yJ
+rN
+rN
+rN
+rN
+rN
+rN
+rN
+rN
+oH
+Nr
+fv
+sq
+jf
+jc
+dg
+Sh
+Xa
+qf
+nd
+nd
+nd
+mK
+nd
+nd
+nd
+uz
+Bg
+CN
+fJ
+yW
+NW
+iE
+Aw
+Yx
+ON
+Jn
+LK
+cX
+xo
+NO
+cH
+kY
+rU
+YY
+Sf
+TK
+kq
+vA
+Vp
+Wc
+kB
+He
+aR
+IR
+xw
+ZI
+hW
+LE
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(79,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+jx
+NL
+oJ
+mJ
+sP
+dw
+On
+wV
+aK
+nQ
+Sx
+aC
+KH
+jP
+Tl
+pH
+eX
+Ga
+ex
+zs
+lS
+eV
+Kn
+US
+ND
+ND
+ND
+ND
+sO
+IK
+jy
+Bc
+yr
+oi
+Gd
+Pf
+wW
+Ru
+nL
+WL
+WL
+iu
+iu
+ec
+YX
+vR
+Xa
+Tn
+Xg
+Ky
+Ft
+vO
+qf
+xY
+oh
+bs
+OU
+OX
+nd
+nd
+jz
+Ml
+fJ
+en
+yW
+ab
+Uc
+Ml
+ON
+ON
+Jn
+Vu
+ta
+ta
+ta
+ta
+ta
+ta
+ta
+ta
+LY
+LY
+uM
+LY
+oa
+oa
+oa
+oa
+BN
+LE
+LE
+LE
+LE
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(80,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+se
+nP
+Wb
+HQ
+HQ
+vg
+Ax
+LL
+GX
+uZ
+Hi
+Sx
+iy
+mV
+XC
+rQ
+ZM
+ZM
+ZM
+ZM
+ZM
+kd
+SU
+ZM
+WH
+ZM
+ZM
+ZM
+xg
+ji
+lj
+ji
+ji
+Xv
+En
+jk
+Ru
+Ru
+Ru
+CC
+CC
+CC
+CC
+CC
+CC
+YX
+Ka
+sq
+Or
+Ft
+Ky
+RI
+Ys
+qf
+hM
+Xh
+vL
+Hw
+fg
+nd
+Ik
+TN
+dI
+eN
+eN
+Ej
+eN
+eN
+dI
+dI
+eT
+nN
+up
+dA
+Lt
+Xf
+Lc
+kA
+Iy
+CL
+To
+jm
+yq
+TO
+FY
+Gf
+XH
+UB
+np
+BN
+Wb
+Wb
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(81,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+se
+nP
+Jh
+Jh
+Jh
+HQ
+Sx
+Sx
+Sx
+Vh
+Sx
+Sx
+Sx
+FA
+Zr
+sj
+FU
+Zr
+Zr
+vj
+pZ
+Zr
+Zr
+OV
+Zr
+Ye
+Zr
+Zr
+Zm
+OV
+Zr
+Zr
+sj
+Zr
+yr
+Mm
+lv
+Ru
+Ru
+Ru
+Mk
+Mk
+lv
+Mk
+Mk
+uq
+YX
+Ka
+sq
+Ln
+ck
+Ky
+ad
+mW
+qf
+OG
+ho
+Lh
+Gw
+gJ
+nd
+qD
+Cx
+hJ
+hJ
+hJ
+hy
+hJ
+hJ
+hJ
+fW
+hJ
+bX
+jS
+dA
+RP
+At
+bd
+UK
+At
+Wh
+To
+eF
+tl
+Il
+no
+Hq
+tQ
+vM
+kN
+SA
+Le
+Le
+uG
+Le
+Sj
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(82,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+jx
+Jh
+Jh
+Jh
+Jh
+Yf
+rG
+bV
+LN
+KG
+Rn
+FC
+fl
+fl
+HW
+fl
+rX
+fl
+HW
+fl
+fl
+eC
+Ke
+HP
+hq
+mT
+mT
+AM
+mT
+JB
+oM
+mT
+mT
+JY
+Hd
+an
+Hd
+rZ
+zN
+Ew
+rZ
+Hd
+Hd
+Hd
+Hd
+Xd
+YX
+Ka
+sq
+BR
+Ft
+Ky
+Ft
+vY
+qf
+VK
+Op
+Bv
+cD
+hF
+nd
+Py
+PF
+ON
+Td
+Ou
+Lr
+Ou
+Ou
+Rk
+kv
+ZH
+OS
+gL
+dA
+LD
+Zd
+YG
+YL
+GH
+vo
+To
+TG
+Sm
+pU
+Yd
+Gf
+Gf
+Gf
+uo
+BN
+nq
+nq
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(83,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+se
+yK
+Wb
+Wb
+Jh
+Jh
+Yf
+UC
+TY
+Og
+FB
+UC
+JT
+fl
+Ae
+Rm
+WZ
+CF
+wt
+eM
+hP
+fl
+ZA
+zm
+GG
+gR
+mT
+qs
+RX
+tn
+Ok
+KE
+NJ
+YF
+JY
+zK
+RS
+Hd
+rM
+Bq
+Bq
+zk
+Hd
+pJ
+EX
+Hd
+IY
+YX
+Ka
+Xa
+KY
+jc
+Bb
+UH
+hL
+qf
+oK
+hQ
+Ss
+Vt
+Kw
+nd
+XL
+wO
+XL
+LI
+QU
+ZR
+QT
+QU
+LI
+HK
+HK
+II
+HK
+To
+tB
+Eg
+qH
+rA
+Fd
+jY
+hs
+nb
+fA
+xa
+Ug
+lm
+WW
+QE
+cF
+Jk
+VJ
+Dw
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(84,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Wn
+jx
+NL
+Wb
+Wb
+Wb
+Yi
+cB
+UC
+yM
+Ly
+NY
+YM
+fl
+CV
+Wm
+tW
+eY
+tW
+RK
+ev
+fl
+vu
+Xy
+wv
+ra
+mT
+mX
+Ns
+Ns
+Zu
+wJ
+mT
+cI
+JY
+GQ
+SV
+Zk
+XM
+HD
+HD
+Gt
+Zk
+SM
+Hd
+Hd
+Xd
+YX
+dy
+Xa
+Xa
+sq
+sq
+sq
+Xa
+qf
+nd
+nd
+nd
+nd
+nd
+nd
+Xd
+FQ
+Ka
+QU
+Th
+Ph
+rq
+GZ
+LI
+ai
+MF
+gT
+Zf
+To
+xM
+qz
+Uz
+vc
+oV
+Af
+To
+UU
+TX
+Qm
+aO
+Nq
+Sm
+SP
+Nt
+Lw
+VJ
+VJ
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(85,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+jx
+NL
+NL
+Wb
+Jh
+Yi
+Yi
+IJ
+Kx
+Ez
+gP
+pR
+fl
+FR
+Wm
+HV
+tJ
+HV
+RK
+ev
+fl
+EZ
+SL
+wv
+mF
+mT
+TB
+Ns
+Ns
+pP
+wJ
+mT
+cI
+JY
+Tg
+Ot
+Hd
+Hd
+ST
+Po
+Hd
+Hd
+SR
+Hd
+YW
+rh
+xX
+Qd
+CW
+CW
+CW
+CW
+CW
+CW
+Yz
+CW
+cA
+CW
+zZ
+CW
+JF
+rY
+FQ
+yx
+QU
+Nz
+rq
+iv
+Ed
+LI
+fk
+SW
+AE
+QQ
+rw
+jY
+eQ
+uU
+fT
+yw
+iI
+To
+xq
+oX
+aW
+Xz
+Nq
+Sm
+SP
+lk
+Lw
+nq
+nq
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(86,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+lZ
+dk
+dk
+Di
+Jh
+Jh
+Yi
+Yi
+Yi
+Yi
+cQ
+Yi
+aN
+xI
+Wm
+HV
+eY
+HV
+RK
+mG
+fl
+Wl
+Xy
+wv
+NE
+mT
+Ma
+Ns
+Ns
+Zu
+wJ
+mT
+cI
+JY
+at
+Yb
+iQ
+fe
+KJ
+KJ
+fe
+YB
+un
+Hd
+KU
+Xd
+UA
+wb
+wb
+wb
+wb
+mm
+CC
+CC
+CC
+CC
+CC
+TI
+Co
+Co
+Co
+Co
+Gp
+Ka
+QU
+ns
+rq
+NZ
+Ku
+Re
+OI
+da
+iw
+pF
+To
+To
+Vo
+Vo
+Vo
+Vo
+Vo
+Vo
+qr
+nH
+BB
+tE
+qP
+Sm
+mv
+qW
+Kr
+NL
+NL
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(87,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+jx
+NL
+Jh
+Jh
+iQ
+iQ
+YZ
+de
+oG
+aN
+VU
+yn
+eM
+rz
+Rm
+pV
+ev
+fl
+OJ
+Xy
+wv
+oT
+mT
+mQ
+UN
+UN
+wy
+wJ
+mT
+cI
+JY
+Ne
+Ot
+Bu
+Ts
+Ah
+rD
+Ts
+XT
+SR
+Hd
+us
+aL
+zS
+Wy
+Mk
+Mk
+Mk
+fs
+Tk
+yu
+IX
+Mk
+Mk
+LH
+Mk
+pm
+Mk
+Mk
+lv
+Aj
+LI
+Gz
+Tc
+uD
+YR
+LI
+fm
+Kv
+dS
+vb
+Nm
+OB
+OF
+Oq
+rf
+RG
+lN
+is
+OF
+vm
+KB
+gX
+lK
+JJ
+PI
+jA
+Lw
+nq
+nq
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(88,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+ur
+dk
+dk
+dk
+dk
+TV
+TV
+gk
+oG
+aN
+md
+iV
+Tj
+Cv
+Kj
+rI
+Du
+fl
+rE
+xK
+aw
+Dd
+mT
+KC
+Bi
+XD
+jj
+uy
+uy
+Cg
+JY
+gv
+UJ
+Bu
+Ts
+GN
+pQ
+Ts
+XT
+SR
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+vp
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+mO
+bZ
+rq
+iS
+Qk
+LI
+Be
+mM
+nx
+fU
+Mv
+OZ
+tg
+xb
+Sb
+xz
+Mg
+qJ
+tg
+cf
+TX
+KN
+jg
+Zh
+FV
+lX
+yA
+VJ
+Dw
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(89,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Wb
+Jh
+Jh
+Bu
+Oo
+Nb
+aN
+aN
+aN
+HW
+HW
+HW
+sD
+aN
+aN
+rx
+Ey
+sN
+rx
+JY
+JY
+AM
+AM
+JY
+AM
+AM
+JY
+JY
+fd
+Pi
+iQ
+Ts
+TQ
+bC
+Ts
+YB
+Ir
+Tv
+Tv
+Tv
+ph
+Tv
+Tv
+Tv
+vQ
+Tv
+aI
+qh
+Ie
+HS
+am
+Cc
+aM
+aM
+FT
+pj
+Np
+Np
+yi
+KW
+nf
+kh
+JD
+LI
+qd
+na
+oY
+rp
+Fs
+Ww
+ka
+RJ
+ng
+Pd
+Ry
+cL
+Qz
+tm
+az
+nO
+nO
+kT
+nO
+nO
+nq
+VJ
+VJ
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(90,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+iQ
+iQ
+hb
+ri
+WO
+WO
+WO
+WO
+WO
+WO
+WO
+FZ
+WO
+WO
+ax
+oG
+oG
+oG
+oG
+oG
+oG
+oG
+oG
+oG
+yS
+rl
+ep
+iQ
+Ts
+fc
+pQ
+Ts
+YB
+YB
+PV
+jB
+pJ
+Xp
+Za
+vT
+Jf
+zW
+qa
+gd
+mj
+ha
+Xr
+tw
+VX
+gp
+tp
+PT
+vt
+jn
+Wg
+mO
+mO
+mO
+oI
+mO
+mO
+Mr
+qr
+ER
+qr
+qr
+qr
+qr
+kf
+Sb
+uw
+Sb
+hX
+OF
+OF
+lV
+OF
+il
+Qt
+on
+SG
+rT
+rT
+rT
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(91,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+iQ
+Bu
+eA
+iQ
+iQ
+Bu
+Bu
+Bu
+iQ
+iQ
+eA
+iQ
+Bu
+Bu
+iQ
+iQ
+iQ
+Bu
+Bu
+iQ
+Bu
+Bu
+iQ
+iQ
+iQ
+iQ
+iQ
+Ts
+iL
+YA
+Ts
+YB
+YB
+YB
+YB
+XT
+XT
+YB
+YB
+YB
+YB
+YB
+xc
+Fg
+CU
+El
+Kz
+PQ
+LB
+ZX
+Nv
+jT
+jT
+xc
+tK
+cm
+pe
+Yr
+Hx
+lH
+DK
+HT
+qV
+Se
+NM
+qv
+qr
+vz
+Qv
+FF
+rB
+sw
+OF
+sm
+bz
+OF
+Ql
+zq
+NC
+NC
+TD
+Ja
+rT
+qi
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(92,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+jx
+Wb
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+jx
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Wb
+ZG
+Jh
+sM
+Ea
+CU
+CU
+CU
+GR
+Wb
+Jh
+NL
+tK
+zT
+cm
+Yr
+AK
+tS
+iG
+HT
+It
+oP
+QA
+Xj
+fZ
+ZP
+RV
+zy
+JE
+Lp
+OF
+cN
+Yq
+OF
+Ij
+sl
+Jg
+Jg
+AT
+iK
+rT
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(93,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+bD
+yZ
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+NL
+jx
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+hz
+Wb
+xc
+NA
+xc
+Jh
+Wb
+Wb
+Jh
+Jh
+Jh
+tK
+el
+el
+tX
+Os
+dd
+dd
+WT
+gE
+qr
+qr
+qr
+qr
+bj
+yj
+za
+yj
+fN
+OF
+OF
+Sw
+OF
+qX
+eK
+li
+tC
+vd
+UV
+Ra
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(94,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+lZ
+dk
+dk
+dk
+dk
+dk
+dk
+hk
+gi
+Di
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ds
+kL
+NL
+NL
+Cf
+NL
+NL
+NL
+NL
+Jh
+Jh
+Wb
+tK
+tK
+gS
+wD
+eh
+DT
+gU
+lu
+nM
+qr
+Vf
+Vf
+Xo
+Vf
+Vf
+EP
+Vf
+Vf
+Xo
+pu
+UE
+OF
+ow
+ow
+ow
+Mh
+vd
+lw
+Ra
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(95,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+Wn
+NL
+jx
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ds
+kL
+yH
+yH
+yH
+NL
+yH
+yH
+yH
+yH
+yH
+Wb
+Wb
+Wb
+tK
+tK
+Li
+By
+oR
+oR
+gV
+IP
+qr
+Vf
+Vf
+ib
+UF
+lx
+sQ
+iR
+UF
+Vx
+Vf
+Gu
+OF
+MW
+Cr
+ow
+qA
+vd
+bK
+Ra
+ZG
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(96,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+jx
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ds
+Le
+kL
+wr
+Uh
+Uh
+Uh
+NL
+Ig
+Ig
+Ig
+Ig
+BE
+Wb
+Wb
+Jh
+Jh
+tK
+sy
+lE
+px
+px
+Jb
+JX
+qr
+Rs
+Vf
+EP
+Bs
+Vf
+Vf
+Vf
+Bs
+EP
+Vf
+mC
+OF
+gh
+kH
+Mz
+Jg
+pC
+ks
+rT
+ZG
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(97,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+lZ
+dk
+dk
+dk
+dk
+dk
+dk
+dk
+bw
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+yy
+uK
+Go
+Kh
+yH
+Cp
+Cp
+Cp
+Cp
+NL
+Cp
+Cp
+Cp
+Cp
+Cp
+NL
+Jh
+Jh
+Jh
+Jh
+KX
+MB
+px
+KI
+Jb
+Jb
+qr
+Gu
+Vf
+gW
+Vf
+Vf
+Vf
+Vf
+Vf
+gW
+Vf
+Gu
+OF
+XB
+Tx
+ow
+AS
+FN
+rT
+rT
+ZG
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(98,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+ZG
+iH
+Uh
+Uh
+Uh
+Uh
+Uh
+NL
+MN
+MN
+MN
+MN
+sC
+Ds
+Le
+Le
+Le
+Le
+kL
+Cl
+bT
+bT
+bT
+bT
+MB
+sY
+Vf
+EP
+Vf
+Vf
+KM
+Vf
+Vf
+EP
+Vf
+Ix
+ni
+Ra
+Ra
+rT
+rT
+rT
+rT
+NL
+ZG
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(99,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+ZG
+Mx
+Mx
+Mx
+Mx
+Mx
+Mx
+NL
+Mx
+Mx
+Mx
+Mx
+Mx
+ZG
+NL
+Wb
+Wb
+Wb
+Wb
+Wb
+NL
+NL
+NL
+tc
+RY
+Gu
+Vf
+Rb
+Vf
+Vf
+Vf
+Vf
+Vf
+Rb
+Vf
+Gu
+ni
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+ZG
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(100,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+iU
+Le
+Le
+Le
+Le
+Le
+Uf
+Le
+cG
+Le
+SO
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Ds
+Up
+Le
+Sj
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+RY
+Hf
+Vf
+Vf
+Bs
+Vf
+Vf
+Vf
+Bs
+Vf
+Vf
+mC
+ni
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+ZG
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(101,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+CP
+Le
+Le
+Le
+NU
+Le
+Le
+Le
+Le
+Le
+kL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+RY
+KP
+MT
+cr
+cr
+cr
+cr
+cr
+cr
+cr
+MT
+lA
+ni
+Wb
+NL
+NL
+NL
+NL
+NL
+NL
+ZG
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(102,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+RY
+ni
+ni
+Hv
+aQ
+aQ
+mr
+aQ
+aQ
+jO
+ni
+ni
+ni
+Wb
+Wb
+NL
+NL
+NL
+NL
+NL
+ZG
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(103,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jx
+Le
+Le
+Le
+Le
+Le
+Le
+Le
+Le
+Le
+Le
+Le
+lq
+Le
+Le
+Le
+Le
+Le
+Le
+Le
+Lg
+Le
+Le
+SO
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(104,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+AF
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+AF
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(105,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(106,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(107,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(108,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(109,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(110,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(111,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(112,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(113,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(114,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(115,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(116,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(117,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+ob
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(118,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(119,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(120,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(121,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(122,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(123,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(124,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(125,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(126,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(127,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(128,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(129,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(130,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(131,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(132,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(133,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(134,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(135,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(136,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(137,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(138,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(139,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(140,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
diff --git a/maps/stellardelight/stellar_delight3.dmm b/maps/stellardelight/stellar_delight3.dmm
new file mode 100644
index 0000000000..24356e9909
--- /dev/null
+++ b/maps/stellardelight/stellar_delight3.dmm
@@ -0,0 +1,33596 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"ac" = (
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"ad" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/tcommsat/chamber)
+"af" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"ai" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/portdock)
+"aj" = (
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"al" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"am" = (
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"an" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"ao" = (
+/obj/machinery/computer/HolodeckControl{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"at" = (
+/obj/structure/table/darkglass,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"aw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"ax" = (
+/obj/item/modular_computer/console/preset/civilian{
+ dir = 8
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"aA" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/transitgateway)
+"aB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"aD" = (
+/obj/structure/table/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"aG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"aH" = (
+/obj/machinery/account_database{
+ dir = 8
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"aK" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"aM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"aN" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"aP" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"aQ" = (
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"aS" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"aX" = (
+/obj/structure/sign/deck3{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"bb" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"bd" = (
+/obj/structure/closet,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"be" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/sdboat)
+"bg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#323d80";
+ fill_color = "#313866";
+ id_tag = "hopdoor";
+ name = "Head of Personnel";
+ req_access = list(57);
+ stripe_color = "#a3d1d1"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/heads/hop)
+"bh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Command Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"bj" = (
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bl" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/portcent)
+"bm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"bn" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"bp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"br" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "32-2"
+ },
+/obj/structure/disposalpipe/down,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"bs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"bx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"bC" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"bE" = (
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/commandhall)
+"bI" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"bJ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"bK" = (
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"bL" = (
+/obj/machinery/media/jukebox/hacked,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"bM" = (
+/obj/effect/floor_decal/emblem/nt1,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"bO" = (
+/obj/structure/table/darkglass,
+/obj/item/weapon/clipboard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"bQ" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"bS" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"bT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"bU" = (
+/turf/simulated/wall/bay{
+ desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms.";
+ stripe_color = "#2e2aa1"
+ },
+/area/stellardelight/deck3/commandhall)
+"bV" = (
+/obj/machinery/alarm/angled,
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"bW" = (
+/obj/structure/table/standard,
+/obj/item/toy/plushie/ipc/toaster,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"bY" = (
+/obj/structure/table/woodentable,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "cafe";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"bZ" = (
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"ca" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"cb" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/crew_quarters/heads/chief)
+"cc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"ch" = (
+/obj/structure/table/rack/shelf,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/drinkbottle,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"ci" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/secure{
+ dir = 4;
+ name = "Robotic Storage";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_cyborg_station)
+"ck" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"cm" = (
+/obj/machinery/exonet_node{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"cp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"cq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"cs" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"ct" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/secure{
+ dir = 4;
+ name = "AI Storage";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_cyborg_station)
+"cu" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"cw" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"cx" = (
+/obj/machinery/computer/timeclock/premade/north,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"cy" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"cA" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"cH" = (
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"cI" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"cK" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"cL" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"cO" = (
+/obj/machinery/holoplant,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"cP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"cQ" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"cS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"cW" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"cY" = (
+/obj/machinery/telecomms/broadcaster/preset_right/sd,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"cZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"db" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"df" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"dh" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"dj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"dk" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "starmaint_airpump"
+ },
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"dn" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"do" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"dq" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"dr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"du" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"dw" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"dx" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"dy" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"dB" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"dD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"dE" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"dF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/emblem/nt1,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"dH" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"dL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"dM" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"dN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/bar)
+"dS" = (
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"dT" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"dU" = (
+/turf/simulated/wall/bay/blue,
+/area/lawoffice)
+"dV" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/holoplant,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"dY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"dZ" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"ea" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"eb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "starmaint_airpump"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"ed" = (
+/obj/structure/closet,
+/obj/random/firstaid,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"eg" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"eh" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"ei" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck3/aft)
+"ej" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"ek" = (
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"el" = (
+/obj/machinery/pda_multicaster/prebuilt,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"em" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"en" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"eo" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"ep" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"et" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/portdock)
+"eu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"ev" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#323d80";
+ fill_color = "#313866";
+ id_tag = "rddoor";
+ name = "Research Director";
+ req_access = list(30);
+ stripe_color = "#5a19a8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/heads/hor)
+"ew" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"ex" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"ey" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"ez" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"eC" = (
+/obj/machinery/telecomms/receiver/preset_right/sd,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"eD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"eE" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/drinkbottle,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"eF" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"eI" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/bar)
+"eJ" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/sdboat)
+"eK" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"eL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"eN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"eP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Holodeck"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/holodeck_control)
+"eQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"eR" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"eS" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"eU" = (
+/obj/structure/table/woodentable,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "cafe";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"eV" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"eX" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"eY" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"fa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"fb" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"fd" = (
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/alarm/angled,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"ff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portaft)
+"fg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"fh" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"fk" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"fn" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/sdboat/aft)
+"fs" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/bar)
+"fv" = (
+/obj/machinery/holoplant,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"fz" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"fD" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"fE" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"fG" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"fM" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"fO" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"fS" = (
+/turf/simulated/wall/bay/steel,
+/area/crew_quarters/heads/hop)
+"fT" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"fW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"gb" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/folder/red_hos,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"gc" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "portmaint_airpump"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"gg" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"gh" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"gj" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/disk/nifsoft/compliance,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/snack,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"gk" = (
+/obj/structure/table/woodentable,
+/obj/item/device/paicard,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"gl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/shuttle/sdboat)
+"gm" = (
+/obj/structure/lattice,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"gq" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/closet/hydrant{
+ pixel_y = 28
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"gs" = (
+/obj/machinery/requests_console/preset/rd{
+ pixel_x = 30
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"gw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"gy" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/device/retail_scanner/engineering,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"gA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"gB" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"gE" = (
+/obj/structure/table/darkglass,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/weapon/stamp/internalaffairs,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"gG" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"gH" = (
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"gJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"gL" = (
+/obj/item/weapon/bedsheet/hosdouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black{
+ color = "#631915"
+ },
+/obj/effect/landmark/start/hos,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"gM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/aft)
+"gN" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"gO" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"gQ" = (
+/obj/machinery/power/smes/buildable{
+ charge = 5e+006;
+ input_attempt = 1;
+ input_level = 200000;
+ output_level = 200000
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"gR" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"gS" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"gU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"gV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"gW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"gY" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"hb" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"hc" = (
+/obj/machinery/requests_console/preset/hos{
+ pixel_x = -30
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"hd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"he" = (
+/obj/machinery/button/remote/airlock{
+ id = "readingroom1";
+ name = "Room 1 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "readingroom1";
+ name = "Window Lockdown";
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck3/readingroom)
+"hf" = (
+/obj/structure/sign/warning/docking_area{
+ pixel_x = -32
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck3/exterior)
+"hj" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"hk" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/sign/warning/docking_area{
+ pixel_y = 32
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"hp" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 4;
+ pixel_y = 6
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"hr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"ht" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"hu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"hw" = (
+/obj/machinery/telecomms/processor/preset_one,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"hy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"hz" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"hB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"hC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"hD" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"hE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"hF" = (
+/obj/machinery/holoplant,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"hG" = (
+/obj/structure/sign/poster{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"hK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"hN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/portdock)
+"hO" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Command Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"hP" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"hQ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"hR" = (
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"hT" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"hU" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"hX" = (
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"hY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"hZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = 32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"ib" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"if" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"ii" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"ij" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"il" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"im" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"in" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/crew_quarters/heads/hop)
+"ip" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"ir" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"is" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/secure{
+ name = "AI/Telecoms";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_upload)
+"iv" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"iw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"iy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"iz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"iC" = (
+/obj/structure/cryofeed{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"iD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ id = "shuttleshutter"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/sdboat/aft)
+"iE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Shield Generator";
+ req_access = list(11,24);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/commandhall)
+"iJ" = (
+/obj/machinery/cryopod/robot,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"iK" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"iL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"iM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "shuttleshutter"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/sdboat/aft)
+"iN" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"iP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"iQ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"iR" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"iS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"iV" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck3/commandhall)
+"iW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"iY" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/blue,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"iZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/starboarddock)
+"ja" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"jc" = (
+/obj/machinery/computer/ship/sensors/adv,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"jd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/transitgateway)
+"jg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/starboarddock)
+"jh" = (
+/obj/structure/closet/secure_closet/hop2,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"jl" = (
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/structure/closet/walllocker_double/east,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"jm" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "cafe";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"jn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#323d80";
+ fill_color = "#858585";
+ id_tag = "cedoor";
+ name = "Chief Engineer";
+ req_access = list(19);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/heads/chief)
+"jp" = (
+/obj/structure/closet,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"jC" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"jD" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/obj/structure/curtain/black,
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/obj/effect/landmark/start/hop,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"jE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"jK" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"jL" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"jM" = (
+/obj/item/modular_computer/console/preset/command,
+/obj/structure/sign/poster{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"jP" = (
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"jT" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"jV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"jY" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"ka" = (
+/obj/structure/table/darkglass,
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"kb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"kc" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"ki" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"kj" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"kk" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"kl" = (
+/obj/machinery/keycard_auth{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"ko" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"kp" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"kr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"ks" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"kt" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck3/aft)
+"ku" = (
+/obj/structure/table/rack,
+/obj/random/firstaid,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"kw" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"ky" = (
+/obj/structure/closet/walllocker_double/north,
+/obj/item/device/megaphone,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/command_guide,
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"kz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/sdboat/aft)
+"kB" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"kF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"kN" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/obj/structure/closet/secure_closet/hop,
+/obj/item/clothing/glasses/omnihud,
+/obj/item/weapon/paper/dockingcodes/sd,
+/obj/item/device/retail_scanner/command,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"kO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"kP" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/portfore)
+"kQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"kT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"kU" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"kV" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"kW" = (
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"kX" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"kY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"kZ" = (
+/obj/structure/fuel_port{
+ dir = 4;
+ pixel_x = 32
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"la" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/shuttles,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"lc" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"le" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/portaft)
+"lh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"li" = (
+/obj/machinery/telecomms/hub/preset/sd,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"lj" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"lk" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"lm" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"lo" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"lq" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"lt" = (
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"lu" = (
+/obj/machinery/camera/network/command,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"lv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"lw" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"lx" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"lA" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"lB" = (
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"lC" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"lD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/bartender,
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"lE" = (
+/obj/machinery/telecomms/bus/preset_two/sd,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"lF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"lH" = (
+/obj/machinery/telecomms/server/presets/service/sd,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"lJ" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"lL" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"lP" = (
+/obj/structure/table/woodentable,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"lQ" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"lT" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"lU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "readingroom1";
+ name = "Room 1";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/readingroom)
+"lY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"ma" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "portmaint_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portcent)
+"mb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"md" = (
+/obj/machinery/button/remote/airlock{
+ id = "readingroom3";
+ name = "Room 3 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "readingroom3";
+ name = "Window Lockdown";
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck3/readingroom)
+"me" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"mf" = (
+/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock,
+/turf/space,
+/area/space)
+"mg" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"mi" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/pump_out_external,
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/sdboat)
+"mj" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"mm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"mn" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"mo" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/starboarddock)
+"mp" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"mq" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"mr" = (
+/obj/structure/table/bench/padded,
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"mv" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/sdboat/aft)
+"mw" = (
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#9fccc7";
+ name = "Cockpit";
+ req_access = list(67);
+ stripe_color = "#ffffff"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/sdboat)
+"mA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"mC" = (
+/obj/machinery/telecomms/server/presets/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"mD" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"mF" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"mI" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"mK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"mM" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"mO" = (
+/obj/structure/table/alien{
+ name = "fancy table"
+ },
+/obj/machinery/computer/skills{
+ dir = 4;
+ pixel_y = 6
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"mQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"mR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"mS" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"mU" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"mX" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"na" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"nd" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"ne" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"nf" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "starmaint_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"nh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"nj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/cafe)
+"nk" = (
+/obj/machinery/light,
+/obj/structure/table/bench/padded,
+/obj/effect/landmark/start/visitor,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"nm" = (
+/obj/machinery/telecomms/server/presets/unused,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"np" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"nr" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"ns" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"nt" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"nu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"nv" = (
+/obj/item/weapon/reagent_containers/glass/bucket/wood,
+/obj/structure/closet/crate,
+/obj/item/weapon/material/minihoe,
+/obj/item/seeds/reishimycelium,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/ambrosiavulgarisseed,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"nw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"nx" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"nz" = (
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"nB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 4;
+ frequency = 1380;
+ master_tag = "sd_escape_starboard";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/starboarddock)
+"nC" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"nD" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"nF" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"nH" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/item/weapon/stamp/hos,
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"nL" = (
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"nM" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"nN" = (
+/obj/machinery/cryopod/robot,
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"nO" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"nP" = (
+/turf/simulated/wall/bay/purple,
+/area/crew_quarters/heads/hor)
+"nS" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"nT" = (
+/obj/machinery/smartfridge/drinks,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"nV" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"nW" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck3/cafe)
+"nX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"nZ" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"ob" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"od" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "starmaint_airpump"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"og" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"ok" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"ol" = (
+/obj/structure/table/alien{
+ name = "fancy table"
+ },
+/obj/item/weapon/stamp/rd,
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"op" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"oq" = (
+/obj/effect/landmark/arrivals,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"os" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 1;
+ frequency = 1380;
+ master_tag = "sd_escape_center_right";
+ pixel_x = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"ou" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "sd_escape_center_right";
+ master_tag = "escape_dock";
+ pixel_x = 24;
+ req_one_access = list(13);
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ pixel_x = -25
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"ov" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"ow" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"oy" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"oA" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"oC" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"oD" = (
+/obj/item/modular_computer/console/preset/command,
+/obj/structure/sign/poster{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"oE" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"oI" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/portcent)
+"oJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"oM" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"oN" = (
+/obj/machinery/teleport/hub{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"oO" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/portdock)
+"oP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"oR" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom/locked/ai_private{
+ dir = 4;
+ pixel_x = 32
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 8;
+ name = "Common Channel";
+ pixel_x = -21
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/requests_console/preset/ai{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/landmark/start/ai,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"oS" = (
+/obj/structure/cryofeed,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"oT" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"oU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"oV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/halls{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"oW" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"oX" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"oY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "Telecoms Control Room";
+ req_access = list(61)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tcommsat/computer)
+"oZ" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck3/readingroom)
+"pb" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"pc" = (
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"pd" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"pf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"pk" = (
+/obj/structure/table/steel,
+/obj/random/drinkbottle,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"pl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"pm" = (
+/obj/structure/table/darkglass,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/blade/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"po" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"pp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"pq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"pt" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"px" = (
+/obj/machinery/telecomms/processor/preset_three,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"pz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"pA" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/cosmosdouble{
+ icon_state = "dobulesheetcosmos"
+ },
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"pB" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"pC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/sign/warning/evac{
+ pixel_x = 32
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"pE" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"pG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/shuttles/right,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"pK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"pL" = (
+/obj/structure/table/steel,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"pN" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"pO" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"pS" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"pT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"pV" = (
+/obj/machinery/keycard_auth{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"pW" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"pX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#323d80";
+ name = "maintenance access";
+ req_one_access = list(16);
+ stripe_color = "#323d80"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_cyborg_station)
+"pY" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"qb" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"qc" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"qd" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/effect/landmark/start/cyborg,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"qe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1380;
+ master_tag = "sd_escape_port";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/portdock)
+"qf" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"qg" = (
+/obj/structure/table/glass,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/random/contraband,
+/obj/random/snack,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"qi" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"qn" = (
+/obj/machinery/porta_turret/stationary,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"qp" = (
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"qq" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/tcommsat/computer)
+"qs" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"qv" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#323d80";
+ id_tag = "AICore";
+ id_tint = null;
+ locked = 1;
+ name = "AI Core";
+ req_one_access = list(16);
+ stripe_color = "#323d80"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai)
+"qx" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"qy" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"qz" = (
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"qA" = (
+/obj/machinery/turretid/stun{
+ check_synth = 1;
+ control_area = /area/ai;
+ name = "AI Chamber turret control";
+ pixel_x = -30;
+ pixel_y = -24
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"qC" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck3/readingroom)
+"qE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/starboarddock)
+"qF" = (
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"qK" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"qL" = (
+/obj/structure/sign/warning/docking_area{
+ pixel_x = 32
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"qM" = (
+/obj/structure/table/steel,
+/obj/random/firstaid,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"qN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"qO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#323d80";
+ name = "maintenance access";
+ req_one_access = list(16);
+ stripe_color = "#323d80"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_cyborg_station)
+"qP" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"qQ" = (
+/obj/machinery/porta_turret/stationary,
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"qS" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"qU" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"qW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"qX" = (
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"qZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"rb" = (
+/obj/effect/floor_decal/emblem/nt3,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"rc" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/stellardelight/deck3/commandhall)
+"re" = (
+/obj/structure/sign/directions/stairs_down{
+ pixel_x = -32;
+ pixel_y = 18
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = -32;
+ pixel_y = 12
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_x = -32
+ },
+/turf/simulated/open,
+/area/stellardelight/deck3/aft)
+"rg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"rh" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"ri" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/rshull,
+/area/shuttle/sdboat/aft)
+"rj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"rk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"rl" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"rm" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/computer/cryopod{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"rn" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"rp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "portmaint_airlock";
+ name = "interior access button";
+ pixel_x = 32;
+ req_access = null;
+ req_one_access = list(13)
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1379;
+ id_tag = "portmaint_interior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portcent)
+"rq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"rr" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1380;
+ id_tag = "sd_escape_starboard";
+ master_tag = "escape_dock";
+ pixel_y = 30;
+ req_one_access = list(13);
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = null;
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"rs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"rw" = (
+/obj/structure/closet/walllocker_double/west,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"rx" = (
+/turf/simulated/wall/bay/white,
+/area/crew_quarters/heads/cmo)
+"rA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"rB" = (
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#323d80";
+ id_tag = "AICore";
+ id_tint = null;
+ locked = 1;
+ name = "AI Core";
+ req_one_access = list(16);
+ stripe_color = "#323d80"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai)
+"rH" = (
+/obj/structure/lattice,
+/obj/structure/cable/blue{
+ icon_state = "32-8"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"rL" = (
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"rN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"rS" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"rZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"sa" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/shuttle/sdboat/aft)
+"sb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/secure{
+ name = "AI Storage";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_cyborg_station)
+"sc" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/ai)
+"sd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"sf" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"si" = (
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ pixel_y = 8
+ },
+/obj/structure/sign/painting/library_secure{
+ pixel_y = 30
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"sj" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/closet,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"sl" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"sn" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"sr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"ss" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 4;
+ frequency = 1380;
+ master_tag = "sd_port_landing";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/portdock)
+"st" = (
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/mob/living/simple_mob/animal/passive/fox/syndicate/aipet,
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"su" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"sx" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"sz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Shield Generator";
+ req_access = list(11,24);
+ stripe_color = "#e6ab22"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/central)
+"sA" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"sC" = (
+/obj/machinery/computer/mecha{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"sE" = (
+/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding,
+/turf/space,
+/area/space)
+"sI" = (
+/obj/structure/table/standard,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"sJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"sK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"sM" = (
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck3/exterior)
+"sN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"sO" = (
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"sP" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"sQ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/aiModule/reset,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"sR" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"sU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"sX" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"tb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"tc" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"tg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"th" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/ai_cyborg_station)
+"tk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"tn" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"tp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"tq" = (
+/obj/machinery/camera/network/command{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"tu" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"ty" = (
+/obj/machinery/computer/teleporter,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"tz" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"tC" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"tF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/frame,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"tG" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"tH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/transitgateway)
+"tJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"tK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"tL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"tO" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/taperecorder{
+ pixel_x = 10
+ },
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
+ pixel_x = -9;
+ pixel_y = -2
+ },
+/obj/item/device/radio/off,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"tQ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/aiModule/freeform,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"tR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 4;
+ frequency = 1380;
+ master_tag = "sd_escape_port";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/portdock)
+"tT" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"tV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"tW" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock{
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor,
+/area/tcommsat/computer)
+"tX" = (
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"tZ" = (
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"ub" = (
+/obj/item/modular_computer/console/preset/command,
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"uc" = (
+/obj/machinery/teleport/station{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"ue" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"uf" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"ui" = (
+/obj/machinery/power/smes/buildable{
+ charge = 500000
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"uj" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/crew_quarters/heads/hor)
+"uk" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"ul" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"un" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"uq" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/starboarddock)
+"us" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"ut" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"uv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black,
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"uw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"uz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"uB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/tcommsat/computer)
+"uD" = (
+/obj/structure/closet/firecloset,
+/obj/random/maintenance,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"uE" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"uH" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"uI" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"uJ" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"uM" = (
+/obj/structure/table/rack,
+/obj/item/device/paicard,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"uQ" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/machinery/computer/shuttle_control/explore/sdboat{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"uT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_cyborg_station)
+"uU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "readingroom3";
+ name = "Room 3";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/readingroom)
+"uV" = (
+/obj/machinery/computer/robotics{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"uW" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"uX" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"uY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"uZ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"va" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"vb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_cyborg_station)
+"ve" = (
+/obj/structure/closet/walllocker_double/east,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"vf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Chief Engineer's Office"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"vh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"vi" = (
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"vo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"vq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/portaft)
+"vt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"vv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/emblem/nt2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"vw" = (
+/obj/structure/sign/department/shield,
+/turf/simulated/wall/bay/r_wall/blue,
+/area/stellardelight/deck3/commandhall)
+"vy" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"vA" = (
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"vE" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/stellardelight/deck3/exterior;
+ base_turf = /turf/simulated/floor/reinforced/airless;
+ docking_controller = "sd_starboard_landing";
+ landmark_tag = "starboard_shuttlepad";
+ name = "Starboard Shuttlepad"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck3/exterior)
+"vF" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"vG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"vI" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"vJ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"vN" = (
+/obj/machinery/computer/telecomms/monitor{
+ dir = 8;
+ network = "tcommsat"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"vO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#323d80";
+ name = "maintenance access";
+ req_one_access = list(19,38);
+ stripe_color = "#323d80"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/commandhall)
+"vP" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"vQ" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"vS" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"vT" = (
+/obj/machinery/holoplant,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"vX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/pump_out_internal,
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/shuttle/sdboat/aft)
+"wa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"wd" = (
+/obj/structure/table/standard,
+/obj/item/weapon/aiModule/oxygen,
+/obj/item/weapon/aiModule/oneHuman,
+/obj/item/weapon/aiModule/purge,
+/obj/item/weapon/aiModule/antimov,
+/obj/item/weapon/aiModule/teleporterOffline,
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"we" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"wg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"wm" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "sd_starboard_landing";
+ pixel_y = 29
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = null;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"wo" = (
+/obj/structure/table/standard,
+/obj/item/weapon/aiModule/asimov,
+/obj/item/weapon/aiModule/freeformcore,
+/obj/item/weapon/aiModule/corp,
+/obj/item/weapon/aiModule/paladin,
+/obj/item/weapon/aiModule/robocop,
+/obj/structure/cable/blue,
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"wq" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"wr" = (
+/obj/machinery/computer/ship/engines/adv,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"wt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "readingroom2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/readingroom)
+"wv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"ww" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"wy" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"wA" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"wG" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"wJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/tcommsat/chamber)
+"wK" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"wM" = (
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"wN" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"wP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/halls,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"wQ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"wR" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"wS" = (
+/obj/machinery/holoplant,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"wT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "shuttleshutter"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/sdboat)
+"wW" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/transitgateway)
+"wX" = (
+/obj/machinery/computer/shuttle_control/explore/sdboat{
+ dir = 4
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"wY" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"wZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/rshull,
+/area/shuttle/sdboat/aft)
+"xb" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"xd" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"xe" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"xf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ frequency = 1380;
+ id_tag = null;
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/shuttle/sdboat/aft)
+"xg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/crew_quarters/heads/hop)
+"xh" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"xi" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"xj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/aiModule/consuming_eradicator,
+/obj/item/weapon/aiModule/guard_dog,
+/obj/item/weapon/aiModule/pleasurebot,
+/obj/item/weapon/aiModule/protective_shell,
+/obj/item/weapon/aiModule/scientific_pursuer,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"xm" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"xo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"xu" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "starmaint_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "starmaint_airlock";
+ name = "exterior access button";
+ pixel_y = 32;
+ req_access = null;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"xv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"xw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"xy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"xz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1;
+ icon_state = "freezer_1";
+ set_temperature = 73;
+ use_power = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"xA" = (
+/obj/structure/sign/warning/evac{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"xB" = (
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"xC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"xE" = (
+/obj/structure/closet,
+/obj/random/firstaid,
+/obj/random/maintenance,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"xH" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"xI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"xM" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/iaa,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"xO" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"xP" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"xR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"xS" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/hos,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"xT" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"xU" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"xW" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"xY" = (
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xZ" = (
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"ya" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "shuttleshutter";
+ name = "Shutter Control";
+ pixel_x = 17;
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"yb" = (
+/obj/structure/sign/deck3{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"yc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"yd" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"ye" = (
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/passive/dog/corgi/Lisa,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"yf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"yi" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Command Subgrid";
+ name_tag = "Command Subgrid"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"yj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/aft)
+"ym" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/security,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"yo" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"yp" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/computer/cryopod/robot{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"yq" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"ys" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"yt" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"yw" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"yy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"yB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"yC" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"yF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/portdock)
+"yG" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/window/southright{
+ dir = 1;
+ req_one_access = list(11,67)
+ },
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"yI" = (
+/obj/item/weapon/folder{
+ pixel_x = -4
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
+ },
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/yellow,
+/obj/structure/table/darkglass,
+/obj/structure/table/darkglass,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"yM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#323d80";
+ fill_color = "#313866";
+ name = "Head of Personnel";
+ req_access = list(57);
+ stripe_color = "#a3d1d1"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/heads/hop)
+"yR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"yS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 4;
+ frequency = 1380;
+ master_tag = "sd_starboard_landing";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/starboarddock)
+"yV" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"yW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"yY" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"yZ" = (
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/readingroom)
+"za" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"zb" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"zf" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"zg" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"zi" = (
+/obj/effect/floor_decal/emblem/nt2,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"zm" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Personnel's Office"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"zn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/tcommsat/computer)
+"zo" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"zp" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"zr" = (
+/obj/machinery/cryopod,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"zt" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"zv" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black{
+ color = "#361447"
+ },
+/obj/effect/landmark/start/rd,
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"zw" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 8;
+ id_tag = "portmaint_airlock";
+ pixel_x = 24;
+ req_access = null;
+ req_one_access = list(13);
+ tag_airpump = "portmaint_airpump";
+ tag_chamber_sensor = "portmaint_sensor";
+ tag_exterior_door = "portmaint_exterior";
+ tag_interior_door = "portmaint_interior"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"zy" = (
+/obj/machinery/camera/network/halls{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"zz" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck3/commandhall)
+"zA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"zB" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"zD" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"zE" = (
+/obj/structure/table/bench/padded,
+/obj/effect/landmark/start/commandsecretary,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"zF" = (
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"zH" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"zI" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/arrivals,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"zJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"zL" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"zM" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start/cyborg,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"zN" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/crew_quarters/heads/hos)
+"zQ" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"zS" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/machinery/atmospherics/binary/pump/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"zV" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"zW" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"zX" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/readingroom)
+"zY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"Ab" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ id = "shuttleshutter"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/sdboat)
+"Ae" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Af" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"Ai" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Aj" = (
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/item/device/tape/random,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/structure/closet/walllocker_double/east,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Al" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Am" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ req_access = list(19,43,67)
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"An" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"Ap" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"Aq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"As" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"At" = (
+/obj/structure/table/glass,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck3/readingroom)
+"Av" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"Aw" = (
+/obj/machinery/camera/network/command{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"Ax" = (
+/obj/machinery/holoplant,
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"Ay" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Az" = (
+/obj/item/weapon/camera_assembly,
+/obj/item/weapon/camera_assembly,
+/obj/item/weapon/camera_assembly,
+/obj/item/weapon/camera_assembly,
+/obj/item/weapon/camera_assembly,
+/obj/item/weapon/camera_assembly,
+/obj/structure/closet/crate{
+ name = "Camera Assembly Crate"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"AE" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"AH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"AP" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"AQ" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"AS" = (
+/obj/machinery/computer/telecomms/server{
+ dir = 8;
+ network = "tcommsat"
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"AT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"AU" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"AX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"AY" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"AZ" = (
+/obj/machinery/porta_turret,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Ba" = (
+/obj/structure/closet/walllocker_double/east,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"Bb" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_x = -32;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"Bd" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"Be" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Bg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portaft)
+"Bj" = (
+/obj/machinery/message_server,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Bk" = (
+/obj/machinery/computer/aiupload{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Bl" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1380;
+ id_tag = "tcommsairlock";
+ pixel_y = 24;
+ req_one_access = list(61)
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor,
+/area/tcommsat/computer)
+"Bm" = (
+/obj/structure/closet/emcloset,
+/obj/random/drinkbottle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Bn" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Bp" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/substation/command)
+"Bq" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Br" = (
+/obj/structure/table/alien{
+ name = "fancy table"
+ },
+/obj/machinery/photocopier/faxmachine{
+ department = "Research Director's Office"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"Bs" = (
+/obj/machinery/computer/borgupload{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Bt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"Bz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#323d80";
+ fill_color = "#313866";
+ id_tag = "cmodoor";
+ name = "Chief Medical Officer";
+ req_access = list(40);
+ stripe_color = "#ffffff"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/heads/cmo)
+"BA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 8;
+ frequency = 1380;
+ master_tag = "sd_port_landing";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/portdock)
+"BB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/aft)
+"BC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"BF" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ door_color = "#e6ab22";
+ name = "Command Substation";
+ req_one_access = list(10);
+ stripe_color = "#e6ab22"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/substation/command)
+"BG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"BH" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"BJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/starboarddock)
+"BK" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"BL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"BM" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = -30
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"BQ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"BR" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "sd_escape_center_left";
+ master_tag = "escape_dock";
+ pixel_x = -24;
+ req_one_access = list(13);
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ frequency = 1380;
+ id_tag = null;
+ pixel_x = 25
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"BV" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"BW" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"BY" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"BZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Cb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"Cc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"Cd" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"Ce" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"Cf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portcent)
+"Cn" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"Co" = (
+/obj/machinery/button/remote/airlock{
+ id = "readingroom2";
+ name = "Room 2 Lock";
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "readingroom2";
+ name = "Window Lockdown";
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck3/readingroom)
+"Cp" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"Cu" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Cw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"Cx" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/stellardelight/deck3/exterior;
+ base_turf = /turf/simulated/floor/reinforced/airless;
+ docking_controller = "escape_dock";
+ landmark_tag = "escape_station";
+ name = "Ship Arrivals"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck3/exterior)
+"Cy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/arrivals/right,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Cz" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"CA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 2;
+ id = "barlockdown"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/crew_quarters/bar)
+"CC" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"CD" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1380;
+ id_tag = "sd_escape_port";
+ master_tag = "escape_dock";
+ pixel_y = 30;
+ req_one_access = list(13);
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = null;
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"CG" = (
+/obj/machinery/blackbox_recorder,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"CH" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"CJ" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"CO" = (
+/obj/effect/overmap/visitable/ship/stellar_delight,
+/turf/space,
+/area/space)
+"CP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/arrivals/right,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"CR" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"CS" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"CT" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"CU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"CV" = (
+/obj/structure/bed/chair,
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"CY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"Dd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"Df" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"Dh" = (
+/obj/machinery/computer/message_monitor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Di" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Dn" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Dp" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Ds" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"Du" = (
+/obj/structure/table/rack/shelf,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"Dw" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/deco,
+/area/ai)
+"Dy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"DC" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"DD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "maintenance access"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/port)
+"DE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"DH" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"DI" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"DL" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"DM" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"DN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"DO" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 28
+ },
+/obj/structure/dogbed{
+ name = "catslug bed"
+ },
+/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"DP" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"DQ" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"DT" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/portaft)
+"DV" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall/bay/blue,
+/area/lawoffice)
+"DW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"DY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"DZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Ec" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"Ed" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/aft)
+"Ee" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"Ef" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Eg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Eh" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"Ei" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"En" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Es" = (
+/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding,
+/turf/space,
+/area/space)
+"Et" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"Ev" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Ex" = (
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"Ez" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/sdboat/aft)
+"EE" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/rig/ce/equipped,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots/adv,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"EF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"EH" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"EI" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "portmaint_airpump"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"EJ" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/crew_quarters/heads/cmo)
+"EL" = (
+/obj/machinery/door/airlock/angled_bay/hatch{
+ frequency = null;
+ id_tag = null;
+ locked = 1;
+ name = "Telecoms Server Access";
+ req_access = list(61);
+ stripe_color = "#ffd863"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 1;
+ frequency = 1380;
+ master_tag = "tcommsairlock";
+ pixel_x = -32;
+ req_one_access = list(61)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tcommsat/chamber)
+"EM" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"EN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"EO" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"ER" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/stellardelight/deck3/aft)
+"ET" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"EU" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"EV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"EW" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"EY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 8;
+ pixel_y = 6
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"EZ" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Fb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"Fc" = (
+/obj/structure/closet/walllocker_double/west,
+/obj/item/device/taperecorder{
+ pixel_x = -3
+ },
+/obj/item/weapon/circuitboard/aicore{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/circuitboard/teleporter,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"Fe" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Ff" = (
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Fg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#323d80";
+ fill_color = "#854a44";
+ id_tag = "hosdoor";
+ name = "Head of Security";
+ req_access = list(58);
+ stripe_color = "#d27428"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/heads/hos)
+"Fh" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Fj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"Fm" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "portmaint_airpump"
+ },
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"Fq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/tcommsat/chamber)
+"Fr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"Ft" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"Fv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"Fy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"FC" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"FD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"FE" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"FG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"FH" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"FI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"FL" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"FM" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"FO" = (
+/obj/structure/bed/psych{
+ name = "couch"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"FR" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"FS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"FU" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"FW" = (
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"FY" = (
+/obj/structure/closet,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Ga" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"Gc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Ge" = (
+/obj/structure/table/standard,
+/obj/item/weapon/aiModule/nanotrasen,
+/obj/machinery/camera/network/command,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"Gf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm/angled,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Gg" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = -3
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Gh" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Gi" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/hazmat/equipped,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"Gj" = (
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"Gk" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/maintenance/stellardelight/deck3/portaft)
+"Gl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/cmo,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"Gm" = (
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/blue,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Command";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/substation/command)
+"Go" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Gq" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Gv" = (
+/obj/structure/sign/deck3{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"GB" = (
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"GD" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"GE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"GF" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"GH" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"GJ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"GP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"GQ" = (
+/turf/simulated/wall/bay/red,
+/area/crew_quarters/heads/hos)
+"GR" = (
+/obj/machinery/requests_console/preset/cmo{
+ pixel_x = 30
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"GS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"GT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"GU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"GV" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"GW" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/supermatter_engine,
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/obj/item/device/megaphone,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"Ha" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/cedouble,
+/obj/structure/curtain/black{
+ color = "#945112"
+ },
+/obj/effect/landmark/start/ce,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"Hc" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - AI/Telecomms Subgrid";
+ name_tag = "AI/Telecomms Subgrid"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"Hd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/firecloset,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"He" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"Hf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"Hg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = -32;
+ plane = -34
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Hh" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ id_tag = "starmaint_sensor";
+ pixel_x = -24;
+ req_access = list(13)
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Hi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Hk" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Hm" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"Ho" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Hs" = (
+/turf/simulated/wall/bay/orange,
+/area/crew_quarters/heads/chief)
+"Ht" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"Hu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/portdock)
+"Hv" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Hw" = (
+/obj/structure/sign/painting/public{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Hx" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"HA" = (
+/obj/structure/cable/cyan,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the AI core maintenance door.";
+ dir = 4;
+ id = "AICore";
+ name = "AI Maintenance Hatch";
+ pixel_x = -25;
+ pixel_y = -5;
+ req_access = list(16)
+ },
+/obj/machinery/light,
+/obj/machinery/holoplant,
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"HB" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/table/bench/marble,
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"HF" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"HH" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"HL" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"HN" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"HO" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"HP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/starboarddock)
+"HQ" = (
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = null;
+ name = "Reading Rooms";
+ stripe_color = "#89bd66"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/readingroom)
+"HR" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"HS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"HT" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"HV" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"HW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"HX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"HY" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"HZ" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"Ia" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "shuttleshutter"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/sdboat/aft)
+"Ib" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Ie" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"Ig" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"Ii" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/holodeck_control)
+"Ij" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"Il" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"Im" = (
+/obj/effect/landmark/tram,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"In" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Io" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Ir" = (
+/obj/structure/bed/chair/shuttle,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"It" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Iu" = (
+/obj/machinery/holoplant,
+/turf/simulated/floor/bluegrid,
+/area/ai_server_room)
+"Iz" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"IC" = (
+/obj/machinery/computer/station_alert/all,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"IG" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"IH" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"II" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 30
+ },
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"IK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"IN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"IO" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"IP" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"IQ" = (
+/obj/machinery/porta_turret/ai_defense,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"IR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"IS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "glass airlock"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"IU" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"IV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"IW" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"IY" = (
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ id_tag = "portmaint_sensor";
+ pixel_x = 24;
+ req_access = list(13)
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"Ja" = (
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1379;
+ id_tag = "starmaint_interior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "starmaint_airlock";
+ name = "interior access button";
+ pixel_x = 32;
+ req_access = null;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Jc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"Jd" = (
+/obj/structure/closet/lawcloset,
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Jg" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"Jh" = (
+/turf/space,
+/area/space)
+"Ji" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Jj" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 30
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"Jk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/transitgateway)
+"Jn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Jo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Js" = (
+/obj/structure/table/darkglass,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/blade/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Ju" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"Jv" = (
+/obj/machinery/computer/aifixer,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"Jx" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Jz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/secure{
+ name = "AI Core";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai)
+"JA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "sd_escape_center_left";
+ pixel_x = -32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"JE" = (
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/glass2/square{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/rag,
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"JJ" = (
+/obj/machinery/computer/aifixer,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"JK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"JO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"JP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/angled_bay/secure{
+ name = "AI Upload";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_upload)
+"JQ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/turretid/stun{
+ control_area = /area/ai_upload;
+ name = "AI Upload turret control";
+ pixel_x = -32;
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"JR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"JS" = (
+/obj/machinery/embedded_controller/radio/docking_port_multi{
+ child_names_txt = "Port;Center Left;Center Right;Starboard";
+ child_tags_txt = "sd_escape_port;sd_escape_center_left;sd_escape_center_right;sd_escape_starboard";
+ dir = 1;
+ frequency = 1380;
+ id_tag = "escape_dock";
+ pixel_y = -18;
+ req_one_access = list(13)
+ },
+/obj/effect/landmark/arrivals,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"JU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/rcd,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"JW" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"JY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"JZ" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/table/bench/marble,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Kb" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Kf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Kg" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Ki" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = 32
+ },
+/obj/machinery/power/shield_generator/charged,
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"Kj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/sdboat/aft)
+"Kk" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Ko" = (
+/obj/effect/landmark/tram,
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"Kq" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"Kr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Ks" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"Kt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Kv" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Kw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"Kx" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"Ky" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"Kz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet/emcloset,
+/obj/random/contraband,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/cargo,
+/obj/random/mre,
+/obj/random/mre,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"KD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"KF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"KG" = (
+/obj/structure/table/alien{
+ name = "fancy table"
+ },
+/obj/item/weapon/cartridge/signal/science,
+/obj/item/weapon/cartridge/signal/science,
+/obj/item/clothing/glasses/welding/superior,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"KH" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"KI" = (
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"KL" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"KM" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"KQ" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"KS" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"KT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"KU" = (
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"KV" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"KW" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"KY" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"Lb" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"Ld" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Le" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Lh" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/telecom{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"Lm" = (
+/obj/item/device/paicard,
+/obj/structure/table/glass,
+/obj/machinery/camera/network/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/readingroom)
+"Ln" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"Lr" = (
+/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock,
+/turf/space,
+/area/space)
+"Lv" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Lw" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/table/bench/marble,
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Lx" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/obj/effect/landmark/start/cyborg,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"Ly" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Lz" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"LC" = (
+/obj/machinery/holoplant,
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/command{
+ dir = 9
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"LD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"LI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/shuttles,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"LJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"LK" = (
+/obj/structure/table/bench/padded,
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"LO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"LP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"LQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"LR" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "starmaint_airpump"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"LS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/holodeck_control)
+"LT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portaft)
+"LV" = (
+/obj/structure/table/steel,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"LW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"LY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Mc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/ladder,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Mg" = (
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/item/device/tape/random,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/structure/closet/walllocker_double/west,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Mi" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"Mk" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"Ml" = (
+/obj/structure/table/darkglass,
+/obj/item/weapon/stamp/denied{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/weapon/stamp/internalaffairs,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Mo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = null;
+ pixel_y = -25
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "sd_port_landing";
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Mp" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "AI/Telecomms Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"Mr" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"Ms" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/hop,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/multi,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 3;
+ pixel_y = 18
+ },
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"Mu" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"Mw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Mx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"My" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"MB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"MC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/emblem/nt3,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"ME" = (
+/obj/machinery/vending/nifsoft_shop,
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"MF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"MG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"MH" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"MI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"MJ" = (
+/obj/machinery/pointdefense_control{
+ id_tag = "sd_pd"
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_server_room)
+"MK" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/ai)
+"MN" = (
+/obj/structure/closet/secure_closet/hos2,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/retail_scanner/security,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"MO" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"MP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"MR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"MU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/arrivals,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"MV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"MW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"MX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"MZ" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"Nc" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"Ne" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Nf" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"Nh" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"Ni" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Nj" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Nk" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Nm" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Nq" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Ns" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Nx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/halls{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Ny" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Nz" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"NE" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"NF" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"NG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"NI" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"NJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9c9c9c";
+ fill_color = "#5c5c5c";
+ id_tag = "readingroom2";
+ name = "Room 2";
+ stripe_color = "#89bd66"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/readingroom)
+"NK" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/portcent)
+"NL" = (
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"NN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"NO" = (
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/lamp,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1357;
+ name = "station intercom (Engineering)";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"NP" = (
+/obj/machinery/camera/network/command{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"NQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "portmaint_airlock";
+ name = "exterior access button";
+ pixel_y = 32;
+ req_access = null;
+ req_one_access = list(13)
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "portmaint_exterior";
+ locked = 1;
+ name = "Exterior Airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/portcent)
+"NR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"NT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"NU" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"NW" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"NX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1380;
+ master_tag = "sd_starboard_landing";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/starboarddock)
+"NZ" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/mre,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"Oa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"Ob" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"Oc" = (
+/obj/structure/sign/warning/docking_area{
+ pixel_x = 32
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck3/exterior)
+"Od" = (
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"Oe" = (
+/obj/machinery/holoplant,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"Of" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Og" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Oj" = (
+/obj/machinery/telecomms/bus/preset_one,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"Ol" = (
+/turf/simulated/wall/durasteel,
+/area/ai)
+"Oo" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Op" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Oq" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/stellardelight/deck3/aft)
+"Or" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Ot" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/rd,
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/heads/hor)
+"Ou" = (
+/obj/item/device/radio/beacon,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Ov" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Ow" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/angled_bay/secure{
+ dir = 4;
+ name = "Telecoms Access";
+ req_one_access = list(10,12,16,17,61)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai_server_room)
+"Ox" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Oy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ req_one_access = list(25)
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Oz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/cafe)
+"OC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ frequency = null;
+ id_tag = null;
+ locked = 1;
+ name = "Telecoms Server Access";
+ req_access = list(61);
+ stripe_color = "#ffd863"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "tcommsairlock";
+ pixel_x = 32;
+ req_one_access = list(61)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tcommsat/computer)
+"OD" = (
+/obj/structure/table/rack/steel,
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 1;
+ name = "Protosuit Storage";
+ req_access = list(58)
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security/prototype,
+/obj/item/clothing/head/helmet/space/void/security/prototype,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"OE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"OF" = (
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"OG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"OI" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/starboard)
+"OJ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"OK" = (
+/obj/structure/closet/lawcloset,
+/obj/structure/sign/poster{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"OM" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"ON" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"OP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"OQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"OR" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"OS" = (
+/obj/machinery/computer/drone_control{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"OU" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/cryo)
+"OV" = (
+/obj/structure/closet/walllocker_double/west,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"OX" = (
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"Pa" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"Pc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Pd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Pe" = (
+/obj/machinery/keycard_auth{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"Pj" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Pl" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"Pm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/port)
+"Po" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Pq" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Px" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/computer/cryopod/gateway{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/transitgateway)
+"PA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"PC" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"PD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"PE" = (
+/obj/structure/sign/department/ai{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"PJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "right";
+ name = "Reception Window"
+ },
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Head of Personnel's Desk";
+ req_access = list(57)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "hop_office_desk";
+ layer = 3.1;
+ name = "HoP's Shutters"
+ },
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"PL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"PR" = (
+/obj/structure/table/glass,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/item/weapon/stamp/cmo,
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"PT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"PU" = (
+/obj/structure/sign/directions/stairs_down{
+ pixel_x = 32;
+ pixel_y = 18
+ },
+/obj/structure/sign/directions/medical{
+ pixel_x = 32;
+ pixel_y = 12
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_x = 32
+ },
+/turf/simulated/open,
+/area/stellardelight/deck3/aft)
+"PV" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"PW" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark/start/cyborg,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"PX" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/painting/public{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Qe" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "sd_bittyshuttle";
+ pixel_y = 29
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/handrail,
+/obj/effect/shuttle_landmark/shuttle_initializer/sdboat,
+/obj/effect/overmap/visitable/ship/landable/sd_boat,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/shuttle/sdboat/aft)
+"Qf" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/ce,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"Qi" = (
+/obj/structure/sign/painting/public{
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"Qm" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Qn" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck3/aft)
+"Qo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"Qp" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/crew_quarters/bar)
+"Qq" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Qs" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"Qu" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 22
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/holodeck_control)
+"Qv" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Qx" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"QB" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck3/commandhall)
+"QC" = (
+/obj/machinery/camera/network/telecom,
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"QE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"QF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"QG" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"QI" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"QJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "sd_escape_center_right";
+ pixel_x = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"QK" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/stellardelight/deck3/readingroom)
+"QL" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"QP" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"QR" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/panic_button{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"QS" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"QT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ door_color = "#323d80";
+ name = "Command Offices";
+ req_access = null;
+ req_one_access = list(19,38);
+ stripe_color = "#f7d35c"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/commandhall)
+"QV" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"QW" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"QZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"Rb" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Rc" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"Rd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"Rg" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Rh" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Ri" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"Rj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/angled_bay/standard/glass{
+ name = "maintenance access"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/starboard)
+"Rl" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Command Offices";
+ sortType = "Command Offices"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"Rn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/crew_quarters/heads/hop)
+"Ro" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass/common{
+ dir = 4;
+ name = "Long-Range Teleporter Access"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/transitgateway)
+"Rq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Ru" = (
+/obj/machinery/holoplant,
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"Rv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Rw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Rx" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Rz" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"RE" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"RG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"RH" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/transitgateway)
+"RI" = (
+/turf/simulated/open,
+/area/stellardelight/deck3/aft)
+"RK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"RL" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"RM" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"RN" = (
+/obj/structure/sign/directions/evac{
+ pixel_x = 32
+ },
+/obj/structure/closet/firecloset,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"RQ" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"RT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ dir = 4;
+ door_color = "#e6ab22";
+ name = "Shield Generator";
+ req_access = list(11,24);
+ stripe_color = "#e6ab22"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck2/central)
+"RW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/shuttle/sdboat/aft)
+"RX" = (
+/turf/simulated/wall/bay/steel,
+/area/stellardelight/deck2/central)
+"RY" = (
+/obj/structure/bed/chair/shuttle,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"RZ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/warning/caution{
+ desc = "This secure area is guarded by LETHAL LASER TURRETS. Authorized personnel ONLY.";
+ name = "\improper WARNING: LETHAL TURRETS AHEAD";
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Sb" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Se" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Sf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Sh" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Sk" = (
+/obj/structure/table/standard,
+/obj/item/weapon/phone{
+ pixel_x = 3;
+ pixel_y = 11
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"Sl" = (
+/obj/structure/sign/warning/evac{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Sm" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"Sn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Sp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Sz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"SA" = (
+/obj/structure/table/darkglass,
+/obj/machinery/computer/skills{
+ dir = 8;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"SB" = (
+/obj/machinery/requests_console/preset/ce{
+ pixel_x = -30
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"SC" = (
+/obj/structure/sign/warning/docking_area{
+ pixel_y = 32
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/stellardelight/deck3/exterior)
+"SD" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"SE" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"SF" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"SJ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"SK" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"SL" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/bluegrid,
+/area/ai_cyborg_station)
+"SN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"SP" = (
+/obj/structure/table/glass,
+/obj/machinery/photocopier/faxmachine{
+ department = "CMO's Office"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"SQ" = (
+/obj/machinery/disposal/wall{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"SR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"ST" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"SU" = (
+/obj/structure/table/bench/padded,
+/obj/structure/sign/painting/public{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"SV" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"SZ" = (
+/obj/machinery/power/apc/angled{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"Ta" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/angled_bay/hatch{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/bar)
+"Tc" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Td" = (
+/obj/structure/table/rack/shelf,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Te" = (
+/obj/effect/landmark/map_data/stellar_delight,
+/turf/space,
+/area/space)
+"Tf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double/glass{
+ name = "glass airlock"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"Ti" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Tj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ dir = 4;
+ id = "hop_office_desk";
+ layer = 3.3;
+ name = "Desk Privacy Shutter";
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"Tk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/low_wall/bay/reinforced/blue,
+/turf/simulated/floor,
+/area/crew_quarters/heads/hop)
+"Tl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/effect/landmark/start/hop,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"Tm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"Tn" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"To" = (
+/obj/machinery/keycard_auth{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"Tp" = (
+/obj/structure/table/glass,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"Tr" = (
+/obj/machinery/drone_fabricator,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"Ts" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc/angled{
+ dir = 8;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/blue,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Tv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/color{
+ dir = 4;
+ door_color = "#9fccc7";
+ fill_color = "#333333";
+ id_tag = null;
+ name = "Internal Affairs";
+ req_access = list(38);
+ stripe_color = "#ffffff"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/lawoffice)
+"Tx" = (
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"Ty" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"TA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/aft)
+"TB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"TE" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"TF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"TI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"TJ" = (
+/obj/structure/sign/department/telecoms{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"TK" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"TL" = (
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"TM" = (
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ control_area = /area/tcommsat/chamber;
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Telecoms lethal turret control";
+ pixel_y = 29;
+ req_access = list(61);
+ req_one_access = list()
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"TO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"TP" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"TS" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"TV" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"TW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"TY" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Ub" = (
+/obj/machinery/vending/boozeomat{
+ req_access = null
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Uc" = (
+/obj/structure/frame/computer,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Ud" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/ce,
+/obj/item/weapon/book/manual/sd_guide,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"Ue" = (
+/obj/structure/table/rack,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/drinkbottle,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/mre,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Uf" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"Ug" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Uj" = (
+/obj/structure/cable/blue,
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - AI/Telecomms";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/ai_cyborg_station)
+"Uk" = (
+/obj/machinery/computer/card,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"Uq" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Uw" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Uy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/halls,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"UA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+"UB" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"UF" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"UG" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/stellardelight/deck3/commandhall)
+"UH" = (
+/obj/structure/sign/painting/library_secure{
+ pixel_x = -30
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"UI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"UK" = (
+/obj/machinery/camera/network/telecom{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"UL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/double{
+ name = "maintenance access";
+ stripe_color = "#454545"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"UO" = (
+/obj/machinery/recharge_station,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"UQ" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"UR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"US" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"UT" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/device/megaphone,
+/obj/item/weapon/pen/multi,
+/obj/item/device/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"UU" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"UV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"UX" = (
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"Va" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/portfore)
+"Vb" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/stellardelight/deck3/cryo)
+"Vc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Ve" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"Vg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"Vi" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/item/device/gps,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"Vk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"Vm" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"Vo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 8;
+ frequency = 1380;
+ master_tag = "sd_escape_starboard";
+ pixel_y = 32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/starboarddock)
+"Vp" = (
+/obj/structure/lattice,
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"Vq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"Vr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/yellow_ce,
+/obj/item/weapon/pen/multi,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"Vs" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"Vt" = (
+/obj/item/device/radio/intercom/locked/ai_private{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_cyborg_station)
+"Vw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Vx" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Vz" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"VB" = (
+/obj/item/weapon/bedsheet/double,
+/obj/structure/bed/double/padded,
+/obj/structure/curtain/black{
+ color = "#156363"
+ },
+/obj/effect/landmark/start/cmo,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"VC" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/ai_upload)
+"VD" = (
+/obj/structure/table/steel,
+/obj/random/drinkbottle,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"VE" = (
+/obj/structure/table/glass,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/multi,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"VG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"VK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"VM" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "sd_pd"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green,
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"VN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"VQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/angled_bay/secure{
+ name = "Nuclear Fission Device Storage";
+ req_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/ai)
+"VR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"VS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/aft)
+"VW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"VZ" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Wa" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"Wd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Wf" = (
+/obj/machinery/disposal/wall,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Wg" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Wi" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"Wj" = (
+/obj/machinery/computer/ship/helm/adv,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat)
+"Wn" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Wp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"Wq" = (
+/obj/structure/table/darkglass,
+/obj/machinery/computer/skills{
+ dir = 4;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"Wr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Ws" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Wt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/table/bench/marble,
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Wu" = (
+/obj/structure/sign/warning/docking_area{
+ pixel_x = -32
+ },
+/turf/simulated/floor/airless,
+/area/stellardelight/deck3/exterior)
+"Ww" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/shuttle/sdboat/aft)
+"Wx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Wy" = (
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper/sdshield,
+/turf/simulated/floor,
+/area/stellardelight/deck2/central)
+"WA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"WB" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardfore)
+"WD" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"WF" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"WG" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"WH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"WI" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"WK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "shuttleshutter"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/sdboat)
+"WL" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/drinksoft,
+/obj/random/drinksoft,
+/obj/random/mre,
+/obj/random/mre,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"WM" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"WN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"WO" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/lawoffice)
+"WQ" = (
+/obj/machinery/power/apc/angled{
+ dir = 4;
+ name = "night shift APC";
+ nightshift_setting = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"WU" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"WW" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start/iaa,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"WX" = (
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"WZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Xa" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/structure/closet/secure_closet/CMO,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/device/flashlight/pen,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/weapon/cmo_disk_holder,
+/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo,
+/obj/item/weapon/storage/mrebag/pill/sleevingcure,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/device/retail_scanner/medical,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/crew_quarters/heads/cmo)
+"Xb" = (
+/obj/machinery/alarm/angled{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomc)
+"Xc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"Xd" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Xe" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/fore)
+"Xf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"Xi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/stellardelight/deck3/cafe)
+"Xl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"Xm" = (
+/obj/structure/table/alien{
+ name = "fancy table"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1351;
+ name = "station intercom (Science)";
+ pixel_y = 24
+ },
+/obj/item/device/paicard{
+ pixel_x = 4
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/paper/monitorkey,
+/obj/item/device/megaphone,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"Xo" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"Xr" = (
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"Xv" = (
+/obj/structure/frame,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"XA" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"XB" = (
+/turf/simulated/wall/bay/steel,
+/area/maintenance/stellardelight/substation/command)
+"XC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"XD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/sign/warning/evac{
+ pixel_x = -32
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"XE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/angled_bay/standard/glass/common{
+ dir = 4;
+ name = "Cryogenic Storage"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/cryo)
+"XF" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"XG" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"XH" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"XI" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"XJ" = (
+/obj/machinery/power/apc/angled{
+ dir = 8
+ },
+/obj/structure/cable/blue,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"XK" = (
+/turf/simulated/wall/bay/r_wall/blue,
+/area/ai_server_room)
+"XO" = (
+/obj/machinery/computer/security,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"XT" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"XV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportroomb)
+"XX" = (
+/obj/machinery/holoplant,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcommsat/computer)
+"XY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/frame,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"XZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/door/airlock/angled_bay/external/glass{
+ frequency = 1380;
+ id_tag = null;
+ locked = 1;
+ name = "Docking Port Airlock"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 1;
+ frequency = 1380;
+ master_tag = "sd_escape_center_left";
+ pixel_x = -32;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/stellardelight/deck3/aft)
+"Yb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "portmaint_airpump"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"Yc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Yd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"Yg" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/portaft)
+"Yj" = (
+/obj/structure/girder/displaced,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"Yl" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Ym" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/portcent)
+"Yo" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"Yp" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "cafe";
+ name = "Cafe Shutters";
+ pixel_y = 28;
+ req_one_access = list(25)
+ },
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Ys" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 4;
+ id_tag = "starmaint_airlock";
+ pixel_x = -24;
+ req_access = null;
+ req_one_access = list(13);
+ tag_airpump = "starmaint_airpump";
+ tag_chamber_sensor = "starmaint_sensor";
+ tag_exterior_door = "starmaint_exterior";
+ tag_interior_door = "starmaint_interior"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Yu" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/mre,
+/obj/random/snack,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Yv" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"Yw" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"Yx" = (
+/obj/structure/closet/emcloset,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/starboardcent)
+"Yy" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"Yz" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/maintenance/stellardelight/deck3/portcent)
+"YA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"YB" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarroomb)
+"YC" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/structure/closet/secure_closet/RD,
+/obj/item/device/aicard,
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/device/retail_scanner/science,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/hor)
+"YD" = (
+/obj/structure/table/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"YE" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/machinery/power/apc/angled{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"YH" = (
+/obj/item/modular_computer/console/preset/command,
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"YJ" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"YK" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck3/aft)
+"YL" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/blue_hop,
+/obj/item/weapon/pen,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop)
+"YN" = (
+/turf/simulated/wall/bay/r_wall/steel,
+/area/stellardelight/deck3/portdock)
+"YO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"YQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/heads/cmo)
+"YR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"YS" = (
+/obj/structure/table/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/aftstarroom)
+"YU" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/bar)
+"Zd" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/machinery/alarm/angled,
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/sdboat/aft)
+"Ze" = (
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"Zf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"Zi" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/shuttles/right,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/portdock)
+"Zj" = (
+/obj/structure/bed/chair,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"Zk" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portfore)
+"Zl" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"Zm" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_cyborg_station)
+"Zn" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/stellardelight/deck3/foreportrooma)
+"Zp" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portcent)
+"Zt" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/central)
+"Zu" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/structure/table/bench/marble,
+/turf/simulated/floor/lino,
+/area/stellardelight/deck3/cafe)
+"Zw" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"ZB" = (
+/obj/machinery/alarm/angled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/portaft)
+"ZC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"ZE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/aft)
+"ZF" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/heads/chief)
+"ZH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/stellardelight/deck3/starboarddock)
+"ZJ" = (
+/turf/simulated/open,
+/area/maintenance/stellardelight/deck3/portaft)
+"ZK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/stellardelight/deck3/commandhall)
+"ZL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "readingroom3"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/readingroom)
+"ZM" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/starboard)
+"ZN" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"ZQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/maintenance/stellardelight/deck3/forestarrooma)
+"ZS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/stellardelight/deck2/port)
+"ZV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/bay/reinforced,
+/obj/machinery/door/blast/angled/open{
+ dir = 4;
+ id = "readingroom1"
+ },
+/obj/structure/low_wall/bay/reinforced/steel,
+/turf/simulated/floor,
+/area/stellardelight/deck3/readingroom)
+"ZX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload)
+"ZZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/stellardelight/deck2/fore)
+
+(1,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+CO
+Te
+"}
+(2,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(3,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(4,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(5,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(6,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(7,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(8,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(9,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(10,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(11,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(12,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(13,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(14,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(15,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(16,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(17,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(18,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(19,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(20,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(21,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(22,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+mf
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(23,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(24,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(25,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(26,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(27,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(28,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(29,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(30,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(31,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(32,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(33,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(34,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(35,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(36,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Es
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(37,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(38,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(39,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+TE
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+TE
+NL
+NL
+NL
+NL
+NL
+SK
+SK
+NL
+NL
+TE
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(40,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+FH
+af
+af
+af
+yd
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+NL
+Ae
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(41,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Ae
+NL
+TE
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+TE
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+TE
+NL
+SK
+SK
+SK
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+un
+af
+af
+af
+af
+af
+eX
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(42,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+ko
+af
+ew
+af
+af
+af
+af
+af
+Rx
+af
+ew
+af
+af
+af
+af
+af
+af
+af
+af
+ew
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+ew
+af
+af
+af
+af
+af
+af
+af
+ew
+af
+af
+af
+Wd
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(43,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+un
+af
+af
+af
+af
+af
+af
+af
+af
+VM
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Se
+pT
+pT
+pT
+pT
+pT
+pT
+pT
+pT
+pT
+pT
+bp
+yW
+yW
+yW
+yW
+dB
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(44,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+SK
+SK
+SK
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(45,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+TE
+Ae
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+SK
+SK
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+SK
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(46,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Uw
+eX
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Iz
+sM
+sM
+sM
+sM
+be
+fn
+Ia
+fn
+fn
+fn
+Ia
+fn
+fn
+sM
+sM
+IK
+SK
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(47,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+FH
+gw
+af
+af
+af
+af
+af
+af
+Wd
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ae
+SK
+NL
+NL
+NL
+Jh
+SK
+SK
+Jh
+Jh
+Jh
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+hk
+eJ
+eJ
+WK
+eJ
+eJ
+fn
+Zd
+Qq
+Wn
+BW
+lc
+ui
+fn
+sM
+sM
+IK
+Jh
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(48,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ae
+SK
+Jh
+Jh
+Jh
+Jh
+Jh
+Ae
+SK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Ae
+Jh
+NL
+NL
+NL
+Jh
+Jh
+SK
+SK
+Jh
+Jh
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+Iz
+Ab
+QR
+mU
+wX
+gl
+RY
+aP
+LO
+LO
+rk
+fg
+yG
+iD
+sM
+sM
+IK
+Jh
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(49,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+kP
+mQ
+Va
+kP
+mQ
+mQ
+kP
+kP
+kP
+Va
+kP
+mQ
+mQ
+kP
+kP
+mQ
+mQ
+kP
+mQ
+mQ
+kP
+mQ
+mQ
+kP
+Yz
+Yz
+Yz
+NL
+NL
+TE
+NL
+Yg
+Yg
+Yg
+Yg
+ki
+ki
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+vq
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+ki
+ki
+Yg
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+Iz
+Ab
+wr
+Bb
+SJ
+eJ
+Rb
+Vw
+Rw
+Rw
+iw
+zS
+fn
+fn
+sM
+sM
+IK
+Jh
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(50,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+kP
+kP
+Dp
+KQ
+XT
+Kg
+iz
+Ws
+Yu
+Zk
+Yl
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+Ji
+XT
+XT
+XT
+XT
+XT
+UL
+My
+Ei
+Yz
+NL
+NL
+Ae
+NL
+Yg
+vA
+ZJ
+DT
+dM
+bd
+NE
+nV
+ZB
+dE
+NR
+dE
+hd
+dE
+dE
+dE
+dE
+dE
+dE
+HY
+ed
+Bm
+JW
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+Iz
+Ab
+Wj
+ya
+Pl
+mw
+LO
+oJ
+lB
+hR
+MX
+kZ
+wZ
+mv
+sM
+sM
+IK
+Jh
+NL
+TE
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(51,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+SK
+Jh
+Jh
+mQ
+sX
+cK
+XT
+XT
+pf
+Ns
+Ns
+Ns
+Ns
+Ns
+eF
+IP
+YD
+bC
+Ns
+Ns
+Ns
+Hk
+Ns
+Ns
+Ns
+Ns
+Ns
+KW
+OX
+Sz
+Yz
+Yz
+NQ
+ma
+Yz
+Yz
+YJ
+xT
+xT
+xT
+xT
+xT
+xT
+oM
+xT
+BZ
+xT
+IN
+xi
+dE
+dE
+dE
+dE
+dE
+dE
+dE
+dE
+dE
+LS
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+Iz
+Ab
+jc
+Ex
+dq
+eJ
+Rb
+Vw
+gY
+fn
+sa
+fn
+fn
+fn
+sM
+sM
+IK
+Jh
+NL
+Ae
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(52,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+un
+VM
+un
+af
+af
+af
+kQ
+kQ
+HO
+Jn
+hD
+RL
+xI
+Xl
+RL
+RL
+RL
+RL
+RL
+Xl
+Xl
+RL
+zX
+ZL
+ZL
+zX
+wt
+wt
+zX
+ZV
+ZV
+zX
+Hm
+Sz
+Yz
+Yb
+Od
+Fy
+gc
+NK
+YO
+FG
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+LT
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Ii
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+hk
+Ab
+mU
+mU
+ax
+gl
+Ir
+Wg
+ue
+ri
+vX
+Ww
+Ww
+iD
+sM
+sM
+IK
+Jh
+NL
+Ae
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(53,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Uw
+af
+eX
+Jh
+Jh
+hD
+hD
+nO
+PV
+MP
+hD
+zt
+dL
+xP
+pN
+pN
+zp
+cH
+pN
+nv
+yY
+zt
+zX
+At
+qC
+zX
+At
+qC
+zX
+At
+qC
+zX
+uJ
+Sz
+yR
+Ym
+VR
+GF
+QS
+rp
+LD
+FS
+Yg
+oW
+CS
+oW
+oW
+oW
+QF
+oW
+oW
+oW
+Ju
+oW
+oW
+oW
+oW
+QF
+oW
+oW
+CS
+Ii
+Qu
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+Iz
+eJ
+eJ
+wT
+eJ
+eJ
+Ez
+EM
+cQ
+ri
+Qe
+xf
+RW
+fn
+sM
+sM
+Di
+af
+af
+eX
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(54,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+Ae
+NL
+Jh
+Jh
+hD
+hD
+cZ
+il
+il
+Sp
+hD
+VD
+JY
+xP
+pN
+xP
+hj
+ey
+pN
+xP
+kV
+EH
+zX
+md
+QK
+zX
+Co
+QK
+zX
+he
+QK
+zX
+bl
+op
+Yz
+Fm
+zw
+IY
+EI
+Yz
+Yd
+cp
+Yg
+CS
+Yw
+uf
+uf
+uf
+Mk
+uf
+uf
+uf
+zH
+qP
+qP
+qP
+qP
+jL
+qP
+qP
+IH
+Ii
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+Iz
+sM
+sM
+sM
+sM
+mi
+Kj
+iM
+fn
+fn
+kz
+fn
+fn
+fn
+sM
+sM
+IK
+SK
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(55,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Ae
+NL
+Jh
+hD
+hD
+FW
+DY
+XY
+XY
+LJ
+hD
+gj
+fh
+nX
+rj
+Jc
+Ij
+XI
+pN
+xP
+xP
+yY
+zX
+uU
+zX
+zX
+NJ
+zX
+zX
+lU
+zX
+zX
+oI
+Sz
+Yz
+yR
+Yz
+Yz
+yR
+Yz
+GS
+nw
+Yz
+oW
+xd
+oW
+oW
+oW
+ZS
+oW
+oW
+oW
+hG
+oW
+oW
+oW
+oW
+ZS
+oW
+oW
+NI
+IO
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+dh
+PT
+PT
+PT
+PT
+PT
+PT
+PT
+et
+YN
+BA
+YN
+Hu
+PT
+PT
+PT
+En
+Jh
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(56,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+un
+VM
+NL
+un
+eX
+SK
+SK
+hD
+Uc
+il
+il
+WM
+OF
+il
+hD
+pN
+XV
+pN
+pN
+xP
+hj
+xP
+pN
+pN
+pN
+pN
+yZ
+KI
+KI
+GH
+KI
+oE
+KI
+KI
+qx
+zX
+tp
+eh
+gA
+sN
+MR
+VK
+Zf
+MR
+fG
+bP
+Yz
+oW
+xd
+oW
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+qq
+qq
+qq
+qq
+qq
+GV
+Ii
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+qz
+Ii
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+qL
+ai
+Mo
+ai
+qL
+NL
+NL
+NL
+Ae
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(57,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Go
+af
+af
+eX
+Jh
+Jh
+Jh
+hD
+Xv
+Uq
+og
+og
+Uq
+il
+hD
+pN
+XV
+pN
+pN
+pN
+NG
+pN
+pN
+pN
+pN
+MZ
+zX
+DO
+qg
+Lm
+Af
+Bd
+Am
+yq
+xv
+HQ
+Zp
+My
+RM
+WQ
+OX
+Sz
+cS
+Hm
+SD
+SD
+Yz
+oW
+xd
+oW
+ad
+qn
+bZ
+Ze
+UK
+kw
+lx
+Oj
+Ht
+Fq
+Oe
+HX
+su
+XX
+qq
+NN
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+Ii
+eP
+Ii
+Ii
+Ii
+YN
+ai
+ai
+YN
+ai
+ai
+ai
+YN
+YN
+YN
+ss
+YN
+YN
+NL
+NL
+NL
+Ae
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(58,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ae
+Jh
+SK
+Jh
+Jh
+Jh
+Jh
+SR
+WL
+Zn
+DM
+pk
+WI
+FY
+hD
+DC
+lh
+DC
+DC
+DC
+DC
+DC
+DC
+DC
+DC
+DC
+oZ
+oZ
+oZ
+oZ
+oZ
+oZ
+oZ
+oZ
+oZ
+zX
+Yz
+Yz
+Yz
+Yz
+Yz
+Cf
+Yz
+Yz
+Yz
+Yz
+Yz
+Xf
+ob
+BL
+ad
+jE
+cm
+Ze
+kc
+Ze
+lE
+hw
+sK
+wJ
+kF
+Fv
+Uf
+GD
+qq
+lv
+oV
+Of
+cu
+Hd
+HH
+lm
+Ii
+YE
+NT
+ao
+Ii
+Og
+JR
+mX
+mX
+Nk
+XC
+Hg
+KT
+uk
+KL
+IR
+Sn
+UV
+YN
+NL
+NL
+NL
+Ae
+TE
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(59,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+ko
+yd
+NL
+Jh
+Jh
+Jh
+SK
+SR
+Sh
+Zn
+zQ
+DM
+WI
+il
+hD
+ne
+vF
+qF
+qF
+qF
+qF
+qF
+Cb
+qF
+qF
+qF
+qF
+Cp
+qF
+qF
+qF
+Cb
+qF
+qF
+qF
+iQ
+wa
+oW
+QF
+oW
+dT
+hY
+oW
+oW
+QF
+oW
+oW
+oW
+xd
+oW
+ad
+Ze
+cW
+gU
+ks
+qn
+Ze
+Ze
+Ee
+Fq
+uB
+uB
+xz
+pW
+qq
+ck
+kr
+Rv
+Rv
+eN
+Rv
+iW
+Tf
+im
+zI
+qN
+yF
+la
+Vc
+ST
+ST
+ST
+jV
+TW
+pC
+PD
+dw
+Or
+mb
+Eg
+hN
+yW
+yW
+yW
+tK
+tK
+yW
+yW
+yW
+yW
+yW
+yW
+dB
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(60,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Ae
+Jh
+Jh
+Jh
+SK
+SK
+SR
+qM
+Uq
+Pq
+Pq
+Uq
+Xv
+hD
+zW
+lj
+qi
+qi
+qi
+qi
+qi
+Xe
+qi
+qi
+qi
+qi
+kO
+qi
+qi
+qi
+Xe
+qi
+qi
+qi
+qi
+DD
+rS
+jT
+rS
+rS
+Ft
+Ig
+Ig
+Mk
+Ig
+Ig
+Ig
+Cz
+CS
+ad
+Ze
+cY
+gW
+Dy
+gU
+lH
+qn
+sK
+wJ
+tW
+zn
+xB
+pW
+qq
+Gf
+Sf
+pc
+pc
+Wx
+Wx
+WU
+xW
+yt
+CP
+It
+oO
+Zi
+ek
+Nq
+Nq
+BV
+YN
+qe
+YN
+vI
+Nq
+Nq
+Nq
+Tc
+YN
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(61,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+Jh
+Ae
+Jh
+Jh
+SK
+SK
+SK
+hD
+HR
+qM
+xb
+Oo
+Xv
+Xv
+hD
+Hf
+Ie
+tV
+qF
+qF
+qF
+qF
+sJ
+qF
+qF
+qF
+qF
+Cp
+qF
+qF
+qF
+sJ
+qF
+qF
+qF
+qF
+wa
+oW
+ZS
+oW
+oW
+Pm
+oW
+oW
+ZS
+oW
+oW
+oW
+Zl
+oW
+ad
+QC
+el
+Ze
+li
+rs
+mC
+Dy
+uv
+EL
+uw
+OC
+yc
+Lh
+qq
+Cu
+pc
+pc
+ER
+RI
+Qn
+Qn
+Ed
+jP
+pK
+Mx
+YN
+YN
+YN
+ai
+ai
+YN
+YN
+CD
+YN
+YN
+ai
+ai
+ai
+YN
+YN
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(62,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Jh
+Ae
+Jh
+SK
+SK
+SK
+Qp
+Qp
+Qp
+Qp
+Qp
+Qp
+Qp
+Qp
+Qp
+qF
+gG
+qF
+cb
+cb
+cb
+cb
+cb
+cb
+cb
+zN
+zN
+zN
+zN
+zN
+zN
+WO
+WO
+WO
+WO
+WO
+WO
+nW
+Oz
+Oz
+nW
+nj
+nW
+Oz
+Oz
+nW
+nW
+sx
+He
+sx
+ad
+Ze
+eC
+Rd
+Dy
+ib
+nm
+qn
+kb
+wJ
+Bl
+zn
+yE
+pW
+qq
+ME
+UI
+aX
+ei
+PU
+RI
+RI
+Ed
+wP
+ZE
+Kf
+Ed
+hf
+sM
+sM
+sM
+sM
+YN
+tR
+YN
+sM
+sM
+sM
+sM
+sM
+hf
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(63,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Jh
+gJ
+af
+af
+af
+eI
+Qp
+qp
+qp
+qp
+qp
+qp
+qp
+qp
+Qp
+Cp
+CU
+Cp
+cb
+YH
+SB
+Ha
+BM
+EE
+cb
+ub
+hc
+gL
+UH
+OD
+zN
+Jd
+Mg
+BY
+rl
+bj
+WO
+fd
+Gg
+eU
+JZ
+pp
+Qi
+qc
+nF
+LK
+nW
+nx
+mg
+nx
+ad
+Ze
+eK
+ib
+lo
+qQ
+Sm
+Sm
+tL
+wJ
+zn
+zn
+zY
+DP
+qq
+XK
+XK
+XK
+XK
+XK
+XK
+XK
+XK
+Wf
+tg
+Mx
+Ed
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(64,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+NL
+Ae
+TE
+NL
+Jh
+fs
+Xc
+Dd
+DH
+YU
+YU
+YU
+OP
+ca
+Qp
+qF
+gG
+qF
+cb
+IC
+Qf
+hX
+hX
+JU
+cb
+XO
+xS
+BH
+BH
+tO
+zN
+Bq
+xM
+xY
+xY
+ka
+WO
+si
+rL
+eU
+Lw
+Bt
+xZ
+mr
+gk
+zE
+Oz
+nx
+mg
+nx
+ad
+jE
+fk
+Ze
+lw
+MO
+nC
+px
+sK
+wJ
+cc
+iL
+Aq
+dy
+oY
+zD
+RZ
+uZ
+TY
+Xo
+dn
+CG
+XK
+cx
+pK
+Mx
+Ed
+SC
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(65,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+un
+af
+Hx
+eX
+Jh
+Jh
+CA
+qp
+qp
+kU
+qp
+qp
+qp
+NF
+qp
+Qp
+qF
+gG
+qF
+cb
+NO
+Ud
+EY
+hX
+GW
+cb
+UT
+nH
+gb
+BH
+dH
+zN
+Js
+Ml
+SA
+xY
+yI
+WO
+JE
+lD
+jm
+Wt
+hb
+xZ
+xZ
+xZ
+nz
+Oz
+Wp
+XA
+lY
+ad
+qn
+gh
+Ze
+eo
+qU
+oA
+pY
+sl
+wJ
+cO
+vN
+AS
+dV
+qq
+TM
+VW
+nS
+Fh
+fb
+Fh
+Dh
+XK
+nZ
+AY
+Qx
+Ed
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(66,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+Ae
+SK
+Jh
+Jh
+Jh
+Jh
+CA
+qp
+qp
+kU
+qp
+qp
+qp
+NF
+qp
+Qp
+Hf
+Ie
+tV
+cb
+gy
+ZF
+ns
+fa
+Vr
+cb
+Et
+wq
+dD
+dY
+MN
+zN
+EO
+Lv
+hu
+hu
+bO
+WO
+Yp
+rL
+eU
+Lw
+Xi
+xZ
+xZ
+xZ
+xZ
+Oz
+nx
+jY
+nx
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+Bj
+xe
+Fh
+Fh
+DL
+GU
+Ov
+XK
+Zj
+Yc
+tG
+gM
+BB
+BB
+VS
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(67,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+ko
+yd
+NL
+Jh
+Jh
+Jh
+CA
+qp
+qp
+kU
+qp
+qp
+qp
+NF
+qp
+Qp
+qF
+gG
+qF
+cb
+kl
+AP
+Ve
+ve
+vf
+cb
+Pe
+pO
+UB
+Ba
+mD
+zN
+FC
+yC
+dZ
+jl
+at
+WO
+Oy
+bY
+eU
+Lw
+Xi
+xZ
+zE
+WD
+nk
+nW
+nx
+jY
+Tx
+sc
+wS
+gQ
+iK
+KH
+KY
+QG
+eg
+QG
+QG
+np
+nM
+uI
+wS
+sc
+XK
+XK
+MJ
+uQ
+Qm
+Nm
+Iu
+XK
+lt
+wg
+Sl
+Oq
+Oq
+Ky
+TA
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(68,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+FH
+ew
+yd
+NL
+SK
+SK
+Qp
+YU
+YU
+XH
+Dd
+Dd
+Dd
+OQ
+Dd
+Ta
+ZZ
+mm
+sO
+cb
+Hs
+Hs
+jn
+Hs
+Hs
+cb
+GQ
+GQ
+Fg
+GQ
+GQ
+zN
+DV
+dU
+Tv
+dU
+dU
+WO
+gq
+HB
+HB
+Zu
+vh
+rg
+ea
+Cd
+SU
+nW
+zz
+sz
+RX
+sc
+bK
+gS
+iR
+Rc
+Qs
+TK
+Ga
+eu
+xh
+kB
+rZ
+nd
+sc
+sc
+Bk
+XK
+XK
+XK
+Ow
+XK
+XK
+XK
+CV
+pK
+Mx
+Im
+Im
+Im
+TA
+Ed
+Ed
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+Vz
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(69,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+Ae
+Jh
+Jh
+Jh
+CA
+qp
+qp
+US
+qp
+qp
+qp
+Vm
+qp
+Qp
+qF
+bn
+tV
+rc
+po
+aQ
+BK
+aQ
+aQ
+sf
+aQ
+aQ
+BK
+aQ
+jK
+eL
+BK
+bE
+bE
+bE
+aQ
+QT
+Gj
+xy
+Tm
+Tm
+PL
+Gj
+QB
+QB
+QB
+QB
+rc
+aM
+Wy
+sc
+Vs
+Vs
+Vs
+TL
+Ol
+Ol
+qv
+Ol
+Ol
+rN
+MV
+Cn
+sc
+AZ
+bM
+Ru
+VC
+wA
+cw
+ZX
+UO
+VC
+TJ
+dF
+Mx
+oq
+oq
+oq
+XZ
+BR
+JA
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(70,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Jh
+Ae
+Jh
+Jh
+Jh
+CA
+qp
+qp
+US
+qp
+qp
+qp
+Vm
+UX
+Qp
+ne
+bI
+oX
+vO
+HW
+xw
+zb
+tT
+tT
+tT
+tT
+zB
+zb
+tT
+UG
+wQ
+EW
+bE
+bE
+bE
+aQ
+bU
+II
+iy
+Gj
+Fr
+Rl
+Gj
+iV
+iV
+iV
+iV
+vw
+MF
+AU
+sc
+bL
+Vs
+IQ
+TL
+Ol
+oR
+qA
+HA
+Ol
+IU
+IQ
+gN
+Jz
+Pj
+zi
+Gh
+JP
+JQ
+KS
+Fe
+ht
+is
+dj
+vv
+Ou
+oq
+oq
+JS
+Ed
+Ed
+Ed
+Cx
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(71,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+Ae
+Jh
+Jh
+Jh
+CA
+qp
+qp
+US
+qp
+qp
+qp
+Vm
+qp
+Qp
+Hf
+gO
+qF
+rc
+tJ
+aQ
+xU
+aQ
+aQ
+Aw
+Lz
+aQ
+BK
+aQ
+SZ
+Kw
+BK
+bE
+bE
+bE
+aQ
+QT
+nt
+iy
+Nf
+SQ
+TF
+Gj
+TO
+Vq
+WH
+yb
+iE
+vt
+Ki
+sc
+Vs
+Vs
+Vs
+TL
+Ol
+Ol
+rB
+Ol
+Ol
+mA
+sr
+HS
+sc
+AZ
+rb
+fv
+VC
+LC
+zg
+hK
+tz
+VC
+PE
+MC
+Mx
+oq
+oq
+oq
+os
+ou
+QJ
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(72,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+FH
+Rx
+eX
+NL
+SK
+SK
+Qp
+YU
+YU
+ja
+oP
+oP
+oP
+Fb
+oP
+dN
+UA
+Fj
+sO
+EJ
+rx
+rx
+Bz
+rx
+rx
+EJ
+nP
+nP
+ev
+nP
+nP
+uj
+DV
+dU
+Tv
+dU
+dU
+WO
+in
+bg
+in
+in
+yJ
+ZK
+ZK
+QE
+WN
+fS
+zz
+RT
+RX
+sc
+TL
+Vs
+rZ
+IQ
+Jg
+GP
+GP
+GP
+GP
+Zw
+TI
+lQ
+sc
+sc
+Bs
+XK
+th
+th
+ci
+th
+th
+th
+pB
+pK
+Mx
+Im
+Im
+Ko
+TA
+Ed
+Ed
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+gB
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(73,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+un
+eX
+NL
+Jh
+Jh
+Jh
+CA
+qp
+qp
+iN
+qp
+qp
+qp
+jC
+qp
+Qp
+qF
+mj
+qF
+EJ
+To
+pd
+mI
+OV
+SP
+EJ
+pV
+DI
+BQ
+Fc
+Br
+uj
+PC
+XJ
+fT
+rw
+at
+WO
+AX
+cP
+Yv
+in
+xg
+Rn
+Rn
+PJ
+Rn
+in
+nx
+XF
+Tx
+sc
+wS
+us
+VG
+NP
+bs
+Vs
+IQ
+wG
+Vs
+tq
+ZN
+TL
+wS
+sc
+th
+th
+OS
+Tr
+Zm
+iJ
+nN
+th
+Ff
+EF
+xA
+cs
+cs
+cA
+TA
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(74,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+Ae
+SK
+Jh
+Jh
+Jh
+Jh
+CA
+qp
+qp
+iN
+qp
+qp
+qp
+jC
+qp
+Qp
+Hf
+mp
+tV
+EJ
+Xa
+XG
+YQ
+yB
+AE
+EJ
+YC
+sA
+MG
+bx
+KG
+uj
+Po
+zo
+hu
+hu
+bO
+WO
+CR
+An
+eD
+in
+Qo
+ye
+Uk
+ij
+Tj
+in
+nx
+XF
+nx
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+SL
+Tr
+wN
+wN
+bQ
+zM
+PW
+th
+Zj
+Yc
+tG
+gM
+BB
+BB
+yj
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(75,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+ko
+af
+mM
+yd
+Jh
+Jh
+CA
+qp
+qp
+iN
+qp
+qp
+qp
+jC
+qp
+Qp
+qF
+mj
+qF
+EJ
+VE
+PR
+hp
+vi
+Tp
+EJ
+Xm
+ol
+mO
+tZ
+Gi
+uj
+pm
+gE
+Wq
+xY
+yI
+WO
+ky
+Ms
+kT
+yM
+MI
+iP
+rA
+DN
+YL
+in
+Wp
+HZ
+lY
+sc
+wS
+KM
+dS
+MK
+Wi
+sc
+vT
+QI
+yV
+oN
+uc
+ty
+Az
+th
+lu
+wN
+Ds
+qK
+FU
+qd
+Lx
+th
+nZ
+oy
+Qx
+Ed
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(76,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+NL
+Ae
+Op
+NL
+Jh
+Qp
+qp
+qp
+iN
+qp
+qp
+qp
+jC
+qp
+Qp
+qF
+mj
+qF
+EJ
+lk
+Gl
+vi
+vi
+FM
+EJ
+Jv
+Ot
+tZ
+tZ
+uV
+uj
+Bq
+WW
+xY
+xY
+ka
+WO
+Tl
+Wa
+wY
+in
+fO
+yo
+yo
+yo
+aK
+in
+nx
+Zt
+nx
+sc
+pA
+aj
+Dw
+Ce
+Ce
+VQ
+an
+an
+an
+kX
+eS
+QL
+eS
+sb
+oT
+HN
+Kx
+pS
+yp
+nN
+nN
+th
+ys
+pK
+Mx
+Ed
+SC
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(77,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Jh
+Ae
+NL
+NL
+NL
+Qp
+Qp
+bV
+eV
+qp
+qp
+qp
+gg
+qp
+Qp
+Cp
+na
+Cp
+EJ
+oD
+GR
+VB
+Jj
+FO
+EJ
+jM
+gs
+zv
+hU
+sC
+uj
+OK
+Aj
+SE
+Hv
+bj
+WO
+jD
+kN
+jh
+in
+zm
+Il
+do
+aH
+qZ
+in
+nx
+Zt
+nx
+sc
+wS
+tn
+lP
+st
+tX
+sc
+KU
+bW
+JO
+vS
+JJ
+NW
+WX
+th
+th
+th
+th
+th
+th
+th
+th
+th
+Hw
+pK
+Mx
+Ed
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(78,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Jh
+Ae
+Jh
+SK
+SK
+SK
+Qp
+Jx
+am
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+qF
+mj
+qF
+EJ
+EJ
+EJ
+EJ
+EJ
+EJ
+EJ
+uj
+uj
+uj
+uj
+uj
+uj
+WO
+WO
+WO
+WO
+WO
+WO
+in
+in
+in
+in
+Tk
+Rn
+Rn
+in
+in
+in
+sx
+bT
+sx
+sc
+sc
+sc
+sc
+sc
+sc
+sc
+Xr
+sI
+wv
+CT
+RQ
+Sk
+hF
+th
+qX
+nL
+Gv
+kt
+re
+RI
+RI
+Ed
+Uy
+Pc
+PA
+Ed
+Oc
+sM
+sM
+sM
+sM
+uq
+Vo
+uq
+sM
+sM
+sM
+sM
+sM
+Oc
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(79,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+Jh
+Ae
+Jh
+Jh
+SK
+SK
+SK
+Jx
+mR
+aS
+pE
+Ib
+Sb
+WF
+Jx
+Hf
+mp
+tV
+qF
+qF
+qF
+qF
+IV
+qF
+qF
+qF
+qF
+Oa
+qF
+qF
+qF
+IV
+qF
+qF
+qF
+qF
+aJ
+ow
+OE
+ow
+ow
+Nh
+ow
+ow
+OE
+ow
+ow
+ow
+CJ
+ow
+th
+ep
+Mp
+Uj
+Hc
+Tn
+qO
+HT
+lL
+HT
+IG
+Ax
+th
+th
+th
+SF
+pc
+pc
+ER
+RI
+YK
+YK
+Ed
+jP
+pK
+Mx
+uq
+uq
+uq
+jg
+jg
+uq
+uq
+rr
+uq
+uq
+jg
+jg
+jg
+uq
+uq
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(80,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Ae
+Jh
+Jh
+Jh
+SK
+SK
+ZQ
+mR
+aS
+Sb
+eR
+Sb
+Ay
+Jx
+zW
+Cw
+sd
+sd
+sd
+sd
+sd
+wy
+sd
+sd
+sd
+sd
+Df
+sd
+sd
+sd
+wy
+sd
+sd
+sd
+sd
+Rj
+FL
+aN
+FL
+FL
+OI
+eY
+eY
+WG
+eY
+eY
+eY
+hP
+sn
+pX
+Lb
+JK
+fM
+Ty
+gH
+th
+Ax
+th
+th
+ct
+th
+th
+Le
+TB
+pc
+pc
+pc
+pc
+YR
+YR
+xO
+gV
+YA
+MU
+vG
+BJ
+LI
+kW
+Kb
+Kb
+mq
+uq
+nB
+uq
+Ni
+Kb
+Kb
+Kb
+Kv
+uq
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(81,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+un
+eX
+NL
+Jh
+Jh
+Jh
+SK
+ZQ
+mR
+aS
+Sb
+bJ
+Sb
+aD
+Jx
+ne
+gm
+qF
+qF
+qF
+qF
+qF
+KF
+qF
+qF
+qF
+qF
+Cp
+qF
+qF
+qF
+KF
+qF
+qF
+qF
+hC
+aJ
+ow
+ZC
+ow
+ow
+Ks
+RG
+ow
+ZC
+ow
+ow
+ow
+CJ
+ow
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+sQ
+uT
+wo
+th
+jP
+BC
+en
+en
+en
+en
+cq
+lJ
+pb
+GE
+VN
+Cy
+SN
+mo
+pG
+QZ
+fW
+fW
+fW
+ex
+Ny
+XD
+df
+sP
+ZH
+vo
+Nx
+HP
+nh
+nh
+nh
+GT
+GT
+nh
+nh
+nh
+nh
+nh
+nh
+FI
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(82,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ae
+Jh
+SK
+Jh
+Jh
+Jh
+Jh
+ZQ
+Vi
+pq
+Ai
+HV
+Sb
+aD
+Jx
+dx
+qW
+dx
+dx
+dx
+dx
+dx
+dx
+dx
+dx
+dx
+dx
+Ec
+Ec
+Ec
+Ec
+Ec
+XB
+XB
+XB
+Bp
+me
+me
+me
+me
+me
+Pd
+me
+me
+me
+me
+me
+xR
+fE
+eQ
+Gk
+dE
+dE
+dE
+dE
+dE
+dE
+dE
+Gk
+Ge
+vb
+xj
+th
+WZ
+LP
+zy
+PX
+IW
+RN
+sU
+EN
+dr
+Ed
+Hi
+Be
+aG
+uq
+cy
+Jo
+vJ
+vJ
+vP
+oU
+hZ
+xC
+pl
+lC
+Dn
+tb
+LQ
+uq
+NL
+NL
+NL
+Ae
+Op
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(83,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+vQ
+af
+af
+yd
+Jh
+Jh
+Jh
+Jx
+qs
+aS
+Sb
+tF
+Sb
+Nz
+Jx
+FE
+sR
+FE
+Ef
+Ub
+Yj
+Yj
+Ef
+FE
+FE
+eE
+dx
+ch
+mF
+zF
+NZ
+Ec
+hO
+Gm
+yi
+BF
+Ev
+Io
+ut
+Ts
+Io
+QP
+xH
+OG
+xH
+Yx
+me
+ow
+CJ
+ow
+Gk
+dE
+dE
+dE
+dE
+dE
+dE
+dE
+Gk
+tQ
+Vt
+wd
+th
+Ed
+Cc
+Ed
+aA
+aA
+aA
+aA
+Ro
+OU
+OU
+OU
+XE
+OU
+OU
+OU
+uq
+jg
+jg
+uq
+jg
+jg
+jg
+uq
+uq
+uq
+NX
+uq
+uq
+NL
+NL
+NL
+Ae
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(84,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+ko
+VM
+NL
+ko
+yd
+SK
+SK
+Jx
+pL
+KV
+Sb
+tF
+Sb
+AQ
+Jx
+FE
+sR
+FE
+Ef
+GB
+Yj
+Yj
+Ef
+FE
+FE
+uE
+dx
+ku
+mF
+Vk
+mF
+Ec
+hr
+al
+ii
+Bp
+OM
+bS
+DZ
+WA
+WA
+nu
+WA
+AH
+zL
+xH
+me
+ow
+CJ
+ow
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+Gk
+th
+th
+th
+th
+ow
+ok
+ow
+aA
+yw
+bb
+Ob
+tH
+OU
+iC
+iC
+Nc
+iC
+iC
+OU
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Wu
+jg
+wm
+jg
+Wu
+NL
+NL
+NL
+Ae
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(85,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Ae
+NL
+Jh
+Jx
+Jx
+LV
+Sb
+xN
+Sb
+aS
+Jx
+Td
+TS
+YB
+hz
+hz
+Vx
+ac
+Ef
+FE
+FE
+UF
+dx
+uM
+mF
+xo
+mF
+Ec
+kp
+bm
+ii
+Bp
+rH
+oC
+me
+aB
+me
+Ug
+aB
+me
+hE
+yf
+me
+ow
+CJ
+ow
+ow
+ow
+OE
+ow
+ow
+ow
+CH
+ow
+ow
+ow
+ow
+OE
+ow
+ow
+ok
+ow
+aA
+wK
+za
+fz
+jd
+OU
+rh
+rh
+uW
+rh
+rh
+OU
+Se
+pT
+pT
+pT
+pT
+pT
+pT
+pT
+iZ
+uq
+yS
+uq
+qE
+pT
+pT
+pT
+kk
+Jh
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(86,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+Ae
+NL
+Jh
+Jh
+Jx
+Jx
+sj
+Ti
+Nj
+GJ
+Jx
+fD
+sR
+FE
+Ef
+Ef
+ir
+Ef
+Ef
+FE
+Rg
+FE
+dx
+Mr
+mF
+ip
+mF
+Ec
+RE
+bh
+RE
+me
+br
+qf
+me
+dk
+Ys
+Hh
+eb
+tC
+Rq
+dE
+Yg
+Pa
+wR
+Yy
+Yy
+Yy
+kj
+Yy
+Yy
+Yy
+Ap
+mS
+mS
+mS
+mS
+db
+mS
+mS
+Rz
+Vp
+aA
+RH
+rn
+FR
+wW
+OU
+zJ
+CY
+cI
+CY
+kY
+OU
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+SK
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(87,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+EV
+af
+yd
+Jh
+Jh
+Jx
+Jx
+Mc
+aS
+em
+Jx
+Ue
+sR
+FE
+Ef
+Yj
+OR
+lA
+Ef
+FE
+FE
+ov
+dx
+Du
+Xb
+QW
+DW
+IS
+hB
+HL
+hB
+hB
+hB
+pt
+aB
+Mw
+hy
+ON
+Xd
+Ja
+Ly
+dE
+Yg
+ow
+Pa
+ow
+ow
+ow
+ZC
+ow
+ow
+ow
+uX
+ow
+ow
+ow
+ow
+ZC
+ow
+ow
+ZM
+ow
+aA
+ej
+za
+fz
+Jk
+OU
+rm
+uz
+Eh
+mn
+Av
+OU
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+vE
+sM
+sM
+sM
+sM
+sM
+UR
+af
+af
+yd
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(88,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+ko
+VM
+ko
+af
+af
+af
+Kr
+Rh
+Jx
+du
+Jx
+EZ
+yy
+FD
+EZ
+EZ
+EZ
+EZ
+EZ
+EZ
+FD
+FD
+EZ
+CC
+CC
+CC
+CC
+CC
+Vg
+Vg
+RE
+RE
+xH
+DE
+me
+od
+wM
+SV
+LR
+me
+tk
+qS
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Bg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+ff
+Yg
+aA
+nr
+lT
+gR
+Px
+OU
+zr
+zr
+Vb
+zr
+zr
+OU
+hk
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+Ae
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(89,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+SK
+Jh
+Jh
+Vg
+ym
+QV
+cL
+zf
+ul
+zf
+zf
+zf
+Ri
+tc
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+UU
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+ez
+xH
+DE
+me
+me
+xu
+nf
+me
+me
+Gq
+ET
+ET
+uY
+uY
+As
+if
+mK
+if
+AT
+if
+if
+Ne
+iS
+iS
+Kz
+iS
+FG
+JW
+Ld
+KD
+vy
+aA
+aA
+aA
+aA
+aA
+OU
+oS
+oS
+Mi
+oS
+oS
+OU
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+Ae
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(90,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+RE
+RE
+Kq
+TP
+DQ
+DQ
+DQ
+DQ
+DQ
+WB
+TP
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+Mu
+zA
+Ln
+Ln
+Ln
+Ln
+Ln
+RK
+hB
+In
+me
+NL
+NL
+qy
+NL
+Yg
+dE
+ZJ
+le
+ww
+ww
+MB
+Kt
+iv
+dE
+UQ
+dE
+HF
+nD
+BG
+LY
+LY
+LY
+Gc
+lF
+Wr
+MW
+LY
+pz
+aw
+aw
+zV
+jp
+OU
+OU
+OU
+OU
+OU
+OU
+OU
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+Ae
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(91,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+RE
+Vg
+hT
+RE
+Vg
+Vg
+RE
+RE
+RE
+hT
+RE
+RE
+Vg
+Vg
+RE
+RE
+RE
+RE
+RE
+RE
+Vg
+Vg
+RE
+RE
+me
+me
+me
+NL
+NL
+we
+NL
+Yg
+Yg
+Yg
+Yg
+ki
+ki
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+vq
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+Yg
+ki
+ki
+Yg
+hQ
+lq
+lq
+rq
+lq
+lq
+NU
+lq
+lq
+lq
+Kk
+hQ
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+Op
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(92,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+qy
+SK
+Jh
+Jh
+Jh
+Jh
+Jh
+qy
+SK
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+SK
+Ae
+Jh
+NL
+NL
+NL
+Jh
+Jh
+SK
+SK
+Jh
+Jh
+hQ
+lq
+lq
+rq
+lq
+aa
+Bn
+lq
+lq
+Yo
+MH
+hQ
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(93,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+qb
+Ox
+xm
+xm
+xm
+xm
+xm
+xm
+TV
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Ae
+SK
+NL
+NL
+NL
+Jh
+SK
+SK
+Jh
+Jh
+Jh
+hQ
+uD
+Qv
+Al
+VZ
+tu
+lq
+nT
+xE
+YS
+Ho
+hQ
+hk
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(94,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+uH
+OJ
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+hQ
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+SK
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(95,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+we
+qy
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+SK
+SK
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+SK
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(96,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+qy
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+SK
+SK
+SK
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Iz
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+sM
+IK
+Jh
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(97,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+EU
+xm
+xm
+xm
+xm
+xm
+xm
+xm
+xm
+iY
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+dh
+PT
+PT
+PT
+PT
+PT
+PT
+PT
+PT
+PT
+PT
+va
+nh
+nh
+nh
+nh
+FI
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(98,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+un
+af
+Rx
+af
+af
+af
+af
+af
+ew
+af
+Rx
+af
+af
+af
+af
+af
+af
+af
+af
+Rx
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+Rx
+af
+af
+af
+af
+af
+af
+af
+Rx
+af
+af
+af
+LW
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(99,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+Ae
+NL
+Op
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Op
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Op
+NL
+SK
+SK
+SK
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+ko
+af
+af
+af
+af
+af
+yd
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(100,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+FH
+af
+af
+af
+eX
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Ae
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+NL
+Ae
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(101,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+Op
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Op
+NL
+NL
+NL
+NL
+NL
+SK
+SK
+NL
+NL
+Op
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(102,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+NL
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(103,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(104,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+sE
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(105,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(106,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(107,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(108,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(109,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(110,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(111,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(112,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(113,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(114,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(115,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(116,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(117,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(118,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(119,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(120,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Lr
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(121,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(122,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(123,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(124,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(125,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(126,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(127,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(128,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(129,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(130,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(131,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(132,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(133,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(134,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(135,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(136,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(137,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(138,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(139,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
+(140,1,1) = {"
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+Jh
+"}
diff --git a/maps/stellardelight/stellar_delight_areas.dm b/maps/stellardelight/stellar_delight_areas.dm
new file mode 100644
index 0000000000..f16341cb3e
--- /dev/null
+++ b/maps/stellardelight/stellar_delight_areas.dm
@@ -0,0 +1,295 @@
+/area/stellardelight
+ name = "Stellar Delight"
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "blublatri"
+ requires_power = TRUE
+ dynamic_lighting = TRUE
+
+/area/maintenance/stellardelight
+ name = "maintenance"
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "purblasqu"
+ flags = RAD_SHIELDED
+ ambience = AMBIENCE_MAINTENANCE
+
+/area/maintenance/stellardelight/substation/atmospherics
+ name = "Atmospherics Substation"
+/area/maintenance/stellardelight/substation/cargo
+ name = "Cargo Substation"
+/area/maintenance/stellardelight/substation/civilian
+ name = "Civilian Substation"
+/area/maintenance/stellardelight/substation/command
+ name = "Command Substation"
+/area/maintenance/stellardelight/substation/engineering
+ name = "Engineering Substation"
+/area/maintenance/stellardelight/substation/exploration
+ name = "Exploration Substation"
+/area/maintenance/stellardelight/substation/medical
+ name = "Medical Substation"
+/area/maintenance/stellardelight/substation/research
+ name = "Research Substation"
+/area/maintenance/stellardelight/substation/security
+ name = "Security Substation"
+
+/area/maintenance/stellardelight/deck1
+ icon_state = "deckmaint1"
+
+/area/maintenance/stellardelight/deck1/portfore
+ name = "deck one port forward maintenance"
+/area/maintenance/stellardelight/deck1/starboardfore
+ name = "deck one starboard forward maintenance"
+/area/maintenance/stellardelight/deck1/portcent
+ name = "deck one port center maintenance"
+/area/maintenance/stellardelight/deck1/starboardcent
+ name = "deck one starboard center maintenance"
+/area/maintenance/stellardelight/deck1/portaft
+ name = "deck one port aft maintenance"
+/area/maintenance/stellardelight/deck1/exploration
+ name = "exploration maintenance"
+/area/maintenance/stellardelight/deck1/starboardaft
+ name = "deck one starboard aft maintenance"
+
+/area/maintenance/stellardelight/deck2
+ icon_state = "deckmaint2"
+
+/area/maintenance/stellardelight/deck2/portfore
+ name = "deck two port forward maintenance"
+/area/maintenance/stellardelight/deck2/starboardfore
+ name = "deck one starboard forward maintenance"
+/area/maintenance/stellardelight/deck2/portaft
+ name = "deck two port aft maintenance"
+/area/maintenance/stellardelight/deck2/starboardaft
+ name = "deck one starboard aft maintenance"
+/area/maintenance/stellardelight/deck2/portsolars
+ name = "deck two port solar array"
+/area/maintenance/stellardelight/deck2/starboardsolars
+ name = "deck one starboard solar array"
+/area/maintenance/stellardelight/deck2/atmos
+ name = "atmospherics maintenance"
+
+
+/area/maintenance/stellardelight/deck3
+ icon_state = "deckmaint3"
+
+/area/maintenance/stellardelight/deck3/portfore
+ name = "deck three port forward maintenance"
+/area/maintenance/stellardelight/deck3/starboardfore
+ name = "deck three starboard forward maintenance"
+/area/maintenance/stellardelight/deck3/portcent
+ name = "deck three port central maintenance"
+/area/maintenance/stellardelight/deck3/starboardcent
+ name = "deck three starboard central maintenance"
+/area/maintenance/stellardelight/deck3/portaft
+ name = "deck three port aft maintenance"
+/area/maintenance/stellardelight/deck3/starboardaft
+ name = "deck three starboard aft maintenance"
+
+/area/maintenance/stellardelight/deck3/foreportrooma
+ name = "deck three forward port construction a"
+/area/maintenance/stellardelight/deck3/foreportroomb
+ name = "deck three forward port construction b"
+/area/maintenance/stellardelight/deck3/forestarrooma
+ name = "deck three forward starboard construction a"
+/area/maintenance/stellardelight/deck3/forestarroomb
+ name = "deck three forward starboard construction b"
+/area/maintenance/stellardelight/deck3/forestarroomc
+ name = "deck three forward starboard construction c"
+/area/maintenance/stellardelight/deck3/aftstarroom
+ name = "deck three aft starboard construction "
+
+
+/area/maintenance/stellardelight/deck3/portfore
+/area/maintenance/stellardelight/deck3/starboardfore
+
+
+/area/stellardelight/deck1
+ name = "Deck One"
+ icon_state = "deck1"
+
+/area/stellardelight/deck1/fore
+ name = "Deck One Fore"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck1/port
+ name = "Deck One Port"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck1/starboard
+ name = "Deck One Starboard"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck1/aft
+ name = "Deck One Aft"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck1/dorms
+ name = "Dormitory"
+ sound_env = SMALL_SOFTFLOOR
+ flags = RAD_SHIELDED| BLUE_SHIELDED |AREA_FLAG_IS_NOT_PERSISTENT
+ soundproofed = TRUE
+ limit_mob_size = FALSE
+ block_suit_sensors = TRUE
+
+/area/stellardelight/deck1/dorms/dorm1
+ name = "Dormitory One"
+ icon_state = "dorm1"
+/area/stellardelight/deck1/dorms/dorm2
+ name = "Dormitory Two"
+ icon_state = "dorm2"
+/area/stellardelight/deck1/dorms/dorm3
+ name = "Dormitory Three"
+ icon_state = "dorm3"
+/area/stellardelight/deck1/dorms/dorm4
+ name = "Dormitory Four"
+ icon_state = "dorm4"
+/area/stellardelight/deck1/dorms/dorm5
+ name = "Dormitory Five"
+ icon_state = "dorm5"
+/area/stellardelight/deck1/dorms/dorm6
+ name = "Dormitory Six"
+ icon_state = "dorm6"
+/area/stellardelight/deck1/dorms/dorm7
+ name = "Dormitory Seven"
+ icon_state = "dorm7"
+/area/stellardelight/deck1/dorms/dorm8
+ name = "Dormitory Eight"
+ icon_state = "dorm8"
+
+/area/stellardelight/deck1/researchequip
+ name = "Research Equipment"
+/area/stellardelight/deck1/researchhall
+ name = "Research Hallway"
+/area/stellardelight/deck1/researchserver
+ name = "Research Server Room"
+
+/area/stellardelight/deck1/shower
+ name = "Showers"
+
+/area/stellardelight/deck1/mining
+ name = "Mining Hallway"
+/area/stellardelight/deck1/oreprocessing
+ name = "Ore Processing"
+/area/stellardelight/deck1/miningequipment
+ name = "Mining Equipment"
+
+/area/stellardelight/deck1/shuttlebay
+ name = "Shuttle Bay"
+ ambience = AMBIENCE_HANGAR
+ sound_env = LARGE_ENCLOSED
+/area/stellardelight/deck1/miningshuttle
+ name = "Mining Shuttle"
+/area/stellardelight/deck1/exploshuttle
+ name = "Exploration Shuttle"
+
+/area/stellardelight/deck1/exploration
+ name = "Exploration Hallway"
+/area/stellardelight/deck1/exploequipment
+ name = "Exploration Equipment"
+/area/stellardelight/deck1/explobriefing
+ name = "Exploration Briefing"
+/area/stellardelight/deck1/pathfinder
+ name = "Pathfinder"
+
+/area/stellardelight/deck1/pilot
+ name = "Pilot Equipment"
+
+/area/stellardelight/deck1/resleeving
+ name = "Resleeving Lab"
+/area/stellardelight/deck1/paramedic
+ name = "Paramedic Equipment"
+/area/stellardelight/deck1/lowermed
+ name = "Lower Medical"
+
+
+/area/stellardelight/deck2
+ name = "Deck Two"
+ icon_state = "deck2"
+
+/area/stellardelight/deck2/fore
+ name = "Deck Two Fore"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck2/port
+ name = "Deck Two Port"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck2/starboard
+ name = "Deck Two Starboard"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck2/aftport
+ name = "Deck Two Aft Port"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck2/aftstarboard
+ name = "Deck Two Aft Starboard"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck2/central
+ name = "Deck Two Central"
+ sound_env = LARGE_ENCLOSED
+
+/area/stellardelight/deck2/barbackroom
+ name = "Bar Backroom"
+ sound_env = SMALL_SOFTFLOOR
+
+/area/stellardelight/deck2/portescape
+ name = "Port Escape Pod"
+ requires_power = FALSE
+/area/stellardelight/deck2/starboardescape
+ name = "Starboard Escape Pod"
+ requires_power = FALSE
+
+/area/stellardelight/deck2/o2production
+ name = "O2 Production"
+ ambience = AMBIENCE_ATMOS
+/area/stellardelight/deck2/fuelstorage
+ name = "Primary Fuel Storage"
+ ambience = AMBIENCE_ATMOS
+/area/stellardelight/deck2/combustionworkshop
+ name = "Combustion Workshop"
+ ambience = AMBIENCE_ATMOS
+
+/area/stellardelight/deck2/triage
+ name = "Triage"
+
+/area/stellardelight/deck2/briefingroom
+ name = "Command Briefing Room"
+ sound_env = SMALL_SOFTFLOOR
+
+/area/stellardelight/deck3
+ name = "Deck Three"
+ icon_state = "deck3"
+
+/area/stellardelight/deck3/aft
+ name = "Deck Three Aft"
+ ambience = AMBIENCE_ARRIVALS
+/area/stellardelight/deck3/cafe
+ name = "Cafe"
+/area/stellardelight/deck3/commandhall
+ name = "Command Office Hallway"
+
+/area/stellardelight/deck3/transitgateway
+ name = "Transit Gateway"
+/area/stellardelight/deck3/cryo
+ name = "Cryogenic Storage"
+
+/area/stellardelight/deck3/readingroom
+ name = "Reading Rooms"
+ sound_env = SMALL_SOFTFLOOR
+
+/area/stellardelight/deck3/portdock
+ name = "Port Dock"
+ ambience = AMBIENCE_ARRIVALS
+
+/area/stellardelight/deck3/starboarddock
+ name = "Starboard Dock"
+ ambience = AMBIENCE_ARRIVALS
+
+/area/stellardelight/deck1/exterior
+ name = "Deck One Exterior"
+/area/stellardelight/deck2/exterior
+ name = "Deck Two Exterior"
+/area/stellardelight/deck3/exterior
+ name = "Deck Three Exterior"
+
diff --git a/maps/stellardelight/stellar_delight_defines.dm b/maps/stellardelight/stellar_delight_defines.dm
new file mode 100644
index 0000000000..5700d7f99b
--- /dev/null
+++ b/maps/stellardelight/stellar_delight_defines.dm
@@ -0,0 +1,699 @@
+//Normal map defs
+#define Z_LEVEL_SHIP_LOW 1
+#define Z_LEVEL_SHIP_MID 2
+#define Z_LEVEL_SHIP_HIGH 3
+#define Z_LEVEL_CENTCOM 4
+#define Z_LEVEL_MISC 5
+#define Z_LEVEL_BEACH 6
+#define Z_LEVEL_BEACH_CAVE 7
+#define Z_LEVEL_AEROSTAT 8
+#define Z_LEVEL_AEROSTAT_SURFACE 9
+#define Z_LEVEL_DEBRISFIELD 10
+#define Z_LEVEL_FUELDEPOT 11
+#define Z_LEVEL_OVERMAP 12
+#define Z_LEVEL_OFFMAP1 13
+#define Z_LEVEL_GATEWAY 14
+
+//Camera networks
+#define NETWORK_HALLS "Halls"
+#define NETWORK_TCOMMS "Telecommunications" //Using different from Polaris one for better name
+#define NETWORK_OUTSIDE "Outside"
+#define NETWORK_EXPLORATION "Exploration"
+#define NETWORK_XENOBIO "Xenobiology"
+
+/datum/map/stellar_delight/New()
+ ..()
+ var/choice = pickweight(list(
+ "logo1" = 50,
+ "logo2" = 50,
+ "gateway" = 5,
+ "youcanttaketheskyfromme" = 200
+ ))
+ if(choice)
+ lobby_screens = list(choice)
+
+/datum/map/stellar_delight
+ name = "Virgo"
+ full_name = "NRV Stellar Delight"
+ path = "stellardelight"
+
+ use_overmap = TRUE
+ overmap_z = Z_LEVEL_OVERMAP
+ overmap_size = 99
+ overmap_event_areas = 200
+ usable_email_tlds = list("virgo.nt")
+
+ zlevel_datum_type = /datum/map_z_level/stellar_delight
+
+ lobby_icon = 'icons/misc/title_vr.dmi'
+ lobby_screens = list("youcanttaketheskyfromme")
+ id_hud_icons = 'icons/mob/hud_jobs_vr.dmi'
+
+ accessible_z_levels = list(
+ Z_LEVEL_SHIP_LOW = 100,
+ Z_LEVEL_SHIP_MID = 100,
+ Z_LEVEL_SHIP_HIGH = 100
+ )
+
+/*
+ holomap_smoosh = list(list(
+ Z_LEVEL_SURFACE_LOW,
+ Z_LEVEL_SURFACE_MID,
+ Z_LEVEL_SURFACE_HIGH))
+*/
+ station_name = "NRV Stellar Delight"
+ station_short = "Stellar Delight"
+ dock_name = "Virgo-3B Colony"
+ dock_type = "surface"
+ boss_name = "Central Command"
+ boss_short = "CentCom"
+ company_name = "NanoTrasen"
+ company_short = "NT"
+ starsys_name = "Virgo-Erigone"
+
+ shuttle_docked_message = "The scheduled shuttle to the %dock_name% has arrived. It will depart in approximately %ETD%."
+ shuttle_leaving_dock = "The shuttle has departed. Estimate %ETA% until arrival at %dock_name%."
+ shuttle_called_message = "A scheduled crew transfer to the %dock_name% is occuring. The shuttle will arrive shortly. Those departing should proceed to deck three, aft within %ETA%."
+ shuttle_recall_message = "The scheduled crew transfer has been cancelled."
+ shuttle_name = "Evacuation Shuttle"
+ emergency_shuttle_docked_message = "The evacuation shuttle has arrived. You have approximately %ETD% to board the shuttle."
+ emergency_shuttle_leaving_dock = "The emergency shuttle has departed. Estimate %ETA% until arrival at %dock_name%."
+ emergency_shuttle_called_message = "An emergency evacuation has begun, and an off-schedule shuttle has been called. It will arrive at deck three, aft in approximately %ETA%."
+ emergency_shuttle_recall_message = "The evacuation shuttle has been recalled."
+
+ station_networks = list(
+ NETWORK_CARGO,
+ NETWORK_CIRCUITS,
+ NETWORK_CIVILIAN,
+ NETWORK_COMMAND,
+ NETWORK_ENGINE,
+ NETWORK_ENGINEERING,
+ NETWORK_EXPLORATION,
+ NETWORK_MEDICAL,
+ NETWORK_MINE,
+ NETWORK_OUTSIDE,
+ NETWORK_RESEARCH,
+ NETWORK_RESEARCH_OUTPOST,
+ NETWORK_ROBOTS,
+ NETWORK_SECURITY,
+ NETWORK_TELECOM,
+ NETWORK_HALLS
+ )
+ secondary_networks = list(
+ NETWORK_ERT,
+ NETWORK_MERCENARY,
+ NETWORK_THUNDER,
+ NETWORK_COMMUNICATORS,
+ NETWORK_ALARM_ATMOS,
+ NETWORK_ALARM_POWER,
+ NETWORK_ALARM_FIRE,
+ NETWORK_TALON_HELMETS,
+ NETWORK_TALON_SHIP
+ )
+
+ bot_patrolling = FALSE
+
+ allowed_spawns = list("Gateway","Cryogenic Storage","Cyborg Storage","ITV Talon Cryo")
+ spawnpoint_died = /datum/spawnpoint/cryo
+ spawnpoint_left = /datum/spawnpoint/gateway
+ spawnpoint_stayed = /datum/spawnpoint/cryo
+
+ /*
+ meteor_strike_areas = list(/area/tether/surfacebase/outside/outside3)
+ */
+
+ default_skybox = /datum/skybox_settings/stellar_delight
+
+ unit_test_exempt_areas = list()
+
+ unit_test_exempt_from_atmos = list() //it maint
+
+
+ lateload_z_levels = list(
+ list("Ship - Central Command"),
+ list("Ship - Misc"), //Shuttle transit zones, holodeck templates, etc
+ list("Desert Planet - Z1 Beach","Desert Planet - Z2 Cave"),
+ list("Remmi Aerostat - Z1 Aerostat","Remmi Aerostat - Z2 Surface"),
+ list("Debris Field - Z1 Space"),
+ list("Fuel Depot - Z1 Space"),
+ list("Overmap"),
+ list("Offmap Ship - Talon V2")
+ )
+
+ lateload_single_pick = list(
+ list("Carp Farm"),
+ list("Snow Field"),
+ list("Listening Post"),
+ list(list("Honleth Highlands A", "Honleth Highlands B")),
+ list("Arynthi Lake Underground A","Arynthi Lake A"),
+ list("Arynthi Lake Underground B","Arynthi Lake B"),
+ list("Eggnog Town Underground","Eggnog Town"),
+ list("Wild West")
+ )
+
+ ai_shell_restricted = TRUE
+ ai_shell_allowed_levels = list(
+ Z_LEVEL_SHIP_LOW,
+ Z_LEVEL_SHIP_MID,
+ Z_LEVEL_SHIP_HIGH,
+ Z_LEVEL_MISC,
+ Z_LEVEL_BEACH,
+ Z_LEVEL_AEROSTAT
+ )
+
+/*
+ belter_docked_z = list(Z_LEVEL_SPACE_LOW)
+ belter_transit_z = list(Z_LEVEL_MISC)
+ belter_belt_z = list(Z_LEVEL_ROGUEMINE_1,
+ Z_LEVEL_ROGUEMINE_2)
+
+ mining_station_z = list(Z_LEVEL_SPACE_LOW)
+ mining_outpost_z = list(Z_LEVEL_SURFACE_MINE)
+*/
+ lateload_single_pick = null //Nothing right now.
+
+ planet_datums_to_make = list(/datum/planet/virgo3b,
+ /datum/planet/virgo4)
+
+/datum/map/stellar_delight/get_map_info()
+ . = list()
+ . += "The [full_name] is a recently commissioned multi-role starship assigned to patrol the Virgo-Erigone system. Its mission is flexible, being a response vessel, the [station_short] is assigned to respond to emergencies in the system, and to investigate anomalous activities where a more specialized vessel is unavailable.
"
+ . += "Humanity has spread across the stars and has met many species on similar or even more advanced terms than them - it's a brave new world and many try to find their place in it .
"
+ . += "Though Virgo-Erigone is not important for the great movers and shakers, it sees itself in the midst of the interests of a reviving alien species of the Zorren, corporate and subversive interests and other exciting dangers the Periphery has to face.
"
+ . += "As an employee or contractor of NanoTrasen, operators of the Adephagia and one of the galaxy's largest corporations, you're probably just here to do a job."
+ return jointext(., "
")
+
+/*
+/datum/map/stellar_delight/perform_map_generation()
+
+ new /datum/random_map/automata/cave_system/no_cracks(null, 1, 1, Z_LEVEL_SURFACE_MINE, world.maxx, world.maxy) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_SURFACE_MINE, 64, 64) // Create the mining ore distribution map.
+
+ new /datum/random_map/automata/cave_system/no_cracks(null, 1, 1, Z_LEVEL_SOLARS, world.maxx, world.maxy) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_SOLARS, 64, 64) // Create the mining ore distribution map.
+
+ return 1
+*/
+
+/datum/skybox_settings/stellar_delight
+ icon_state = "space5"
+ use_stars = FALSE
+
+/datum/planet/virgo3b
+ expected_z_levels = list(Z_LEVEL_CENTCOM)
+/datum/planet/virgo4
+ expected_z_levels = list(
+ Z_LEVEL_BEACH
+ )
+
+// For making the 6-in-1 holomap, we calculate some offsets
+#define SHIP_MAP_SIZE 140 // Width and height of compiled in tether z levels.
+#define SHIP_HOLOMAP_CENTER_GUTTER 40 // 40px central gutter between columns
+#define SHIP_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*TETHER_MAP_SIZE) - TETHER_HOLOMAP_CENTER_GUTTER) / 2) // 80
+#define SHIP_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (2*TETHER_MAP_SIZE)) / 2) // 30
+
+/obj/effect/landmark/map_data/stellar_delight
+ height = 3
+
+/obj/effect/overmap/visitable/ship/stellar_delight
+ name = "NRV Stellar Delight"
+ icon = 'icons/obj/overmap_vr.dmi'
+ icon_state = "stellar_delight_g"
+ desc = "Spacefaring vessel. Friendly IFF detected."
+ scanner_desc = @{"[i]Registration[/i]: NRV Stellar Delight
+[i]Class[/i]: Nanotrasen Response Vessel
+[i]Transponder[/i]: Transmitting (CIV), non-hostile"
+[b]Notice[/b]: A response vessel registered to Nanotrasen."}
+ vessel_mass = 25000
+ vessel_size = SHIP_SIZE_LARGE
+ initial_generic_waypoints = list("starboard_shuttlepad","port_shuttlepad","sd-1-23-54","sd-1-67-15","sd-1-70-130","sd-1-115-85","sd-2-25-98","sd-2-117-98","sd-3-22-78","sd-3-36-33","sd-3-104-33","sd-3-120-78")
+ initial_restricted_waypoints = list("Exploration Shuttle" = list("sd_explo"), "Mining Shuttle" = list("sd_mining"))
+ levels_for_distress = list(Z_LEVEL_OFFMAP1, Z_LEVEL_BEACH, Z_LEVEL_AEROSTAT, Z_LEVEL_DEBRISFIELD, Z_LEVEL_FUELDEPOT)
+ unowned_areas = list(/area/shuttle/sdboat)
+ known = TRUE
+ start_x = 2
+ start_y = 2
+
+ fore_dir = NORTH
+
+ skybox_icon = 'stelardelightskybox.dmi'
+ skybox_icon_state = "skybox"
+ skybox_pixel_x = 450
+ skybox_pixel_y = 200
+
+/obj/effect/overmap/visitable/ship/stellar_delight/build_skybox_representation()
+ ..()
+ if(!cached_skybox_image)
+ return
+ cached_skybox_image.add_overlay("glow")
+
+
+// We have a bunch of stuff common to the station z levels
+/datum/map_z_level/stellar_delight
+ flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_XENOARCH_EXEMPT|MAP_LEVEL_PERSIST
+ holomap_legend_x = 220
+ holomap_legend_y = 160
+
+/datum/map_z_level/stellar_delight/deck_one
+ z = Z_LEVEL_SHIP_LOW
+ name = "Deck 1"
+ base_turf = /turf/space
+ transit_chance = 100
+
+/datum/map_z_level/stellar_delight/deck_two
+ z = Z_LEVEL_SHIP_MID
+ name = "Deck 2"
+ base_turf = /turf/simulated/open
+ transit_chance = 100
+
+/datum/map_z_level/stellar_delight/deck_three
+ z = Z_LEVEL_SHIP_HIGH
+ name = "Deck 3"
+ base_turf = /turf/simulated/open
+ transit_chance = 100
+
+/datum/map_template/ship_lateload
+ allow_duplicates = FALSE
+ var/associated_map_datum
+
+/////STATIC LATELOAD/////
+
+/datum/map_template/ship_lateload/on_map_loaded(z)
+ if(!associated_map_datum || !ispath(associated_map_datum))
+ log_game("Extra z-level [src] has no associated map datum")
+ return
+
+ new associated_map_datum(using_map, z)
+
+/datum/map_template/ship_lateload/ship_centcom
+ name = "Ship - Central Command"
+ desc = "Central Command lives here!"
+ mappath = 'ship_centcom.dmm'
+
+ associated_map_datum = /datum/map_z_level/ship_lateload/ship_centcom
+
+/datum/map_z_level/ship_lateload/ship_centcom
+ z = Z_LEVEL_CENTCOM
+ name = "Centcom"
+ flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/area/centcom //Just to try to make sure there's not space!!!
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/datum/map_template/ship_lateload/ship_misc
+ name = "Ship - Misc"
+ desc = "Misc areas, like some transit areas, holodecks, merc area."
+ mappath = 'ship_misc.dmm'
+
+ associated_map_datum = /datum/map_z_level/ship_lateload/misc
+
+/datum/map_z_level/ship_lateload/misc
+ z = Z_LEVEL_MISC
+ name = "Misc"
+ flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT
+
+/datum/map_template/ship_lateload/overmap
+ name = "Overmap"
+ desc = "Overmap lives here :3"
+ mappath = 'overmap.dmm'
+
+ associated_map_datum = /datum/map_z_level/ship_lateload/overmap
+
+/datum/map_z_level/ship_lateload/overmap
+ z = Z_LEVEL_OVERMAP
+ name = "Overmap"
+ flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT
+
+#include "../expedition_vr/aerostat/_aerostat_science_outpost.dm"
+/datum/map_template/common_lateload/away_aerostat
+ name = "Remmi Aerostat - Z1 Aerostat"
+ desc = "The Virgo 2 Aerostat away mission."
+ mappath = 'maps/expedition_vr/aerostat/aerostat_science_outpost.dmm'
+ associated_map_datum = /datum/map_z_level/common_lateload/away_aerostat
+
+
+
+////////////////SHUTTLE TIME///////////////////
+
+//////////////////////////////////////////////////////////////
+// Escape shuttle and pods
+/datum/shuttle/autodock/ferry/emergency/escape
+ name = "Escape"
+ location = FERRY_LOCATION_OFFSITE
+ shuttle_area = /area/shuttle/escape
+ warmup_time = 10
+ landmark_offsite = "escape_cc"
+ landmark_station = "escape_station"
+ landmark_transition = "escape_transit"
+ move_time = SHUTTLE_TRANSIT_DURATION_RETURN
+ move_direction = SOUTH
+ docking_controller_tag = "escape_shuttle"
+
+/datum/shuttle/autodock/ferry/escape_pod/portescape
+ name = "Port Escape Pod"
+ location = FERRY_LOCATION_STATION
+ shuttle_area = /area/stellardelight/deck2/portescape
+ warmup_time = 0
+ landmark_station = "port_ship_berth"
+ landmark_offsite = "port_escape_cc"
+ landmark_transition = "port_escape_transit"
+ docking_controller_tag = "port_escape_pod"
+ move_time = SHUTTLE_TRANSIT_DURATION_RETURN
+ move_direction = EAST
+
+/datum/shuttle/autodock/ferry/escape_pod/starboardescape
+ name = "Starboard Escape Pod"
+ location = FERRY_LOCATION_STATION
+ shuttle_area = /area/stellardelight/deck2/starboardescape
+ warmup_time = 0
+ landmark_station = "starboard_ship_berth"
+ landmark_offsite = "starboard_escape_cc"
+ landmark_transition = "starboard_escape_transit"
+ docking_controller_tag = "starboard_escape_pod"
+ move_time = SHUTTLE_TRANSIT_DURATION_RETURN
+ move_direction = WEST
+
+
+//////////////////////////////////////////////////////////////
+// Supply shuttle
+/datum/shuttle/autodock/ferry/supply/cargo
+ name = "Supply"
+ location = FERRY_LOCATION_OFFSITE
+ shuttle_area = /area/shuttle/supply
+ warmup_time = 10
+ landmark_offsite = "supply_cc"
+ landmark_station = "supply_station"
+ docking_controller_tag = "supply_shuttle"
+ flags = SHUTTLE_FLAGS_PROCESS|SHUTTLE_FLAGS_SUPPLY
+ move_direction = WEST
+
+/////EXPLORATION SHUTTLE
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration
+ name = "boat control console"
+ shuttle_tag = "Exploration Shuttle"
+ req_one_access = null
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/exploration
+ name = "Exploration Shuttle Landing Pad"
+ base_area = /area/stellardelight/deck1/shuttlebay
+ base_turf = /turf/simulated/floor/reinforced
+ landmark_tag = "sd_explo"
+ docking_controller = "explodocker_bay"
+ shuttle_type = /datum/shuttle/autodock/overmap/exboat
+
+// The 'shuttle'
+/datum/shuttle/autodock/overmap/exboat
+ name = "Exploration Shuttle"
+ current_location = "sd_explo"
+ docking_controller_tag = "explodocker"
+ shuttle_area = /area/stellardelight/deck1/exploshuttle
+ fuel_consumption = 0
+ defer_initialisation = TRUE
+ range = 1
+
+/////MINING SHUTTLE
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/stellardelight/mining
+ name = "boat control console"
+ shuttle_tag = "Mining Shuttle"
+ req_one_access = null
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/mining
+ name = "Mining Shuttle Landing Pad"
+ base_area = /area/stellardelight/deck1/shuttlebay
+ base_turf = /turf/simulated/floor/reinforced
+ landmark_tag = "sd_mining"
+ docking_controller = "miningdocker_bay"
+ shuttle_type = /datum/shuttle/autodock/overmap/mineboat
+
+// The 'shuttle'
+/datum/shuttle/autodock/overmap/mineboat
+ name = "Mining Shuttle"
+ current_location = "sd_mining"
+ docking_controller_tag = "miningdocker"
+ shuttle_area = /area/stellardelight/deck1/miningshuttle
+ fuel_consumption = 0
+ defer_initialisation = TRUE
+ range = 1
+
+/////STARSTUFF/////
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/sdboat
+ name = "Starstuff control console"
+ shuttle_tag = "Starstuff"
+ req_one_access = list(access_pilot)
+
+/obj/effect/overmap/visitable/ship/landable/sd_boat
+ name = "NTV Starstuff"
+ desc = "A small shuttle from the NRV Stellar Delight."
+ vessel_mass = 1000
+ vessel_size = SHIP_SIZE_TINY
+ shuttle = "Starstuff"
+ known = TRUE
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/sdboat
+ name = "Port Shuttlepad"
+ base_area = /area/stellardelight/deck3/exterior
+ base_turf = /turf/simulated/floor/reinforced/airless
+ landmark_tag = "port_shuttlepad"
+ docking_controller = "sd_port_landing"
+ shuttle_type = /datum/shuttle/autodock/overmap/sdboat
+
+/datum/shuttle/autodock/overmap/sdboat
+ name = "Starstuff"
+ current_location = "port_shuttlepad"
+ docking_controller_tag = "sd_bittyshuttle"
+ shuttle_area = list(/area/shuttle/sdboat,/area/shuttle/sdboat/aft)
+ fuel_consumption = 2
+ defer_initialisation = TRUE
+
+/area/shuttle/sdboat
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "yelwhitri"
+ name = "Starstuff Cockpit"
+ requires_power = 1
+
+/area/shuttle/sdboat/aft
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "yelwhitri"
+ name = "Starstuff Crew Compartment"
+ requires_power = 1
+
+/////Virgo Flyer/////
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/ccboat
+ name = "Virgo Flyer control console"
+ shuttle_tag = "Virgo Flyer"
+ req_one_access = list(access_pilot)
+
+/obj/effect/overmap/visitable/ship/landable/ccboat
+ name = "NTV Virgo Flyer"
+ desc = "A small shuttle from Central Command."
+ vessel_mass = 1000
+ vessel_size = SHIP_SIZE_TINY
+ shuttle = "Virgo Flyer"
+ known = TRUE
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/ccboat
+ name = "Central Command Shuttlepad"
+ base_area = /area/shuttle/centcom/ccbay
+ base_turf = /turf/simulated/floor/reinforced
+ landmark_tag = "cc_shuttlepad"
+ docking_controller = "cc_landing_pad"
+ shuttle_type = /datum/shuttle/autodock/overmap/ccboat
+
+/datum/shuttle/autodock/overmap/ccboat
+ name = "Virgo Flyer"
+ current_location = "cc_shuttlepad"
+ docking_controller_tag = "ccboat"
+ shuttle_area = /area/shuttle/ccboat
+ fuel_consumption = 0
+ defer_initialisation = TRUE
+
+/area/shuttle/ccboat
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "yelwhitri"
+ name = "Virgo Flyer"
+ requires_power = 0
+
+/area/shuttle/centcom/ccbay
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "bluwhisqu"
+ name = "Central Command Shuttle Bay"
+ requires_power = 0
+ dynamic_lighting = 0
+
+/////LANDING LANDMARKS/////
+/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock
+ name = "Near Deck 1 Port Airlock"
+ landmark_tag = "sd-1-23-54"
+/obj/effect/shuttle_landmark/premade/sd/deck1/aft
+ name = "Near Deck 1 Aft"
+ landmark_tag = "sd-1-67-15"
+/obj/effect/shuttle_landmark/premade/sd/deck1/fore
+ name = "Near Deck 1 Fore"
+ landmark_tag = "sd-1-70-130"
+/obj/effect/shuttle_landmark/premade/sd/deck1/starboard
+ name = "Near Deck 1 Starboard"
+ landmark_tag = "sd-1-115-85"
+
+/obj/effect/shuttle_landmark/premade/sd/deck2/port
+ name = "Near Deck 2 Port"
+ landmark_tag = "sd-2-25-98"
+/obj/effect/shuttle_landmark/premade/sd/deck2/starboard
+ name = "Near Deck 2 Starboard"
+ landmark_tag = "sd-2-117-98"
+
+/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock
+ name = "Near Deck 3 Port Airlock"
+ landmark_tag = "sd-3-22-78"
+/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding
+ name = "Near Deck 3 Port Landing Pad"
+ landmark_tag = "sd-3-36-33"
+/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding
+ name = "Near Deck 3 Starboard Landing Pad"
+ landmark_tag = "sd-3-104-33"
+/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock
+ name = "Near Deck 3 Starboard Airlock"
+ landmark_tag = "sd-3-120-78"
+
+/obj/item/weapon/paper/dockingcodes/sd
+ name = "Stellar Delight Docking Codes"
+ codes_from_z = Z_LEVEL_SHIP_LOW
+
+/////FOR CENTCOMM (at least)/////
+/obj/effect/overmap/visitable/sector/virgo3b
+ name = "Virgo 3B"
+ desc = "Full of phoron, and home to the NSB Adephagia."
+ scanner_desc = @{"[i]Registration[/i]: NSB Adephagia
+[i]Class[/i]: Installation
+[i]Transponder[/i]: Transmitting (CIV), NanoTrasen IFF
+[b]Notice[/b]: NanoTrasen Base, authorized personnel only"}
+ known = TRUE
+
+ icon = 'icons/obj/overmap_vr.dmi'
+ icon_state = "virgo3b"
+
+ skybox_icon = 'icons/skybox/virgo3b.dmi'
+ skybox_icon_state = "small"
+ skybox_pixel_x = 0
+ skybox_pixel_y = 0
+
+ initial_restricted_waypoints = list("Central Command Shuttlepad" = list("cc_shuttlepad"))
+
+/////SD Starts at V3b to pick up crew refuel and repair (And to make sure it doesn't spawn on hazards)
+/obj/effect/overmap/visitable/sector/virgo3b/Initialize()
+ . = ..()
+ for(var/obj/effect/overmap/visitable/ship/stellar_delight/sd in world)
+ sd.forceMove(loc, SOUTH)
+ return
+
+/obj/effect/overmap/visitable/sector/virgo3b/Crossed(var/atom/movable/AM)
+ . = ..()
+ announce_atc(AM,going = FALSE)
+
+/obj/effect/overmap/visitable/sector/virgo3b/Uncrossed(var/atom/movable/AM)
+ . = ..()
+ announce_atc(AM,going = TRUE)
+
+/obj/effect/overmap/visitable/sector/virgo3b/proc/announce_atc(var/atom/movable/AM, var/going = FALSE)
+ var/message = "Sensor contact for vessel '[AM.name]' has [going ? "left" : "entered"] ATC control area."
+ //For landables, we need to see if their shuttle is cloaked
+ if(istype(AM, /obj/effect/overmap/visitable/ship/landable))
+ var/obj/effect/overmap/visitable/ship/landable/SL = AM //Phew
+ var/datum/shuttle/autodock/multi/shuttle = SSshuttles.shuttles[SL.shuttle]
+ if(!istype(shuttle) || !shuttle.cloaked) //Not a multishuttle (the only kind that can cloak) or not cloaked
+ atc.msg(message)
+
+ //For ships, it's safe to assume they're big enough to not be sneaky
+ else if(istype(AM, /obj/effect/overmap/visitable/ship))
+ atc.msg(message)
+
+/obj/item/weapon/paper/sdshield
+ name = "ABOUT THE SHIELD GENERATOR"
+ info = "