diff --git a/code/area.dm b/code/area.dm
index dafdd26..09a98d1 100644
--- a/code/area.dm
+++ b/code/area.dm
@@ -62,7 +62,7 @@
var/no_air = null
var/filler_turf // if set, replacewithspace in this area instead replaces with this turf type
- var/teleport_blocked = 0 //Cannot teleport into this area without some explicit set_loc thing.
+ var/teleport_blocked = 0 //Cannot teleport into this area without some explicit set_loc thing. 1 for most things, 2 for definitely everything.
var/workplace = 0 //Do people work here?
@@ -91,6 +91,7 @@
//If any mobs are entering, within a thing or otherwise
if (enteringMobs.len > 0)
for (var/mob/enteringM in enteringMobs) //each dumb mob
+ if( !(isliving(A) || iswraith(A)) ) continue
//Wake up a bunch of lazy darn critters
if (isliving(enteringM))
wake_critters()
@@ -179,7 +180,7 @@
var/penalty = 0
var/list/loose_items = list()
for (var/obj/O in T)
- if (istype(O, /obj/item))
+ if (isitem(O))
penalty += 4
loose_items += O
if (istype(O, /obj/decal/cleanable))
@@ -234,6 +235,7 @@
RL_Lighting = 1
sound_environment = 8
teleport_blocked = 1
+ sound_group = "tinycave"
/area/area_that_kills_you_if_you_enter_it //People entering VR or exiting VR with stupid exploits are jerks.
name = "Invisible energy field that will kill you if you step into it"
@@ -277,13 +279,13 @@
/area/shuttle/escape/transit
icon_state = "eshuttle_transit"
sound_group = "eshuttle_transit"
- var/warp_dir = "north" // fuck you
+ var/warp_dir = NORTH // fuck you
Entered(atom/movable/Obj,atom/OldLoc)
..()
if (ismob(Obj))
var/mob/M = Obj
- if (src.warp_dir == "north" || src.warp_dir == "south")
+ if (src.warp_dir & NORTH || src.warp_dir & SOUTH)
M.addOverlayComposition(/datum/overlayComposition/shuttle_warp)
else
M.addOverlayComposition(/datum/overlayComposition/shuttle_warp/ew)
@@ -301,13 +303,13 @@
name = "Wormhole"
icon_state = "shuttle_transit_space_n"
teleport_blocked = 1
- var/throw_dir = "north" // goddamnit
+ var/throw_dir = NORTH // goddamnit x2
Entered(atom/movable/Obj,atom/OldLoc)
..()
if (ismob(Obj))
var/mob/M = Obj
- if (src.throw_dir == "north" || src.throw_dir == "south")
+ if (src.throw_dir == NORTH || src.throw_dir == SOUTH)
M.addOverlayComposition(/datum/overlayComposition/shuttle_warp)
else
M.addOverlayComposition(/datum/overlayComposition/shuttle_warp/ew)
@@ -325,13 +327,13 @@
/area/shuttle_transit_space/south
icon_state = "shuttle_transit_space_s"
- throw_dir = "south"
+ throw_dir = SOUTH
/area/shuttle_transit_space/east
icon_state = "shuttle_transit_space_e"
- throw_dir = "east"
+ throw_dir = EAST
/area/shuttle_transit_space/west
icon_state = "shuttle_transit_space_w"
- throw_dir = "west"
+ throw_dir = WEST
/area/shuttle_particle_spawn
icon_state = "shuttle_transit_stars_n"
@@ -811,12 +813,18 @@
skip_sims = 1
sims_score = 30
+/area/drone
+ name = "Drone Assembly Outpost"
+ icon_state = "red"
+ sound_environment = 10
+ sound_group = "drone_factory"
+
+/area/drone/zone
+
+
/area/station
do_not_irradiate = 0
-/area/station/engine
- sound_environment = 10
- workplace = 1
//These are shuttle areas, they must contain two areas in a subgroup if you want to move a shuttle from one
//place to another. Look at escape shuttle for example.
@@ -1203,15 +1211,20 @@
workplace = 1
do_not_irradiate = 1
-/area/station/atmos/hookups_starboard
- name = "Starboard Air Hookups"
- icon_state = "atmos"
+/area/station/atmos/hookups
sound_environment = 3
-/area/station/atmos/hookups_port
- name = "Port Air Hookups"
- icon_state = "atmos"
- sound_environment = 3
+/area/station/atmos/hookups/east
+ name = "East Air Hookups"
+
+/area/station/atmos/hookups/west
+ name = "West Air Hookups"
+
+/area/station/atmos/hookups/north
+ name = "North Air Hookups"
+
+/area/station/atmos/hookups/south
+ name = "South Air Hookups"
/area/station/maintenance/
name = "Maintenance"
@@ -1220,53 +1233,57 @@
workplace = 1
do_not_irradiate = 1
-/area/station/maintenance/fpmaint
- name = "Fore Port Maintenance"
- icon_state = "fpmaint"
+/area/station/maintenance/NWmaint
+ name = "North West Maintenance"
+ icon_state = "NWmaint"
-/area/station/maintenance/fsmaint
- name = "Fore Starboard Maintenance"
- icon_state = "fsmaint"
+/area/station/maintenance/NEmaint
+ name = "North East Maintenance"
+ icon_state = "NEmaint"
-/area/station/maintenance/asmaint
- name = "Aft Starboard Maintenance"
- icon_state = "asmaint"
+/area/station/maintenance/SEmaint
+ name = "South East Maintenance"
+ icon_state = "SEmaint"
-/area/station/maintenance/apmaint
- name = "Aft Port Maintenance"
- icon_state = "apmaint"
+/area/station/maintenance/SWmaint
+ name = "South West Maintenance"
+ icon_state = "SWmaint"
/area/station/maintenance/maintcentral
name = "Central Maintenance"
icon_state = "maintcentral"
-/area/station/maintenance/fore
- name = "Fore Maintenance"
- icon_state = "fmaint"
+/area/station/maintenance/north
+ name = "North Maintenance"
+ icon_state = "Nmaint"
-/area/station/maintenance/starboard
- name = "Starboard Maintenance"
- icon_state = "smaint"
+/area/station/maintenance/east
+ name = "East Maintenance"
+ icon_state = "Emaint"
-/area/station/maintenance/port
- name = "Port Maintenance"
- icon_state = "pmaint"
+/area/station/maintenance/west
+ name = "West Maintenance"
+ icon_state = "Wmaint"
-/area/station/maintenance/aft
- name = "Aft Maintenance"
- icon_state = "amaint"
+/area/station/maintenance/south
+ name = "South Maintenance"
+ icon_state = "Smaint"
-/area/station/maintenance/starboardsolar
- name = "Starboard Solar Maintenance"
+/area/station/maintenance/eastsolar
+ name = "East Solar Maintenance"
+ icon_state = "SolarcontrolE"
+
+/area/station/maintenance/westsolar
+ name = "West Solar Maintenance"
+ icon_state = "SolarcontrolW"
+
+/area/station/maintenance/southsolar
+ name = "South Solar Maintenance"
icon_state = "SolarcontrolS"
-/area/station/maintenance/portsolar
- name = "Port Solar Maintenance"
- icon_state = "SolarcontrolP"
-
-/area/station/maintenance/aftsolar
- name = "Aft Solar Maintenance"
- icon_state = "SolarcontrolA"
+/area/station/maintenance/northsolar
+ name = "North Solar Maintenance"
+ icon_state = "SolarcontrolN"
/area/station/maintenance/inner
name = "Inner Maintenance"
@@ -1285,21 +1302,21 @@
icon_state = "hallC"
sound_environment = 10
-/area/station/hallway/primary/fore
- name = "Fore Primary Hallway"
- icon_state = "hallF"
+/area/station/hallway/primary/north
+ name = "North Primary Hallway"
+ icon_state = "hallN"
-/area/station/hallway/primary/starboard
- name = "Starboard Primary Hallway"
+/area/station/hallway/primary/east
+ name = "East Primary Hallway"
+ icon_state = "hallE"
+
+/area/station/hallway/primary/south
+ name = "South Primary Hallway"
icon_state = "hallS"
-/area/station/hallway/primary/aft
- name = "Aft Primary Hallway"
- icon_state = "hallA"
-
-/area/station/hallway/primary/port
- name = "Port Primary Hallway"
- icon_state = "hallP"
+/area/station/hallway/primary/west
+ name = "West Primary Hallway"
+ icon_state = "hallW"
/area/station/hallway/primary/central
name = "Central Primary Hallway"
@@ -1309,6 +1326,26 @@
name = "Escape Shuttle Hallway"
icon_state = "escape"
+/area/station/hallway/secondary/north
+ name = "North Secondary Hallway"
+ icon_state = "hallN2"
+
+/area/station/hallway/secondary/east
+ name = "East Secondary Hallway"
+ icon_state = "hallE2"
+
+/area/station/hallway/secondary/south
+ name = "South Secondary Hallway"
+ icon_state = "hallS2"
+
+/area/station/hallway/secondary/west
+ name = "West Secondary Hallway"
+ icon_state = "hallW2"
+
+/area/station/hallway/secondary/central
+ name = "Central Secondary Hallway"
+ icon_state = "hallC2"
+
/area/station/hallway/secondary/construction
name = "Construction Area"
icon_state = "construction"
@@ -1322,7 +1359,7 @@
do_not_irradiate = 1
/area/station/hallway/secondary/entry
- name = "Arrival Shuttle Hallway"
+ name = "Main Hallway"
icon_state = "entry"
/area/station/hallway/secondary/shuttle
@@ -1335,11 +1372,18 @@
sound_environment = 2
workplace = 1
-/area/station/artifact
- name = "Artifact Lab"
- icon_state = "artifact"
- sound_environment = 2
- workplace = 1
+/area/station/mining
+ name = "Mining"
+ icon_state = "mining"
+ sound_environment = 10
+
+/area/station/mining/refinery
+ name = "Mining Refinery"
+ icon_state = "miningg"
+
+/area/station/mining/magnet
+ name = "Mining Magnet Control Room"
+ icon_state = "miningp"
/area/station/bridge
name = "Bridge"
@@ -1347,6 +1391,74 @@
music = "signal"
sound_environment = 4
+/area/station/bridge/captain
+ name = "Captain's Office"
+ icon_state = "CAPN"
+
+/area/station/bridge/hos
+ name = "Head of Personnel's Office"
+ icon_state = "HOP"
+
+/area/station/crew_quarters/quarters_north
+ name = "North Crew Quarters"
+ icon_state = "crewquarters"
+ sound_environment = 3
+
+/area/station/crew_quarters/quarters_west
+ name = "West Crew Quarters"
+ icon_state = "crewquarters"
+ sound_environment = 3
+
+/area/station/crew_quarters/quarters_east
+ name = "East Crew Quarters"
+ icon_state = "crewquarters"
+ sound_environment = 3
+
+/area/station/crew_quarters/quarters_south
+ name = "South Crew Quarters"
+ icon_state = "crewquarters"
+ sound_environment = 3
+
+/area/station/crew_quarters/hos
+ name = "Head of Security's Quarters"
+ icon_state = "HOS"
+ sound_environment = 4
+
+/area/station/crew_quarters/md
+ name = "Medical Director's Quarters"
+ icon_state = "MD"
+ sound_environment = 4
+
+/area/station/crew_quarters/ce
+ name = "Chief Engineer's Quarters"
+ icon_state = "CE"
+ sound_environment = 4
+
+/area/station/crew_quarters/sauna
+ name = "Sauna"
+ icon_state = "crewquarters"
+ sound_environment = 2
+
+/area/station/crew_quarters/utility
+ name = "Utility Room"
+ icon_state = "orange"
+ sound_environment = 2
+
+/area/station/crew_quarters/lounge
+ name = "Crew Lounge"
+ icon_state = "crew_lounge"
+ sound_environment = 2
+
+/area/station/crew_quarters/lounge_port
+ name = "West Crew Lounge"
+ icon_state = "crew_lounge"
+ sound_environment = 2
+
+/area/station/crew_quarters/lounge_starboard
+ name = "East Crew Lounge"
+ icon_state = "crew_lounge"
+ sound_environment = 2
+
/area/station/crew_quarters/locker
name = "Locker Room"
icon_state = "locker"
@@ -1357,10 +1469,20 @@
icon_state = "yellow"
sound_environment = 0
+/area/station/crew_quarters/radio
+ name = "Radio Lab"
+ icon_state = "green"
+ sound_environment = 2
+
/area/station/crew_quarters/arcade
name = "Arcade"
icon_state = "yellow"
- sound_environment = 1
+ sound_environment = 4
+
+/area/station/crew_quarters/arcade/dungeon
+ name = "Nerd Dungeon"
+ icon_state = "purple"
+ sound_environment = 5
/area/station/crew_quarters/fitness
name = "Fitness Room"
@@ -1382,20 +1504,42 @@
icon_state = "kitchen"
sound_environment = 3
-/area/station/com_dish/comdish
- name = "Communications Dish"
- icon_state = "yellow"
- RL_Lighting = 0 // ????
+/area/station/crew_quarters/clown
+ name = "Clown Hole"
+ icon_state = "storage"
+ do_not_irradiate = 1
-/area/station/com_dish/auxdish
- name = "Auxilary Communications Dish"
- icon_state = "yellow"
- RL_Lighting = 0
+/area/station/crew_quarters/catering
+ name = "Catering Storage"
+ icon_state = "storage"
+ do_not_irradiate = 1
+
+/area/station/crew_quarters/bathroom
+ name = "Bathroom"
+ icon_state = "showers"
+
+/area/station/security/beepsky
+ name = "Beepsky's House"
+ icon_state = "storage"
+ do_not_irradiate = 1
+
+/area/station/crew_quarters/jazz
+ name = "Jazz Lounge"
+ icon_state = "purple"
+
+/area/station/crew_quarters/info
+ name = "Information Office"
+ icon_state = "purple"
/area/station/crew_quarters/bar
name= "Bar"
icon_state = "bar"
- sound_environment = 0
+ sound_environment = 4
+
+/area/station/crew_quarters/baroffice
+ name= "Bar Office"
+ icon_state = "bar_office"
+ sound_environment = 2
/area/station/crew_quarters/heads
name = "Head of Personnel's Office"
@@ -1435,7 +1579,7 @@
/area/station/crew_quarters/pool
name = "Pool Room"
icon_state = "showers"
- sound_environment = 0
+ sound_environment = 3
/area/station/crew_quarters/observatory
name = "Observatory"
@@ -1466,15 +1610,31 @@
name = "Public Garden"
icon_state = "park"
+/area/station/com_dish/comdish
+ name = "Communications Dish"
+ icon_state = "yellow"
+ RL_Lighting = 0 // ????
+
+/area/station/com_dish/auxdish
+ name = "Auxilary Communications Dish"
+ icon_state = "yellow"
+ RL_Lighting = 0
+
+/area/station/engine
+ sound_environment = 5
+ workplace = 1
+
/area/station/engine/engineering
name = "Engineering"
icon_state = "engineering"
- sound_environment = 12
/area/station/engine/ptl
name = "Power Transmission Laser"
icon_state = "ptl"
- sound_environment = 12
+
+/area/station/engine/engineering/ce
+ name = "Chief Engineer's Office"
+ icon_state = "CE"
/area/mining/miningoutpost
name = "Mining Outpost"
@@ -1514,6 +1674,10 @@
name = "Hot Loop"
icon_state = "red"
+/area/station/engine/combustion_chamber
+ name = "Combustion Chamber"
+ icon_state = "combustion_chamber"
+
/area/station/engine/coldloop
name = "Cold Loop"
icon_state = "purple"
@@ -1535,16 +1699,16 @@
name = "Electrical Substation"
do_not_irradiate = 1
-/area/station/engine/substation/port
- name = "Port Electrical Substation"
+/area/station/engine/substation/west
+ name = "West Electrical Substation"
do_not_irradiate = 1
-/area/station/engine/substation/starboard
- name = "Starboard Electrical Substation"
+/area/station/engine/substation/east
+ name = "East Electrical Substation"
do_not_irradiate = 1
-/area/station/engine/substation/fore
- name = "Fore Electrical Substation"
+/area/station/engine/substation/north
+ name = "North Electrical Substation"
do_not_irradiate = 1
/area/station/engine/proto
@@ -1562,59 +1726,6 @@
RL_Lighting = 0
requires_power = 0
-/area/mining
- name = "Mining Outpost"
- icon_state = "engine"
- workplace = 1
-
-/area/mining/power
- name = "Outpost Power Room"
- icon_state = "showers"
- sound_environment = 3
-
-/area/mining/manufacturing
- name = "Outpost Manufacturing Room"
- icon_state = "storage"
- sound_environment = 12
-
-/area/mining/quarters
- name = "Outpost Miner's Quarters"
- icon_state = "locker"
- sound_environment = 2
-
-/area/mining/comms
- name = "Outpost Comms Room"
- icon_state = "yellow"
- sound_environment = 2
-
-/area/mining/dock
- name = "Outpost Shuttle Dock"
- icon_state = "storage"
- sound_environment = 10
-
-/area/mining/exit_west
- name = "Outpost West Airlock"
- icon_state = "maintcentral"
- sound_environment = 12
-
-/area/mining/exit_east
- name = "Outpost East Airlock"
- icon_state = "maintcentral"
- sound_environment = 12
-
-/area/mining/exit_south
- name = "Outpost South Airlock"
- icon_state = "maintcentral"
- sound_environment = 12
-
-/area/mining/magnet_control
- name = "Mining Outpost Magnet Control"
- icon_state = "miningp"
-
-/area/mining/refinery
- name = "Mining Outpost Refinery"
- icon_state = "yellow"
-
/area/station/hangar
name = "Hangar"
icon_state = "purple"
@@ -1635,33 +1746,6 @@
teleport_blocked = 1
do_not_irradiate = 1
-/area/sim/tdome
- name = "Thunderdome"
- icon_state = "medbay"
- requires_power = 0
- sound_environment = 9
- virtual = 1
-
-/area/sim/tdome/tdome1
- name = "Thunderdome (Team 1)"
- icon_state = "green"
- sound_environment = 9
-
-/area/sim/tdome/tdome2
- name = "Thunderdome (Team 2)"
- icon_state = "yellow"
- sound_environment = 9
-
-/area/sim/tdome/tdomea
- name = "Thunderdome (Admin.)"
- icon_state = "purple"
- sound_environment = 9
-
-/area/sim/tdome/tdomes
- name = "Thunderdome (Spectator)"
- icon_state = "purple"
- sound_environment = 9
-
/area/station/medical
name = "Medical area"
icon_state = "medbay"
@@ -1677,10 +1761,34 @@
name = "Medbay Lobby"
icon_state = "medbay_lobby"
+/area/station/medical/medbay/cloner
+ name = "Cloning"
+ icon_state = "cloner"
+
+/area/station/medical/medbay/pharmacy
+ name = "Pharmacy"
+ icon_state = "chem"
+
+/area/station/medical/medbay/treatment1
+ name = "Treatment Room 1"
+ icon_state = "treat1"
+
+/area/station/medical/medbay/treatment2
+ name = "Treatment Room 2"
+ icon_state = "treat2"
+
+/area/station/medical/medbay/restroom
+ name = "Medbay Restroom"
+ icon_state = "blue"
+
/area/station/medical/medbay/surgery
name = "Medbay Operating Theater"
icon_state = "medbay_surgery"
+/area/station/medical/medbay/surgery/storage
+ name = "Medical Storage"
+ icon_state = "blue"
+
/area/station/medical/robotics
name = "Robotics"
icon_state = "medresearch"
@@ -1720,6 +1828,21 @@
icon_state = "medbooth"
sound_environment = 3
+/area/station/medical/breakroom
+ name = "Medbay Break Room"
+ icon_state = "medbay_break"
+ sound_environment = 3
+
+/area/station/medical/maintenance
+ name = "Medical Maintenance"
+ icon_state = "medical_maintenance"
+ sound_environment = 3
+
+/area/station/medical/staff
+ name = "Medbay Staff Area"
+ icon_state = "medbay_staff"
+ sound_environment = 3
+
/area/station/security
teleport_blocked = 1
workplace = 1
@@ -1733,33 +1856,36 @@
name = "Brig"
icon_state = "brigcell"
sound_environment = 3
+ teleport_blocked = 0
/area/station/security/checkpoint
- name = "Security Checkpoint"
+ name = "Bridge Security Checkpoint"
icon_state = "checkpoint1"
sound_environment = 2
arrivals
- name = "Arrivals Checkpoint"
+ name = "Arrivals Security Checkpoint"
escape
- name = "Escape Hallway Checkpoint"
+ name = "Escape Hallway Security Checkpoint"
customs
- name = "Customs Checkpoint"
+ name = "Customs Security Checkpoint"
sec_foyer
name = "Security Foyer Checkpoint"
podbay
- name = "Pod Bay Checkpoint"
+ name = "Pod Bay Security Checkpoint"
chapel
- name = "Chapel Checkpoint"
+ name = "Chapel Security Checkpoint"
cargo
- name = "Cargo Checkpoint"
- port
- name = "Port Hallway Checkpoint"
- starboard
- name = "Starboard Hallway Checkpoint"
+ name = "Cargo Security Checkpoint"
+ west
+ name = "West Hallway Security Checkpoint"
+ east
+ name = "East Hallway Security Checkpoint"
+ medical
+ name = "Medical Security Checkpoint"
-/area/station/security/armory
- name = "Armory"
+/area/station/security/armory //what the fuck this is not the real armory???
+ name = "Armory" //ai_monitored/armory is, shitty ass code
icon_state = "armory"
sound_environment = 2
@@ -1792,21 +1918,22 @@
workplace = 1
do_not_irradiate = 1
-/area/station/solar/fore
- name = "Fore Solar Array"
+/area/station/solar/north
+ name = "North Solar Array"
icon_state = "yellow"
+ icon_state = "panelsN"
-/area/station/solar/aft
- name = "Aft Solar Array"
- icon_state = "panelsA"
-
-/area/station/solar/starboard
- name = "Starboard Solar Array"
+/area/station/solar/south
+ name = "South Solar Array"
icon_state = "panelsS"
-/area/station/solar/port
- name = "Port Solar Array"
- icon_state = "panelsP"
+/area/station/solar/east
+ name = "East Solar Array"
+ icon_state = "panelsE"
+
+/area/station/solar/west
+ name = "West Solar Array"
+ icon_state = "panelsW"
/area/station/solar/small_backup1
name = "Emergency Solar Array 1"
@@ -1820,20 +1947,10 @@
name = "Emergency Solar Array 3"
icon_state = "yellow"
-/area/syndicate_station
- name = "Syndicate Station"
- icon_state = "yellow"
- requires_power = 0
- sound_environment = 2
- teleport_blocked = 1
- sound_group = "syndicate_station"
-
-/area/wizard_station
- name = "Wizard's Den"
- icon_state = "yellow"
- requires_power = 0
- sound_environment = 4
- teleport_blocked = 1
+/area/station/quartermaster
+ name = "Quartermasters"
+ icon_state = "quart"
+ workplace = 1
/area/station/quartermaster/office
name = "Quartermaster's Office"
@@ -1846,10 +1963,15 @@
sound_environment = 2
do_not_irradiate = 1
-/area/station/quartermaster
- name = "Quartermasters"
- icon_state = "quart"
- workplace = 1
+/area/station/quartermaster/magnet
+ name = "Magnet Control Room"
+ icon_state = "green"
+ sound_environment = 10
+
+/area/station/quartermaster/refinery
+ name = "Refinery"
+ icon_state = "green"
+ sound_environment = 10
/area/station/janitor
name = "Janitor's Office"
@@ -1888,6 +2010,10 @@
icon_state = "genstorage"
do_not_irradiate = 1
+/area/station/science/restroom
+ name = "Research Restroom"
+ icon_state = "purple"
+
/area/station/science/bot_storage
name = "Robot Depot"
icon_state = "toxstorage"
@@ -1905,6 +2031,10 @@
name = "Toxin Lab"
icon_state = "toxlab"
+/area/station/science/artifact
+ name = "Artifact Lab"
+ icon_state = "artifact"
+
/area/station/science/storage
name = "Toxin Storage"
icon_state = "toxstorage"
@@ -1923,7 +2053,6 @@
icon_state = "yellow"
do_not_irradiate = 1
-
/area/station/test_area
name = "Toxin Test Area"
icon_state = "toxtest"
@@ -1936,7 +2065,7 @@
icon_state = "chapel"
sound_environment = 7
-/area/station/chapel/main/main
+/area/station/chapel/main/main //wtf why is this a thing
/area/station/chapel/office
name = "Chapel Office"
@@ -2003,17 +2132,281 @@
icon_state = "storage"
teleport_blocked = 1
-/area/iss
- name = "Derelict Space Station"
- icon_state = "derelict"
+// cogmap new areas ///////////
-/area/abandonedship
- name = "Abandoned ship"
+/area/station/hangar
+ name = "Hangar"
+ icon_state = "hangar"
+ workplace = 1
+ do_not_irradiate = 1
+
+ main
+ name = "Pod Bay"
+ sound_environment = 10
+ catering
+ name = "Catering Dock"
+ arrivals
+ name = "Arrivals Dock"
+ sec
+ name = "Secure Dock"
+ teleport_blocked = 1
+ engine
+ name = "Engineering Dock"
+ qm
+ name = "Cargo Dock"
+ escape
+ name = "Escape Dock"
+ science
+ name = "Research Dock"
+ teleport_blocked = 1
+
+/area/station/hydroponics
+ name = "Hydroponics"
+ icon_state = "hydro"
+ workplace = 1
+
+/area/station/hydroponics/lobby
+ name = "Hydroponics Lobby"
+ icon_state = "green"
+
+/area/station/owlery
+ name = "Owlery"
+ icon_state = "yellow"
+ sound_environment = 15
+ do_not_irradiate = 1
+
+/area/station/aviary
+ name = "Aviary"
+ icon_state = "aviary"
+ sound_environment = 15
+ do_not_irradiate = 1
+
+/area/station/habitat
+ name = "Habitat Dome"
+ icon_state = "aviary"
+ sound_environment = 15
+ do_not_irradiate = 1
+ RL_Lighting = 0
+
+/area/station/catwalk
+ icon_state = "yellow"
+ RL_Lighting = 0
+
+/area/station/catwalk/north
+ name = "North Maintenance Catwalk"
+
+/area/station/catwalk/south
+ name = "South Maintenance Catwalk"
+
+/area/station/catwalk/west
+ name = "West Maintenance Catwalk"
+
+/area/station/catwalk/east
+ name = "East Maintenance Catwalk"
+
+/area/station/routingdepot
+ name = "Routing Depot"
+ icon_state = "depot"
+ sound_environment = 13
+ do_not_irradiate = 1
+
+ catering
+ name = "Cafeteria Router"
+
+ eva
+ name = "EVA Router"
+
+ engine
+ name = "Engine Router"
+
+ medsci
+ name = "Med-Sci Router"
+
+ security
+ name = "Security Router"
+
+ airbridge
+ name = "Airbridge Router"
+
+/area/research_outpost
+ name = "Research Outpost"
+ icon_state = "blue"
+ do_not_irradiate = 1
+
+ hangar
+ name = "Research Outpost Hangar"
+ icon_state = "hangar"
+
+ chamber
+ name = "Research Outpost Test Chamber"
+ icon_state = "yellow"
+
+///////////////////////////////
+
+/area/listeningpost
+ name = "Listening Post"
+ icon_state = "brig"
+ teleport_blocked = 1
+ do_not_irradiate = 1
+
+/area/listeningpost/power
+ name = "Listening Post Control Room"
+ icon_state = "engineering"
+
+/area/listeningpost/solars
+ name = "Listening Post Solar Array"
+ icon_state = "yellow"
+ requires_power = 0
+ luminosity = 1
+ RL_Lighting = 0
+
+///////////////////////////////
+
+/area/syndicate_station
+ name = "Syndicate Station"
+ icon_state = "yellow"
+ requires_power = 0
+ sound_environment = 2
+ teleport_blocked = 1
+ sound_group = "syndicate_station"
+
+///////////////////////////////
+
+/area/wizard_station
+ name = "Wizard's Den"
+ icon_state = "yellow"
+ requires_power = 0
+ sound_environment = 4
+ teleport_blocked = 1
+
+///////////////////////////////
+
+/area/station/ai_monitored
+ name = "AI Monitored Area"
+ var/obj/machinery/camera/motion/motioncamera = null
+ workplace = 1
+
+/area/station/ai_monitored/New()
+ ..()
+ // locate and store the motioncamera
+ spawn (20) // spawn on a delay to let turfs/objs load
+ for (var/obj/machinery/camera/motion/M in src)
+ motioncamera = M
+ return
+ return
+
+/area/station/ai_monitored/Entered(atom/movable/O)
+ ..()
+ if (istype(O, /mob) && motioncamera)
+ motioncamera.newTarget(O)
+//
+/area/station/ai_monitored/Exited(atom/movable/O)
+ ..()
+ if (istype(O, /mob) && motioncamera)
+ motioncamera.lostTarget(O)
+
+/area/station/ai_monitored/storage/eva
+ name = "EVA Storage"
+ icon_state = "eva"
+ sound_environment = 12
+
+/area/station/ai_monitored/storage/secure
+ name = "Secure Storage"
+ icon_state = "storage"
+ sound_environment = 12
+
+/area/station/ai_monitored/storage/emergency
+ name = "Emergency Storage"
+ icon_state = "storage"
+ sound_environment = 12
+
+/area/station/ai_monitored/armory
+ name = "Armory"
+ icon_state = "armory"
+ sound_environment = 2
+ teleport_blocked = 1
+
+///////////////////////////////
+
+///////////////////// zewaka-old mining outpost
+
+/area/mining
+ name = "Mining Outpost"
+ icon_state = "engine"
+ workplace = 1
+
+/area/mining/power
+ name = "Outpost Power Room"
+ icon_state = "showers"
+ sound_environment = 3
+
+/area/mining/manufacturing
+ name = "Outpost Manufacturing Room"
+ icon_state = "storage"
+ sound_environment = 12
+
+/area/mining/quarters
+ name = "Outpost Miner's Quarters"
+ icon_state = "locker"
+ sound_environment = 2
+
+/area/mining/comms
+ name = "Outpost Comms Room"
+ icon_state = "yellow"
+ sound_environment = 2
+
+/area/mining/dock
+ name = "Outpost Shuttle Dock"
+ icon_state = "storage"
+ sound_environment = 10
+
+/area/mining/exit_west
+ name = "Outpost West Airlock"
+ icon_state = "maintcentral"
+ sound_environment = 12
+
+/area/mining/exit_east
+ name = "Outpost East Airlock"
+ icon_state = "maintcentral"
+ sound_environment = 12
+
+/area/mining/exit_south
+ name = "Outpost South Airlock"
+ icon_state = "maintcentral"
+ sound_environment = 12
+
+/area/mining/magnet_control
+ name = "Mining Outpost Magnet Control"
+ icon_state = "miningp"
+
+/area/mining/refinery
+ name = "Mining Outpost Refinery"
icon_state = "yellow"
-/area/salyut
- name = "Soviet derelict"
+/area/mining/hangar/
+ name = "Mining Dock"
+ icon_state = "storage"
+ sound_environment = 10
+ workplace = 1
+
+/area/mining/mainasteroid
+ name = "Main Asteroid"
+ icon_state = "green"
+ RL_Lighting = 0
+
+////////////////////////////////////
+
+/area/russian
+ name = "Kosmicheskoi Stantsii 13"
+ icon_state = "green"
+ sound_environment = 13
+
+/area/russian/radiation
+ name = "Kosmicheskoi Stantsii 13"
icon_state = "yellow"
+ permarads = 1
+
+///////////////////////////////
/*
/area/derelict
@@ -2097,283 +2490,138 @@
name = "Control room"
icon_state = "bridge"*/
+/////////////////////////zewaka - old prison area
-// cogmap new areas ///////////
-
-/area/station/crew_quarters/clown
- name = "Non-Area"
- icon_state = "storage"
- do_not_irradiate = 1
-
-/area/station/crew_quarters/catering
- name = "Catering Storage"
- icon_state = "storage"
- do_not_irradiate = 1
-
-/area/station/crew_quarters/bathroom
- name = "Bathroom"
- icon_state = "showers"
-
-/area/station/security/beepsky
- name = "Beepsky's House"
- icon_state = "storage"
- do_not_irradiate = 1
-
-/area/station/crew_quarters/jazz
- name = "Jazz Lounge"
- icon_state = "purple"
-
-/area/station/crew_quarters/info
- name = "Information Office"
- icon_state = "purple"
-
-/area/station/hangar/main
- name = "Pod Bay"
- icon_state = "storage"
- sound_environment = 10
-
-/area/station/hangar/sec
- name = "Secure Dock"
- icon_state = "storage"
-
-/area/station/hangar/catering
- name = "Catering Dock"
- icon_state = "storage"
-
-/area/station/hangar/engine
- name = "Engineering Dock"
- icon_state = "storage"
-
-/area/station/hangar/qm
- name = "Cargo Dock"
- icon_state = "storage"
-
-/area/station/hangar
- name = "Hangar"
- icon_state = "storage"
- workplace = 1
- do_not_irradiate = 1
-
-/area/station/hangar/arrivals
- name = "Arrivals Dock"
- icon_state = "storage"
-
-/area/station/hangar/escape
- name = "Escape Dock"
- icon_state = "storage"
-
-/area/mining/hangar/
- name = "Mining Dock"
- icon_state = "storage"
- sound_environment = 10
- workplace = 1
-
-/area/station/hangar/science
- name = "Research Dock"
- icon_state = "storage"
- teleport_blocked = 1
-
-/area/listeningpost
- name = "Listening Post"
- icon_state = "brig"
- teleport_blocked = 1
- do_not_irradiate = 1
-
-/area/listeningpost/power
- name = "Listening Post Control Room"
- icon_state = "engineering"
-
-/area/listeningpost/solars
- name = "Listening Post Solar Array"
- icon_state = "yellow"
+/*
+/area/prison/arrival_airlock
+ name = "Asylum Station Airlock"
+ icon_state = "green"
requires_power = 0
- luminosity = 1
- RL_Lighting = 0
-/area/tech_outpost
- name = "Tech Outpost"
- icon_state = "storage"
+/area/prison/control
+ name = "Warden's Office"
+ icon_state = "security"
-/area/drone
- name = "Drone Assembly Outpost"
- icon_state = "red"
- sound_environment = 10
- sound_group = "drone_factory"
+/area/prison/crew_quarters
+ name = "Asylum Staff Quarters"
+ icon_state = "security"
-/area/drone/zone
+/area/prison/closet
+ name = "Prison Supply Closet"
+ icon_state = "dk_yellow"
-/area/drone/crew_quarters
- name = "Crew Quarters"
- icon_state = "showers"
- sound_environment = 4
-
-/area/drone/engineering
- name = "Engineering"
- icon_state = "yellow"
- sound_environment = 5
-
-/area/drone/office
- name = "Design Office"
- icon_state = "purple"
-
-/area/drone/assembly
- name = "Assembly Floor"
- icon_state = "storage"
-
-/area/diner
- sound_environment = 12
-
-/area/diner/hangar
- name = "Diner Parking"
- icon_state = "storage"
-
-/area/diner/kitchen
- name = "Diner Kitchen"
- icon_state = "purple"
-
-/area/diner/dining
- name = "Diner Seating Area"
+/area/prison/hallway/north
+ name = "Asylum North Hallway"
icon_state = "yellow"
-/area/diner/bathroom
- name = "Diner Bathroom"
- icon_state = "showers"
+/area/prison/hallway/south
+ name = "Prison South Hallway"
+ icon_state = "yellow"
+
+/area/prison/hallway/west
+ name = "Prison West Hallway"
+ icon_state = "yellow"
+
+/area/prison/hallway/east
+ name = "Prison East Hallway"
+ icon_state = "yellow"
+
+/area/prison/morgue
+ name = "Asylum Morgue"
+ icon_state = "morgue"
+
+/area/prison/medical_research
+ name = "Prison Genetic Research"
+ icon_state = "medresearch"
+
+/area/prison/office
+ name = "Asylum Offices"
+ icon_state = "purple"
+
+/area/prison/office/checkpoint
+ name = "Nurse's Station"
+
+/area/prison/medical
+ name = "Asylum Operating Theatre"
+ icon_state = "medbay"
+
+/area/prison/solar
+ name = "Prison Solar Array"
+ icon_state = "storage"
+ requires_power = 0
+
+/area/prison/podbay
+ name = "Prison Podbay"
+ icon_state = "dk_yellow"
+
+/area/prison/solar_control
+ name = "Prison Solar Array Control"
+ icon_state = "dk_yellow"
+
+/area/prison/solitary
+ name = "Solitary Confinement"
+ icon_state = "brig"*/
+
+/area/prison/cell_block/wards
+ name = "Asylum Wards"
+ icon_state = "brig"
+ requires_power = 0
+
+/*/area/prison/cell_block/A
+ name = "Prison Cell Block A"
+ icon_state = "brig"
+
+/area/prison/cell_block/B
+ name = "Prison Cell Block B"
+ icon_state = "brig"
+
+/area/prison/cell_block/C
+ name = "Prison Cell Block C"
+ icon_state = "brig"
+*/
///////////////////////////////
-/area/station/ai_monitored
- name = "AI Monitored Area"
- var/obj/machinery/camera/motion/motioncamera = null
- workplace = 1
+/*/area/factory
+ name = "Derelict Robot Factory"
+ icon_state = "start"
-/area/station/ai_monitored/New()
- ..()
- // locate and store the motioncamera
- spawn (20) // spawn on a delay to let turfs/objs load
- for (var/obj/machinery/camera/motion/M in src)
- motioncamera = M
- return
- return
+/area/factory/core
+ name = "Aged Computer Core"
+ icon_state = "ai"
-/area/station/ai_monitored/Entered(atom/movable/O)
- ..()
- if (istype(O, /mob) && motioncamera)
- motioncamera.newTarget(O)
-//
-/area/station/ai_monitored/Exited(atom/movable/O)
- ..()
- if (istype(O, /mob) && motioncamera)
- motioncamera.lostTarget(O)
-
-/area/station/ai_monitored/storage/eva
- name = "EVA Storage"
- icon_state = "eva"
- sound_environment = 12
-
-/area/station/ai_monitored/storage/secure
- name = "Secure Storage"
- icon_state = "storage"
- sound_environment = 12
-
-/area/station/ai_monitored/storage/emergency
- name = "Emergency Storage"
- icon_state = "storage"
- sound_environment = 12
-
-/area/station/turret_protected/ai_upload
- name = "AI Upload Chamber"
- icon_state = "ai_upload"
- sound_environment = 12
-
-/area/station/turret_protected/ai_upload_foyer
- name = "AI Upload Foyer"
- icon_state = "ai_foyer"
- sound_environment = 12
-
-/area/station/turret_protected/ai
- name = "AI Chamber"
- icon_state = "ai_chamber"
- sound_environment = 12
-
-/area/station/turret_protected/AIbasecore1
- name = "AI Core 1"
- icon_state = "AIt"
- sound_environment = 12
-
-/area/station/turret_protected/AIbaseoutside
- name = "AI outside"
- icon_state = "AIt"
- requires_power = 0
- sound_environment = 12
-
-/area/station/turret_protected/AIbasecore2
- name = "AI Core 2"
- icon_state = "AIt"
- sound_environment = 12
-
-/area/station/turret_protected/Zeta
- name = "Computer Core"
- icon_state = "AIt"
- sound_environment = 12
-
-/area/station/turret_protected/armory
- name = "Armory"
- icon_state = "red"
- sound_environment = 12
-
-/area/mining/mainasteroid
- name = "Main Asteroid"
- icon_state = "green"
- RL_Lighting = 0
-
-/area/russian
- name = "Kosmicheskoi Stantsii 13"
- icon_state = "green"
- sound_environment = 13
-
-/area/russian/radiation
- name = "Kosmicheskoi Stantsii 13"
+/area/old_outpost
+ name = "Derelict Outpost"
icon_state = "yellow"
- permarads = 1
+ sound_environment = 12
-/area/station/hydroponics
- name = "Hydroponics"
- icon_state = "hydro"
- workplace = 1
+/area/old_outpost/engine
+ name = "Outpost Engine"
+ icon_state = "dk_yellow"
+ sound_environment = 10
-/area/station/hydroponics/lobby
- name = "Hydroponics Lobby"
+/area/old_outpost/control
+ name = "Outpost Control"
+ icon_state = "purple"
+
+/area/old_outpost/medical
+ name = "VR Research"
+ icon_state = "medresearch"
+ sound_environment = 3
+
+/area/old_outpost/study
+ name = "Outpost Study"
icon_state = "green"
+ sound_environment = 4
-/area/station/owlery
- name = "Owlery"
- icon_state = "yellow"
- sound_environment = 15
- do_not_irradiate = 1
+/area/old_outpost/teleporter
+ name = "Outpost Teleporter"
+ icon_state = "teleporter"
+ sound_environment = 2*/
-/area/station/routingdepot
- name = "Routing Depot"
- icon_state = "depot"
- sound_environment = 13
- do_not_irradiate = 1
+// end areas
- catering
- name = "Cafeteria Router"
- eva
- name = "EVA Router"
-
- engine
- name = "Engine Router"
-
- medsci
- name = "Med-Sci Router"
-
- security
- name = "Security Router"
-
- airbridge
- name = "Airbridge Router"
// ===
/area/New()
@@ -2401,7 +2649,6 @@
T.oxygen = 0 // remove air if so specified for this area
T.n2 = 0
T.res_vars()
-
*/
@@ -2413,7 +2660,6 @@
while (A)
if (istype(A, /area))
return A
-
A = A.loc
return null
*/
@@ -2614,4 +2860,45 @@
/area/station/turret_protected/proc/popUpTurrets()
for (var/obj/machinery/turret/aTurret in src.turret_list)
- aTurret.popUp()
\ No newline at end of file
+ aTurret.popUp()
+
+/area/station/turret_protected/ai_upload
+ name = "AI Upload Chamber"
+ icon_state = "ai_upload"
+ sound_environment = 12
+
+/area/station/turret_protected/ai_upload_foyer
+ name = "AI Upload Foyer"
+ icon_state = "ai_foyer"
+ sound_environment = 12
+
+/area/station/turret_protected/ai
+ name = "AI Chamber"
+ icon_state = "ai_chamber"
+ sound_environment = 12
+
+/area/station/turret_protected/AIbasecore1
+ name = "AI Core 1"
+ icon_state = "AIt"
+ sound_environment = 12
+
+/area/station/turret_protected/AIbaseoutside
+ name = "AI outside"
+ icon_state = "AIt"
+ requires_power = 0
+ sound_environment = 12
+
+/area/station/turret_protected/AIbasecore2
+ name = "AI Core 2"
+ icon_state = "AIt"
+ sound_environment = 12
+
+/area/station/turret_protected/Zeta
+ name = "Computer Core"
+ icon_state = "AIt"
+ sound_environment = 12
+
+/area/station/turret_protected/armory
+ name = "Armory"
+ icon_state = "red"
+ sound_environment = 12
\ No newline at end of file
diff --git a/code/datums/gamemodes/nuclear.dm b/code/datums/gamemodes/nuclear.dm
index 821fec7..a8f6ce8 100644
--- a/code/datums/gamemodes/nuclear.dm
+++ b/code/datums/gamemodes/nuclear.dm
@@ -55,7 +55,7 @@
"the medbay" = list(/area/station/medical/medbay, /area/station/medical/medbay/surgery),
"the station's cafeteria" = list(/area/station/crew_quarters/cafeteria),
"the net cafe" = list(/area/station/crew_quarters/info),
- "the artifact lab" = list(/area/station/artifact),
+ "the artifact lab" = list(/area/station/science/artifact),
"the genetics lab" = list(/area/station/medical/research))
else if (map_setting == "DESTINY")
@@ -68,7 +68,7 @@
"the medbay" = list(/area/station/medical/medbay, /area/station/medical/medbay/lobby),
"the bar" = list(/area/station/crew_quarters/bar),
"the EVA storage" = list(/area/station/ai_monitored/storage/eva),
- "the artifact lab" = list(/area/station/artifact),
+ "the artifact lab" = list(/area/station/science/artifact),
"the robotics lab" = list(/area/station/medical/robotics))
else // COG1
diff --git a/code/datums/objective.dm b/code/datums/objective.dm
index e1b7a39..3646cb4 100644
--- a/code/datums/objective.dm
+++ b/code/datums/objective.dm
@@ -240,7 +240,7 @@ proc/create_fluff(var/datum/mind/target)
set_up()
var/list/target_areas = list(/area/station/chemistry,
- /area/station/artifact,
+ /area/station/science/artifact,
/area/station/science/lab,
/area/station/science/teleporter,
/*/area/station/medical/medbay,*/ // On Cogmap 1, medbay is split up into three separate areas.
diff --git a/code/floors_airless.dm b/code/floors_airless.dm
index cbe3bac..60fed31 100644
--- a/code/floors_airless.dm
+++ b/code/floors_airless.dm
@@ -14,13 +14,6 @@
/turf/simulated/floor/airless/solar
icon_state = "solarbase"
-// cogwerks - catwalk plating
-
-/turf/simulated/floor/airless/catwalk
- name = "catwalk support"
- icon_state = "catwalk"
- allows_vehicles = 1
-
/////////////////////////////////////////
/turf/simulated/floor/airless/scorched
@@ -63,6 +56,13 @@
/turf/simulated/floor/airless/plating/damaged3
icon_state = "platingdmg3"
+// cogwerks - catwalk plating
+
+/turf/simulated/floor/airless/plating/catwalk
+ name = "catwalk support"
+ icon_state = "catwalk"
+ allows_vehicles = 1
+
/////////////////////////////////////////
/turf/simulated/floor/airless/grime
diff --git a/code/floors_carpet.dm b/code/floors_carpet.dm
new file mode 100644
index 0000000..e6aaf44
--- /dev/null
+++ b/code/floors_carpet.dm
@@ -0,0 +1,1030 @@
+/*
+ * Hey! You!
+ * You don't have to mirror your changes!
+ * This is a special file just for carpets!
+ */
+
+//Pathed Floors 2: Carpet Boogaloo
+//Submitted by Kubius
+
+//pathing for all carpet states and colors, organized by intuitive grouping
+
+//I have opted for a different path for each object due to the fact that carpet icons
+//are split across multiple icon states in a way that makes them irritating to expand
+
+/turf/simulated/floor/carpet/red
+ icon_state = "red1"
+/turf/simulated/floor/carpet/blue
+ icon_state = "blue1"
+/turf/simulated/floor/carpet/green
+ icon_state = "green1"
+/turf/simulated/floor/carpet/purple
+ icon_state = "purple1"
+
+//red carpet/////////////////////////////
+
+/turf/simulated/floor/carpet/red/decal
+ icon_state = "fred1"
+ innercross
+ dir = 1
+ outercross
+ dir = 4
+
+/turf/simulated/floor/carpet/red/standard/edge
+ icon_state = "red2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/red/standard/innercorner
+ icon_state = "red3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "red4"
+ dir = 5
+ se_triple
+ icon_state = "red4"
+ dir = 6
+ nw_triple
+ icon_state = "red4"
+ dir = 9
+ sw_triple
+ icon_state = "red4"
+ dir = 10
+ ne_sw
+ icon_state = "red1"
+ dir = 5
+ nw_se
+ icon_state = "red1"
+ dir = 9
+ omni
+ icon_state = "red1"
+ dir = 8
+
+/turf/simulated/floor/carpet/red/standard/narrow
+ icon_state = "red6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "red4"
+ dir = 1
+ south
+ icon_state = "red4"
+ dir = 2
+ east
+ icon_state = "red4"
+ dir = 4
+ west
+ icon_state = "red4"
+ dir = 8
+ solo
+ icon_state = "red1"
+ dir = 4
+ northsouth
+ icon_state = "red1"
+ dir = 6
+ eastwest
+ icon_state = "red1"
+ dir = 10
+
+/turf/simulated/floor/carpet/red/standard/junction
+ icon_state = "red5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//fancy subvariant///////////////////////
+
+/turf/simulated/floor/carpet/red/fancy/edge
+ icon_state = "fred2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/red/fancy/innercorner
+ icon_state = "fred3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "fred4"
+ dir = 5
+ se_triple
+ icon_state = "fred4"
+ dir = 6
+ nw_triple
+ icon_state = "fred4"
+ dir = 9
+ sw_triple
+ icon_state = "fred4"
+ dir = 10
+ ne_sw
+ icon_state = "fred1"
+ dir = 5
+ nw_se
+ icon_state = "fred1"
+ dir = 9
+ omni
+ icon_state = "fred1"
+ dir = 8
+
+/turf/simulated/floor/carpet/red/fancy/narrow
+ icon_state = "fred6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "fred4"
+ dir = 1
+ south
+ icon_state = "fred4"
+ dir = 2
+ east
+ icon_state = "fred4"
+ dir = 4
+ west
+ icon_state = "fred4"
+ dir = 8
+ northsouth
+ icon_state = "fred1"
+ dir = 6
+ eastwest
+ icon_state = "fred1"
+ dir = 10
+
+/turf/simulated/floor/carpet/red/fancy/junction
+ icon_state = "fred5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//blue carpet/////////////////////////////
+
+/turf/simulated/floor/carpet/blue/decal
+ icon_state = "fblue1"
+ innercross
+ dir = 1
+ outercross
+ dir = 4
+
+/turf/simulated/floor/carpet/blue/standard/edge
+ icon_state = "blue2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/blue/standard/innercorner
+ icon_state = "blue3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "blue4"
+ dir = 5
+ se_triple
+ icon_state = "blue4"
+ dir = 6
+ nw_triple
+ icon_state = "blue4"
+ dir = 9
+ sw_triple
+ icon_state = "blue4"
+ dir = 10
+ ne_sw
+ icon_state = "blue1"
+ dir = 5
+ nw_se
+ icon_state = "blue1"
+ dir = 9
+ omni
+ icon_state = "blue1"
+ dir = 8
+
+/turf/simulated/floor/carpet/blue/standard/narrow
+ icon_state = "blue6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "blue4"
+ dir = 1
+ south
+ icon_state = "blue4"
+ dir = 2
+ east
+ icon_state = "blue4"
+ dir = 4
+ west
+ icon_state = "blue4"
+ dir = 8
+ solo
+ icon_state = "blue1"
+ dir = 4
+ northsouth
+ icon_state = "blue1"
+ dir = 6
+ eastwest
+ icon_state = "blue1"
+ dir = 10
+
+/turf/simulated/floor/carpet/blue/standard/junction
+ icon_state = "blue5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//fancy subvariant///////////////////////
+
+/turf/simulated/floor/carpet/blue/fancy/edge
+ icon_state = "fblue2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/blue/fancy/innercorner
+ icon_state = "fblue3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "fblue4"
+ dir = 5
+ se_triple
+ icon_state = "fblue4"
+ dir = 6
+ nw_triple
+ icon_state = "fblue4"
+ dir = 9
+ sw_triple
+ icon_state = "fblue4"
+ dir = 10
+ ne_sw
+ icon_state = "fblue1"
+ dir = 5
+ nw_se
+ icon_state = "fblue1"
+ dir = 9
+ omni
+ icon_state = "fblue1"
+ dir = 8
+
+/turf/simulated/floor/carpet/blue/fancy/narrow
+ icon_state = "fblue6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "fblue4"
+ dir = 1
+ south
+ icon_state = "fblue4"
+ dir = 2
+ east
+ icon_state = "fblue4"
+ dir = 4
+ west
+ icon_state = "fblue4"
+ dir = 8
+ northsouth
+ icon_state = "fblue1"
+ dir = 6
+ eastwest
+ icon_state = "fblue1"
+ dir = 10
+
+/turf/simulated/floor/carpet/blue/fancy/junction
+ icon_state = "fblue5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//purple carpet/////////////////////////////
+
+/turf/simulated/floor/carpet/purple/decal
+ icon_state = "fpurple1"
+ innercross
+ dir = 1
+ outercross
+ dir = 4
+
+/turf/simulated/floor/carpet/purple/standard/edge
+ icon_state = "purple2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/purple/standard/innercorner
+ icon_state = "purple3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "purple4"
+ dir = 5
+ se_triple
+ icon_state = "purple4"
+ dir = 6
+ nw_triple
+ icon_state = "purple4"
+ dir = 9
+ sw_triple
+ icon_state = "purple4"
+ dir = 10
+ ne_sw
+ icon_state = "purple1"
+ dir = 5
+ nw_se
+ icon_state = "purple1"
+ dir = 9
+ omni
+ icon_state = "purple1"
+ dir = 8
+
+/turf/simulated/floor/carpet/purple/standard/narrow
+ icon_state = "purple6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "purple4"
+ dir = 1
+ south
+ icon_state = "purple4"
+ dir = 2
+ east
+ icon_state = "purple4"
+ dir = 4
+ west
+ icon_state = "purple4"
+ dir = 8
+ solo
+ icon_state = "purple1"
+ dir = 4
+ northsouth
+ icon_state = "purple1"
+ dir = 6
+ eastwest
+ icon_state = "purple1"
+ dir = 10
+
+/turf/simulated/floor/carpet/purple/standard/junction
+ icon_state = "purple5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//fancy subvariant///////////////////////
+
+/turf/simulated/floor/carpet/purple/fancy/edge
+ icon_state = "fpurple2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/purple/fancy/innercorner
+ icon_state = "fpurple3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "fpurple4"
+ dir = 5
+ se_triple
+ icon_state = "fpurple4"
+ dir = 6
+ nw_triple
+ icon_state = "fpurple4"
+ dir = 9
+ sw_triple
+ icon_state = "fpurple4"
+ dir = 10
+ ne_sw
+ icon_state = "fpurple1"
+ dir = 5
+ nw_se
+ icon_state = "fpurple1"
+ dir = 9
+ omni
+ icon_state = "fpurple1"
+ dir = 8
+
+/turf/simulated/floor/carpet/purple/fancy/narrow
+ icon_state = "fpurple6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "fpurple4"
+ dir = 1
+ south
+ icon_state = "fpurple4"
+ dir = 2
+ east
+ icon_state = "fpurple4"
+ dir = 4
+ west
+ icon_state = "fpurple4"
+ dir = 8
+ northsouth
+ icon_state = "fpurple1"
+ dir = 6
+ eastwest
+ icon_state = "fpurple1"
+ dir = 10
+
+/turf/simulated/floor/carpet/purple/fancy/junction
+ icon_state = "fpurple5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//green carpet/////////////////////////////
+
+/turf/simulated/floor/carpet/green/decal
+ icon_state = "fgreen1"
+ innercross
+ dir = 1
+ outercross
+ dir = 4
+
+/turf/simulated/floor/carpet/green/standard/edge
+ icon_state = "green2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/green/standard/innercorner
+ icon_state = "green3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "green4"
+ dir = 5
+ se_triple
+ icon_state = "green4"
+ dir = 6
+ nw_triple
+ icon_state = "green4"
+ dir = 9
+ sw_triple
+ icon_state = "green4"
+ dir = 10
+ ne_sw
+ icon_state = "green1"
+ dir = 5
+ nw_se
+ icon_state = "green1"
+ dir = 9
+ omni
+ icon_state = "green1"
+ dir = 8
+
+/turf/simulated/floor/carpet/green/standard/narrow
+ icon_state = "green6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "green4"
+ dir = 1
+ south
+ icon_state = "green4"
+ dir = 2
+ east
+ icon_state = "green4"
+ dir = 4
+ west
+ icon_state = "green4"
+ dir = 8
+ solo
+ icon_state = "green1"
+ dir = 4
+ northsouth
+ icon_state = "green1"
+ dir = 6
+ eastwest
+ icon_state = "green1"
+ dir = 10
+
+/turf/simulated/floor/carpet/green/standard/junction
+ icon_state = "green5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
+
+//fancy subvariant///////////////////////
+
+/turf/simulated/floor/carpet/green/fancy/edge
+ icon_state = "fgreen2"
+
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+
+/turf/simulated/floor/carpet/green/fancy/innercorner
+ icon_state = "fgreen3"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ north
+ dir = 1
+ south
+ dir = 2
+ east
+ dir = 4
+ west
+ dir = 8
+ ne_triple
+ icon_state = "fgreen4"
+ dir = 5
+ se_triple
+ icon_state = "fgreen4"
+ dir = 6
+ nw_triple
+ icon_state = "fgreen4"
+ dir = 9
+ sw_triple
+ icon_state = "fgreen4"
+ dir = 10
+ ne_sw
+ icon_state = "fgreen1"
+ dir = 5
+ nw_se
+ icon_state = "fgreen1"
+ dir = 9
+ omni
+ icon_state = "fgreen1"
+ dir = 8
+
+/turf/simulated/floor/carpet/green/fancy/narrow
+ icon_state = "fgreen6"
+
+ ne
+ dir = 5
+ se
+ dir = 6
+ nw
+ dir = 9
+ sw
+ dir = 10
+ T_north
+ dir = 1
+ T_south
+ dir = 2
+ T_east
+ dir = 4
+ T_west
+ dir = 8
+ north
+ icon_state = "fgreen4"
+ dir = 1
+ south
+ icon_state = "fgreen4"
+ dir = 2
+ east
+ icon_state = "fgreen4"
+ dir = 4
+ west
+ icon_state = "fgreen4"
+ dir = 8
+ northsouth
+ icon_state = "fgreen1"
+ dir = 6
+ eastwest
+ icon_state = "fgreen1"
+ dir = 10
+
+/turf/simulated/floor/carpet/green/fancy/junction
+ icon_state = "fgreen5"
+
+ sw_e
+ dir = 1
+ ne_w
+ dir = 2
+ nw_s
+ dir = 4
+ se_n
+ dir = 8
+ sw_n
+ dir = 5
+ nw_e
+ dir = 6
+ ne_s
+ dir = 9
+ se_w
+ dir = 10
\ No newline at end of file
diff --git a/code/obj/access_spawn.dm b/code/obj/access_spawn.dm
new file mode 100644
index 0000000..e258f28
--- /dev/null
+++ b/code/obj/access_spawn.dm
@@ -0,0 +1,211 @@
+/obj/access_spawn
+ name = "access spawn"
+ desc = "Sets access of machines on the same turf as it to its access, then destroys itself."
+
+ New()
+ ..()
+ spawn(1)
+ src.setup()
+ spawn(10)
+ qdel(src)
+
+ /*
+ * loop through valid objects in the same location and, if they have no access set, set it to this one
+ */
+
+ proc/setup()
+ for (var/obj/machinery/M in src.loc)
+ if (!M.req_access)
+ M.req_access = src.req_access
+ else
+ M.req_access += src.req_access
+ //todo : autoname doors here too. var editing is illegal!
+
+
+/obj/access_spawn/security
+ name = "security access spawn"
+ req_access = list(access_security)
+
+/obj/access_spawn/brig
+ name = "brig access spawn"
+ req_access = list(access_brig)
+
+/obj/access_spawn/medical
+ name = "medical access spawn"
+ req_access = list(access_medical)
+
+/obj/access_spawn/morgue
+ name = "morgue access spawn"
+ req_access = list(access_morgue)
+
+/obj/access_spawn/tox
+ name = "tox access spawn"
+ req_access = list(access_tox)
+
+/obj/access_spawn/tox_storage
+ name = "tox access spawn"
+ req_access = list(access_tox_storage)
+
+/obj/access_spawn/medlab
+ name = "medlab access spawn"
+ req_access = list(access_medlab)
+
+/obj/access_spawn/research_director
+ name = "RD access spawn"
+ req_access = list(access_research_director)
+
+/obj/access_spawn/maint
+ name = "maint access spawn"
+ req_access = list(access_maint_tunnels)
+
+/obj/access_spawn/emergency_storage
+ name = "emergency storage access spawn"
+ req_access = list(access_emergency_storage)
+
+/obj/access_spawn/emergency_storage
+ name = "emergency storage access spawn"
+ req_access = list(access_emergency_storage)
+
+/obj/access_spawn/ai_upload
+ name = "ai upload access spawn"
+ req_access = list(access_ai_upload)
+
+/obj/access_spawn/teleporter
+ name = "teleporter access spawn"
+ req_access = list(access_teleporter)
+
+/obj/access_spawn/eva
+ name = "eva access spawn"
+ req_access = list(access_eva)
+
+/obj/access_spawn/heads
+ name = "heads access spawn"
+ req_access = list(access_heads)
+
+/obj/access_spawn/captain
+ name = "captain access spawn"
+ req_access = list(access_captain)
+
+/obj/access_spawn/medical_director
+ name = "MD access spawn"
+ req_access = list(access_medical_director)
+
+/obj/access_spawn/head_of_personnel
+ name = "HOP access spawn"
+ req_access = list(access_head_of_personnel)
+
+/obj/access_spawn/chapel_office
+ name = "chapel office access spawn"
+ req_access = list(access_chapel_office)
+
+/obj/access_spawn/tech_storage
+ name = "tech storage access spawn"
+ req_access = list(access_tech_storage)
+
+/obj/access_spawn/research
+ name = "research access spawn"
+ req_access = list(access_research)
+
+/obj/access_spawn/bar
+ name = "bar access spawn"
+ req_access = list(access_bar)
+
+/obj/access_spawn/janitor
+ name = "janitor access spawn"
+ req_access = list(access_janitor)
+
+/obj/access_spawn/crematorium
+ name = "crematorium access spawn"
+ req_access = list(access_crematorium)
+
+/obj/access_spawn/kitchen
+ name = "kitchen access spawn"
+ req_access = list(access_kitchen)
+
+/obj/access_spawn/robotics
+ name = "robotics access spawn"
+ req_access = list(access_robotics)
+
+/obj/access_spawn/hangar
+ name = "hangar access spawn"
+ req_access = list(access_hangar)
+
+/obj/access_spawn/cargo
+ name = "cargo access spawn"
+ req_access = list(access_cargo)
+
+/obj/access_spawn/chemistry
+ name = "chem access spawn"
+ req_access = list(access_chemistry)
+
+/obj/access_spawn/hydro
+ name = "hydro access spawn"
+ req_access = list(access_hydro)
+
+/obj/access_spawn/hos
+ name = "HOS access spawn"
+ req_access = list(access_maxsec)
+
+/obj/access_spawn/sec_lockers
+ name = "security weapons access spawn"
+ req_access = list(access_securitylockers)
+
+/obj/access_spawn/carry_permit
+ name = "carry permit access spawn"
+ req_access = list(access_carrypermit)
+
+/obj/access_spawn/engineering
+ name = "engineering access spawn"
+ req_access = list(access_engineering)
+
+/obj/access_spawn/engineering_storage
+ name = "engineering storage access spawn"
+ req_access = list(access_engineering_storage)
+
+/obj/access_spawn/engineering_eva
+ name = "engineering EVA access spawn"
+ req_access = list(access_engineering_eva)
+
+/obj/access_spawn/engineering_power
+ name = "engineering power access spawn"
+ req_access = list(access_engineering_power)
+
+/obj/access_spawn/engineering_engine
+ name = "engineering engine access spawn"
+ req_access = list(access_engineering_engine)
+
+/obj/access_spawn/engineering_power
+ name = "engineering power access spawn"
+ req_access = list(access_engineering_power)
+
+/obj/access_spawn/engineering_mechanic
+ name = "engineering mechanics access spawn"
+ req_access = list(access_engineering_mechanic)
+
+/obj/access_spawn/engineering_atmos
+ name = "engineering atmos access spawn"
+ req_access = list(access_engineering_atmos)
+
+/obj/access_spawn/engineering_control
+ name = "engineering control access spawn"
+ req_access = list(access_engineering_control)
+
+/obj/access_spawn/engineering_chief
+ name = "CE access spawn"
+ req_access = list(access_engineering_chief)
+
+/obj/access_spawn/mining_shuttle
+ name = "mining_shuttle access spawn"
+ req_access = list(access_mining_shuttle)
+
+/obj/access_spawn/mining
+ name = "mining EVA access spawn"
+ req_access = list(access_mining)
+
+/obj/access_spawn/mining_outpost
+ name = "mining_outpost access spawn"
+ req_access = list(access_mining_outpost)
+
+/obj/access_spawn/syndie_shuttle
+ name = "syndie_shuttle access spawn"
+ req_access = list(access_syndicate_shuttle)
\ No newline at end of file
diff --git a/code/obj/machinery.dm b/code/obj/machinery.dm
index 50edf4e..0fe052d 100644
--- a/code/obj/machinery.dm
+++ b/code/obj/machinery.dm
@@ -321,3 +321,7 @@
var/list/signals = list()
var/list/transmitters = list()
+/obj/machinery/drainage
+ name = "drain"
+ desc = "I do not do anything, I am just a placeholder."
+ icon_state = "gsensor0"
\ No newline at end of file
diff --git a/code/obj/npc/shady_robot.dm b/code/obj/npc/shady_robot.dm
index e6d1e32..6d10d36 100644
--- a/code/obj/npc/shady_robot.dm
+++ b/code/obj/npc/shady_robot.dm
@@ -20,7 +20,7 @@
var/list/failed_purchase_dialogue = null
var/pickupdialogue = null
var/pickupdialoguefailure = null
- var/list/trader_areas = list(/area/station/maintenance/aftsolar,/area/station/solar/aft,/area/station/maintenance/starboard,/area/station/maintenance/asmaint,/area/station/maintenance/starboardsolar,/area/station/solar/starboard,/area/station/maintenance/aft,/area/station/maintenance/disposal,/area/station/maintenance/apmaint,/area/station/maintenance/portsolar,/area/station/solar/port,/area/station/hallway/secondary/construction,/area/station/maintenance/fpmaint,/area/station/crew_quarters/quartersA,/area/station/crew_quarters/quartersB,/area/station/crew_quarters/observatory,/area/station/wreckage,/area/station/maintenance/fore,/area/station/maintenance/maintcentral)
+ var/list/trader_areas = list(/area/station/maintenance/southsolar,/area/station/solar/south,/area/station/maintenance/east,/area/station/maintenance/SEmaint,/area/station/maintenance/eastsolar,/area/station/solar/east,/area/station/maintenance/south,/area/station/maintenance/disposal,/area/station/maintenance/SWmaint,/area/station/maintenance/westsolar,/area/station/solar/west,/area/station/hallway/secondary/construction,/area/station/maintenance/NWmaint,/area/station/crew_quarters/quartersA,/area/station/crew_quarters/quartersB,/area/station/crew_quarters/observatory,/area/station/wreckage,/area/station/maintenance/north,/area/station/maintenance/maintcentral)
var/doing_a_thing = 0
// This list is in a specific order!!
diff --git a/code/obj/window.dm b/code/obj/window.dm
index fdadc77..549a901 100644
--- a/code/obj/window.dm
+++ b/code/obj/window.dm
@@ -630,7 +630,9 @@
//layer = 99
pressure_resistance = 4*ONE_ATMOSPHERE
var/win_path = "/obj/window"
+ var/grille_path = "/obj/grille/steel"
var/full_win = 0 // adds a full window as well
+ var/no_dirs = 0 //ignore directional
New()
spawn(1)
@@ -639,15 +641,20 @@
qdel(src)
proc/set_up()
- if (!locate(/obj/grille/steel) in get_turf(src))
- new /obj/grille/steel(src.loc)
- for (var/dir in cardinal)
- var/turf/T = get_step(src, dir)
- if (!locate(/obj/wingrille_spawn) in T)
- var/obj/window/new_win = text2path("[src.win_path]/[dir2text(dir)]")
- new new_win(src.loc)
+ if (!locate(text2path(src.grille_path)) in get_turf(src))
+ var/obj/grille/new_grille = text2path(src.grille_path)
+ new new_grille(src.loc)
+
+ if (!no_dirs)
+ for (var/dir in cardinal)
+ var/turf/T = get_step(src, dir)
+ if (!locate(/obj/wingrille_spawn) in T)
+ var/obj/window/new_win = text2path("[src.win_path]/[dir2text(dir)]")
+ new new_win(src.loc)
if (src.full_win)
- if (!locate(text2path(src.win_path)) in get_turf(src))
+ if(!no_dirs || !locate(text2path(src.win_path)) in get_turf(src))
+ // if we have directional windows, there's already a window (or windows) from directional windows
+ // only check if there's no window if we're expecting there to be no window so spawn a full window
var/obj/window/new_win = text2path(src.win_path)
new new_win(src.loc)
@@ -688,5 +695,19 @@
win_path = "/obj/window/bulletproof"
full
+ name = "bulletproof window grille spawner"
+ icon_state = "br-wingrille"
icon_state = "b-wingrille_f"
full_win = 1
+
+ auto
+ name = "reinforced autowindow grille spawner"
+ win_path = "/obj/window/auto/reinforced"
+ full_win = 1
+ no_dirs = 1
+ icon_state = "r-wingrille_f"
+
+ crystal
+ name = "crystal autowindow grille spawner"
+ win_path = "/obj/window/auto/crystal/reinforced"
+ icon_state = "p-wingrille_f"
diff --git a/goonstation.dme b/goonstation.dme
index ee69168..2d16571 100644
--- a/goonstation.dme
+++ b/goonstation.dme
@@ -29,6 +29,7 @@ var/datum/preMapLoad/preMapLoad = new
#include "code\F_Color_Code2.dm"
#include "code\floors.dm"
#include "code\floors_airless.dm"
+#include "code\floors_carpet.dm"
#include "code\floors_unsimulated.dm"
#include "code\global.dm"
#include "code\hub.dm"
@@ -600,6 +601,7 @@ var/datum/preMapLoad/preMapLoad = new
#include "code\mob\living\silicon\hivebot\hive_modules.dm"
#include "code\mob\living\silicon\hivebot\mainframe.dm"
#include "code\mob\living\silicon\robot\robot_modules.dm"
+#include "code\obj\access_spawn.dm"
#include "code\obj\airbridge.dm"
#include "code\obj\blob.dm"
#include "code\obj\construction_frame.dm"
diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi
index 45bfec5..986e5cd 100644
Binary files a/icons/turf/areas.dmi and b/icons/turf/areas.dmi differ
diff --git a/maps/_Map Submission Guidelines.md b/maps/_Map Submission Guidelines.md
index d9a139e..c6e6e12 100644
--- a/maps/_Map Submission Guidelines.md
+++ b/maps/_Map Submission Guidelines.md
@@ -10,7 +10,7 @@ If these features do not work in the **2016 release** then your map will be **re
- Crates should be able to be sold from cargo from the expected conveyor belt **without player intervention**. Having to open a few-tile conveyor "airlock" is fine (see Destiny).
-- **Access levels** (for both doors and machinery, e.g. NanoMeds, AI turrets) should be correct. Missing a small handful is acceptable, but if excess access levels are incorrect (at the coders' discretion) the map will be rejected.
+- **Access levels** (for both doors and machinery, e.g. NanoMeds, AI turrets) should be correct. Missing a small handful is acceptable, but if excess access levels are incorrect (at the coders' discretion) the map will be rejected. Using the new access_spawn objects is required.
- Wiring and pipes (disposals, mail, brig, and morgue/crematorium, if present) should be **complete and error-free** for the most part. Obviously, it is okay if you are missing a single wire or something.
@@ -30,14 +30,20 @@ If these features do not work in the **2016 release** then your map will be **re
- A **correctly linked** up syndicate listening post (i.e. nuclear operatives should be able to teleport there), and the airlocks should absolutely be correctly configured.
+- A **Correctly placed** landmark for the Map at 1,1.
+
+- **Windows** should be placed using the `obj/wingrille_spawn` spawners.
+
+- **Drains**, the path is `/obj/machinery/drainage`. It won't actually drain anything, but it'll convert into one that does.
+
#### Turf Replacements
-Goonstation now primarily uses pathed floors instead of instanced versions of `/turf/simulated/floor`. For example, `/turf/simulated/floor/red/corner` is a tile that is grey with red corners in the cardinal directions for its direction states. Because of this change, maps should be primarily made from scratch and not from copied parts of old maps. It is possible to convert old maps,
+Goonstation now primarily uses pathed floors instead of instanced versions of `/turf/simulated/floor`. For example, `/turf/simulated/floor/red/corner` is a tile that is grey with red corners in the cardinal directions for its direction states. Because of this change, maps should be primarily made from scratch and not from copied parts of old maps. It is possible to convert old maps,
- All of `/turf/simulated/floor/grid` must be changed to `/turf/simulated/floor/circuit`
-- All of `/turf/simulated/floor/plating/airless/catwalk` must be changed to `/turf/simulated/floor/airless/catwalk`
+- All of `/turf/simulated/floor/plating/airless/catwalk` must be changed to `/turf/simulated/floor/airless/plating/catwalk`
- All maps must **not use** instanced floors for the majority of their turfs.
@@ -65,9 +71,14 @@ This RegEx must be done for every floor path/icon_state in floors.dm if you want
That's all to it! If you have any questions about this RegEx replace for converting maps, visit #imcoder on SynIRC or the Goonstation Discord.
-## Recommended
+## Recommended
###### These are generally recommended map features that should probably be present in your map. If they are present, please ensure they work as intended.
- An owlery or aviary.
-- Drains, the path is `/obj/machinery/drainage`. However, you would need to make a placeholder object and not submit it along with your map.
-- Monkeys (including a place for Stirstir in the brig)
-- Functioning buddy-paths. Including a tour guide written for Murray.
+- Monkeys spawn landmarks (including a place for Stirstir in the brig)
+- Functioning buddy-paths. Including a tour guide written for Murray/Tour Buddy.
+- If you are using perspective walls, try to minimize placing objects on the south side of rooms.
+- Blobstart, peststart, and halloweenspawn landmarks.
+- Medbay and Security should be well-thought out, daresay more so than other departments.
+- Arrivals should have more than one exit, to prevent people from being unable to join the game.
+- Cloning should follow the style of modern maps and be mostly public access.
+- Feel free to take inspiration from other maps, but please don't copy paste large parts of them.
\ No newline at end of file
diff --git a/maps/cogmap.dmm b/maps/cogmap.dmm
index e290938..9f08cb4 100644
--- a/maps/cogmap.dmm
+++ b/maps/cogmap.dmm
@@ -81,16 +81,16 @@
"abC" = (/turf/simulated/shuttle/wall/cockpit/window{name = "window"; icon_state = "wall_space"; dir = 4},/area/shuttle/arrival/station)
"abD" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced,/turf/simulated/shuttle/floor{icon_state = "floor6"},/area/shuttle/arrival/station)
"abE" = (/obj/landmark{name = "JoinLate"},/obj/stool/chair/comfy/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
-"abF" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
-"abG" = (/obj/lattice,/turf/space,/area/station/solar/port)
+"abF" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
+"abG" = (/obj/lattice,/turf/space,/area/station/solar/west)
"abH" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area)
"abI" = (/obj/item/device/radio/beacon,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
"abJ" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/landmark{name = "JoinLate"},/obj/stool/chair/comfy/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
-"abK" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"abL" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"abM" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"abN" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"abO" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
+"abK" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"abL" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"abM" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"abN" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"abO" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
"abP" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"abQ" = (/obj/grille/steel,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"abR" = (/obj/grille/steel,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
@@ -100,8 +100,8 @@
"abV" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"abW" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"abX" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"abY" = (/obj/cable,/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
-"abZ" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/port)
+"abY" = (/obj/cable,/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
+"abZ" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/west)
"aca" = (/obj/grille/steel,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"acb" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/observatory)
"acc" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer/telescope,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/observatory)
@@ -135,30 +135,30 @@
"acE" = (/turf/simulated/floor{icon_state = "corner_west"},/area/station/hallway/secondary/entry)
"acF" = (/turf/simulated/floor{icon_state = "corner_east"; dir = 2},/area/station/hallway/secondary/entry)
"acG" = (/turf/simulated/shuttle/wall/cockpit/window{name = "window"},/area/shuttle/arrival/station)
-"acH" = (/turf/space,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/port)
-"acI" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"acJ" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"acK" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tracker/port,/turf/simulated/floor/plating/airless,/area/station/solar/port)
+"acH" = (/turf/space,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/west)
+"acI" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"acJ" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"acK" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tracker/port,/turf/simulated/floor/plating/airless,/area/station/solar/west)
"acL" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"acM" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/observatory)
-"acN" = (/obj/lattice{icon_state = "lattice-dir"; dir = 5},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
-"acO" = (/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
-"acP" = (/obj/machinery/atmospherics/pipe/simple{dir = 6; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
-"acQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
-"acR" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
-"acS" = (/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
+"acN" = (/obj/lattice{icon_state = "lattice-dir"; dir = 5},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
+"acO" = (/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
+"acP" = (/obj/machinery/atmospherics/pipe/simple{dir = 6; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
+"acQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
+"acR" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
+"acS" = (/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
"acT" = (/turf/simulated/shuttle/wall/cockpit{icon_state = "shuttlecock"; dir = 1},/area/shuttle/arrival/station)
-"acU" = (/turf/simulated/wall,/area/station/maintenance/fpmaint)
+"acU" = (/turf/simulated/wall,/area/station/maintenance/NWmaint)
"acV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Observatory"},/turf/simulated/floor,/area/station/crew_quarters/observatory)
-"acW" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization{name = "Air Hookup Reserve Tank (Air)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"acX" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"acY" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"acZ" = (/obj/machinery/atmospherics/portables_connector{name = "Crew Quarters Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ada" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Crew Quarters)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adb" = (/obj/machinery/atmospherics/portables_connector{name = "Central Primary Hallway Repressurization Port"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adc" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Central Primary Hallway)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"add" = (/obj/machinery/atmospherics/portables_connector{name = "Cafeterial Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ade" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Cafeteria)"},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
+"acW" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization{name = "Air Hookup Reserve Tank (Air)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"acX" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"acY" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"acZ" = (/obj/machinery/atmospherics/portables_connector{name = "Crew Quarters Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ada" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Crew Quarters)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adb" = (/obj/machinery/atmospherics/portables_connector{name = "Central Primary Hallway Repressurization Port"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adc" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Central Primary Hallway)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"add" = (/obj/machinery/atmospherics/portables_connector{name = "Cafeterial Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ade" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Cafeteria)"},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
"adf" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"adg" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 4; icon_state = "cautioncorner"},/area/station/hallway/secondary/entry)
"adh" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/station/hallway/secondary/entry)
@@ -174,19 +174,19 @@
"adr" = (/obj/grille/steel,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"ads" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 8},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"adt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_x = 0},/turf/simulated/wall/r_wall,/area/station/security/armory)
-"adu" = (/obj/table/auto,/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adv" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adw" = (/obj/rack,/obj/item/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adx" = (/obj/machinery/power/apc{areastring = "Observatory"; dir = 1; name = "Observatory APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"adu" = (/obj/table/auto,/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adv" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adw" = (/obj/rack,/obj/item/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adx" = (/obj/machinery/power/apc{areastring = "Observatory"; dir = 1; name = "Observatory APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ady" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"adz" = (/turf/simulated/floor,/area/station/crew_quarters/quarters)
"adA" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
-"adB" = (/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adC" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adE" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adF" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"adG" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
+"adB" = (/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adC" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adE" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adF" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"adG" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
"adH" = (/turf/simulated/wall/false_wall,/area/station/hallway/secondary/construction2)
"adI" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/construction2)
"adJ" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/construction2)
@@ -205,19 +205,19 @@
"adW" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 2},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"adX" = (/turf/simulated/wall/r_wall,/area/station/security/armory)
"adY" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 5},/turf/space,/area)
-"adZ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aea" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aec" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"adZ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aea" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aec" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aed" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"aee" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aef" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aeg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
-"aeh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Crew Quarters"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aei" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aej" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Central Primary Hallway"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aek" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ael" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Cafeteria"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aeh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Crew Quarters"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aei" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aej" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Central Primary Hallway"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aek" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ael" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Cafeteria"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aem" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/rods/steel,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction2)
"aen" = (/obj/submachine/slot_machine,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction2)
"aeo" = (/obj/machinery/light/small{dir = 1; status = 2},/obj/table/auto,/obj/item/storage/toolbox/emergency,/obj/item/device/pda_module/flashlight/high_power,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction2)
@@ -233,25 +233,25 @@
"aey" = (/obj/machinery/sleep_console,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
"aez" = (/turf/simulated/floor/plating,/obj/table/auto,/obj/item/device/infra_sensor,/obj/item/device/infra,/obj/item/device/infra,/obj/item/device/infra,/obj/item/clothing/head/helmet/hardhat,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
"aeA" = (/obj/item/clothing/under/jersey/red,/obj/item/clothing/under/jersey/purple,/obj/item/clothing/under/jersey/green,/obj/item/clothing/under/jersey/black,/obj/item/clothing/under/jersey,/obj/item/basketball,/obj/storage/crate,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
-"aeB" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"aeC" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/station/solar/port)
+"aeB" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"aeC" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/station/solar/west)
"aeD" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"aeE" = (/obj/storage/secure/closet/security/armory,/turf/simulated/floor{icon_state = "caution_east"},/area/station/security/armory)
"aeF" = (/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"aeG" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/communications,/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"aeH" = (/obj/storage/secure/closet/security/armory,/turf/simulated/floor{icon_state = "caution_west"},/area/station/security/armory)
"aeI" = (/obj/grille/steel,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/security/armory)
-"aeJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeK" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeL" = (/obj/machinery/power/apc{areastring = "Crew Quarters A"; dir = 2; name = "Crew Quarters A APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aeJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeK" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeL" = (/obj/machinery/power/apc{areastring = "Crew Quarters A"; dir = 2; name = "Crew Quarters A APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aeM" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/quarters)
"aeN" = (/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aeO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/crew_quarters/quarters)
-"aeP" = (/obj/machinery/power/apc{areastring = "Crew Quarters B"; dir = 2; name = "Crew Quarters B APC"; pixel_y = -24},/obj/cable,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeQ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeR" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeT" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aeP" = (/obj/machinery/power/apc{areastring = "Crew Quarters B"; dir = 2; name = "Crew Quarters B APC"; pixel_y = -24},/obj/cable,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeQ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeR" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeT" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aeU" = (/obj/machinery/atmospherics/pipe/simple{dir = 6; icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/crew_quarters/clown)
"aeV" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/crew_quarters/clown)
"aeW" = (/obj/juggleplaque,/turf/simulated/wall/r_wall,/area/station/crew_quarters/clown)
@@ -272,13 +272,13 @@
"afl" = (/obj/fireworksbox,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
"afm" = (/obj/machinery/bot/floorbot,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
"afn" = (/turf/simulated/wall/r_wall,/area/station/hallway/secondary/construction)
-"afo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(13,40); req_access_txt = null},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"afp" = (/turf/simulated/wall/r_wall,/area/station/maintenance/portsolar)
-"afq" = (/turf/simulated/wall,/area/station/maintenance/portsolar)
-"afr" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"afs" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aft" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"afu" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
+"afo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(13,40); req_access_txt = null},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"afp" = (/turf/simulated/wall/r_wall,/area/station/maintenance/westsolar)
+"afq" = (/turf/simulated/wall,/area/station/maintenance/westsolar)
+"afr" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"afs" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aft" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"afu" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
"afv" = (/obj/cable{icon_state = "1-2"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"afw" = (/turf/simulated/wall,/area/station/crew_quarters/quartersA)
"afx" = (/obj/machinery/vending/coffee,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/station/crew_quarters/quarters)
@@ -289,7 +289,7 @@
"afC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/obj/storage/closet/office,/turf/simulated/floor{dir = 4; icon_state = "bluecorner"},/area/station/crew_quarters/quarters)
"afD" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table/auto,/obj/machinery/networked/printer{print_id = "Lounge"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 5},/area/station/crew_quarters/quarters)
"afE" = (/turf/simulated/wall,/area/station/crew_quarters/quartersB)
-"afF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"afF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"afG" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/false_wall,/area/station/crew_quarters/clown)
"afH" = (/obj/decal/cleanable/cobweb,/obj/decal/cleanable/dirt,/obj/decal/cleanable/oil,/obj/reagent_dispensers/heliumtank,/turf/simulated/floor/plating,/area/station/crew_quarters/clown)
"afI" = (/obj/stool/bed,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; status = 2},/obj/item/paper/book/the_trial,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/crew_quarters/clown)
@@ -302,11 +302,11 @@
"afP" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
"afQ" = (/obj/item/tile/steel,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
"afR" = (/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
-"afS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/airless,/area/station/maintenance/portsolar)
-"afT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/solar_control/port,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"afU" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"afV" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"afW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"afS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/airless,/area/station/maintenance/westsolar)
+"afT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/solar_control/port,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"afU" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"afV" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"afW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"afX" = (/obj/table/auto,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/gun/kinetic/dart_rifle,/obj/item/ammo/bullets/tranq_darts,/obj/item/ammo/bullets/tranq_darts/anti_mutant,/obj/item/clothing/glasses/blindfold,/obj/item/clothing/glasses/blindfold,/turf/simulated/floor{icon_state = "caution_east"},/area/station/security/armory)
"afY" = (/obj/cable{icon_state = "1-2"},/obj/iv_stand,/obj/item/reagent_containers/iv_drip,/obj/item/reagent_containers/iv_drip,/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"afZ" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor{icon_state = "caution_west"},/area/station/security/armory)
@@ -320,7 +320,7 @@
"agh" = (/obj/storage/crate,/obj/item/clothing/under/misc/barber,/obj/item/clothing/shoes/brown,/obj/window/cubicle{dir = 4},/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"agi" = (/obj/table/auto,/obj/machinery/light/small{dir = 1},/obj/bedsheetbin,/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"agj" = (/obj/window/cubicle{dir = 8},/obj/storage/closet/wardrobe/blue,/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
-"agk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"agk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"agl" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/crew_quarters/clown)
"agm" = (/obj/table/auto,/obj/deskclutter,/obj/decal/cleanable/dirt,/obj/item/bikehorn,/obj/item/reagent_containers/food/snacks/pie/cream,/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/crew_quarters/clown)
"agn" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/generic,/obj/stool/chair/syndicate,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/npc/trader/exclown{trader_area = "/area/station/crew_quarters/clown"},/turf/simulated/floor/plating,/area/station/crew_quarters/clown)
@@ -345,10 +345,10 @@
"agG" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
"agH" = (/obj/item/sheet/steel/reinforced{amount = 50},/obj/item/clothing/ears/earmuffs,/obj/item/storage/box/beakerbox,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
"agI" = (/turf/simulated/floor/plating,/obj/item/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/item/clothing/glasses/eyepatch,/obj/storage/crate,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
-"agJ" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/portsolar)
-"agK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"agL" = (/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"agM" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"agJ" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/westsolar)
+"agK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"agL" = (/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"agM" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"agN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"agO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/armory)
"agP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table/auto,/obj/item/device/radio/electropack,/obj/item/device/radio/electropack,/obj/item/device/radio/signaler,/obj/item/device/radio/signaler,/turf/simulated/floor{icon_state = "caution_east"},/area/station/security/armory)
@@ -381,12 +381,12 @@
"ahq" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/turf/simulated/floor,/area/station/hallway/secondary/entry)
"ahr" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/hallway/secondary/construction)
"ahs" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
-"aht" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"aht" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"ahz" = (/turf/simulated/wall/r_wall,/area/station/hangar/catering{name = "Catering Hangar"})
"ahA" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "cateringdock_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"ahB" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/hangar/catering{name = "Catering Hangar"})
@@ -394,8 +394,8 @@
"ahD" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 1},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"ahE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Armory"; req_access_txt = "37"},/turf/simulated/floor,/area/station/security/armory)
"ahF" = (/obj/securearea,/obj/cable{icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/station/security/armory)
-"ahG" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ahH" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ahG" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ahH" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ahI" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersA)
"ahJ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quarters)
"ahK" = (/obj/stool/chair{dir = 4},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -408,20 +408,20 @@
"ahR" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/clown)
"ahS" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/hallway/secondary/construction2)
"ahT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/hallway/secondary/construction2)
-"ahU" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ahV" = (/obj/grille/steel,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ahU" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ahV" = (/obj/grille/steel,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ahW" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/secondary/entry)
"ahX" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/secondary/entry)
"ahY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hallway/secondary/entry)
"ahZ" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hallway/secondary/entry)
"aia" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/secondary/entry)
-"aib" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aic" = (/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aid" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aie" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aif" = (/turf/simulated/wall/r_wall,/area/station/maintenance/apmaint)
-"aig" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aih" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall,/area/station/maintenance/portsolar)
+"aib" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aic" = (/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aid" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aie" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aif" = (/turf/simulated/wall/r_wall,/area/station/maintenance/SWmaint)
+"aig" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aih" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall,/area/station/maintenance/westsolar)
"aii" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"aij" = (/obj/machinery/mass_driver{dir = 1; drive_range = 23; id = "cateringdock_out"},/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"aik" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_x = 0},/turf/simulated/wall/r_wall,/area/station/security/armory)
@@ -434,9 +434,9 @@
"air" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "sec_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/security)
"ais" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/routingdepot/security)
"ait" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"},/obj/machinery/door/poddoor{id = "sec_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/security)
-"aiu" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/storage/crate{desc = "Whoa! What will they think of next?"; name = "Boxes in a Box"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiv" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiw" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aiu" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/storage/crate{desc = "Whoa! What will they think of next?"; name = "Boxes in a Box"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiv" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiw" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aix" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"aiy" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"aiz" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
@@ -444,16 +444,16 @@
"aiB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec"; location = "crew"; name = "bot navigation beacon"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aiC" = (/obj/stool/chair{icon_state = "chair"; dir = 1},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aiD" = (/obj/shrub,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/crew_quarters/quarters)
-"aiE" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiF" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiG" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiH" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiI" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiK" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiL" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiM" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aiN" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aiE" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiF" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiG" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiH" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiI" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiK" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiL" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiM" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aiN" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aiO" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"aiP" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "cautioncorner"},/area/station/hallway/secondary/entry)
"aiQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/hallway/secondary/entry)
@@ -461,15 +461,15 @@
"aiS" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/hallway/secondary/entry)
"aiT" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "cautioncorner"; dir = 1},/area/station/hallway/secondary/entry)
"aiU" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"aiV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aiW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/switch_junction/biofilter{dir = 8; icon_state = "pipe-sj2"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aiX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aiY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aiZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aja" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajc" = (/obj/rack,/obj/item/crowbar,/obj/item/crowbar,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/decal/cleanable/cobweb2,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajd" = (/turf/simulated/wall,/area/station/maintenance/apmaint)
+"aiV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aiW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/switch_junction/biofilter{dir = 8; icon_state = "pipe-sj2"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aiX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aiY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aiZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aja" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajc" = (/obj/rack,/obj/item/crowbar,/obj/item/crowbar,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/decal/cleanable/cobweb2,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajd" = (/turf/simulated/wall,/area/station/maintenance/SWmaint)
"aje" = (/obj/machinery/computer/barcode,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/hangar/catering{name = "Catering Hangar"})
"ajf" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"ajg" = (/obj/lattice{icon_state = "lattice-dir"; dir = 4},/obj/machinery/light/runway_light/delay2,/turf/space,/area)
@@ -481,9 +481,9 @@
"ajm" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 1},/area/station/security/brig)
"ajn" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot/security)
"ajo" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"},/turf/simulated/floor/plating,/area/station/routingdepot/security)
-"ajp" = (/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/grille/steel,/turf/simulated/floor/plating/airless,/area/station/maintenance/fpmaint)
-"ajq" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/toolbox/mechanical,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajr" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ajp" = (/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/grille/steel,/turf/simulated/floor/plating/airless,/area/station/maintenance/NWmaint)
+"ajq" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/toolbox/mechanical,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajr" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ajs" = (/obj/window/cubicle{dir = 4},/obj/storage/closet/wardrobe/pink,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"ajt" = (/obj/table/auto,/obj/item/storage/firstaid/regular,/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/crew_quarters/quarters)
"aju" = (/obj/table/auto,/obj/item/storage/box/cutlery,/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -493,15 +493,15 @@
"ajy" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quarters)
"ajz" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"ajA" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
-"ajB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajC" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajE" = (/obj/machinery/power/apc{areastring = "Shower Room"; dir = 2; name = "Shower Room APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajH" = (/obj/machinery/power/apc{areastring = "Fitness Room"; dir = 2; name = "Fitness Room APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ajB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajC" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajE" = (/obj/machinery/power/apc{areastring = "Shower Room"; dir = 2; name = "Shower Room APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajH" = (/obj/machinery/power/apc{areastring = "Fitness Room"; dir = 2; name = "Fitness Room APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ajK" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"ajL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 2; icon_state = "cautioncorner"},/area/station/hallway/secondary/entry)
"ajM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/hallway/secondary/entry)
@@ -509,17 +509,17 @@
"ajO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 2; icon_state = "cautioncorner"},/area/station/hallway/secondary/entry)
"ajP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/hallway/secondary/entry)
"ajQ" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"ajR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"ajR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"ajT" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
"ajU" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"ajV" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"ajW" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"ajX" = (/turf/simulated/wall,/area/station/crew_quarters/kitchen)
"ajY" = (/obj/decal/poster/wallsign/chsl,/turf/simulated/wall,/area/station/crew_quarters/kitchen)
-"ajZ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Kitchen"; dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aka" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akb" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"ajZ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Kitchen"; dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aka" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akb" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"akc" = (/obj/table/auto,/obj/item/hand_labeler,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"akd" = (/turf/simulated/floor{icon_state = "corner_nwest"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
"ake" = (/turf/simulated/floor{icon_state = "caution_north"},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -542,8 +542,8 @@
"akv" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/routingdepot/security)
"akw" = (/obj/item/raw_material/shard/glass,/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/station/wreckage)
"akx" = (/obj/grille/steel,/obj/window/reinforced/east,/turf/simulated/floor/plating/airless,/area/station/wreckage)
-"aky" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akz" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aky" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akz" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"akA" = (/obj/table/auto,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/item/storage/box/diskbox,/obj/item/decoration/ashtray,/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/crew_quarters/quarters)
"akB" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table/auto,/obj/machinery/computer3/generic/personal,/obj/item/reagent_containers/food/snacks/cereal_box,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"akC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -554,8 +554,8 @@
"akH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"akI" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment{dir = 4},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"akJ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/crew_quarters/quartersB)
-"akK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akL" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"akK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akL" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"akM" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/showers)
"akN" = (/turf/simulated/wall,/area/station/crew_quarters/showers)
"akO" = (/turf/simulated/wall,/area/station/crew_quarters/fitness)
@@ -572,7 +572,7 @@
"akZ" = (/obj/table/auto,/obj/submachine/mixer,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"ala" = (/obj/submachine/chef_oven,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"alb" = (/obj/submachine/chef_sink,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
-"alc" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"alc" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"ald" = (/obj/machinery/computer/ordercomp,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"ale" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/catering{name = "Catering Hangar"})
"alf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -594,8 +594,8 @@
"alv" = (/obj/machinery/light/small{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/routingdepot/security)
"alw" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/station/wreckage)
"alx" = (/obj/landmark/artifact,/turf/simulated/floor/airless{icon_state = "damaged5"},/area/station/wreckage)
-"aly" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aly" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alA" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"alB" = (/obj/storage/crate,/obj/item/clothing/under/misc/vice,/obj/item/clothing/glasses/sunglasses,/obj/window/cubicle{dir = 8},/obj/item/reagent_containers/food/drinks/bottle/fancy_beer,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"alC" = (/obj/stool/chair{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = -28; pixel_y = 0},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/crew_quarters/quarters)
@@ -629,7 +629,7 @@
"ame" = (/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"amf" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/satchel/hydro,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"amg" = (/obj/machinery/vending/monkey,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
-"amh" = (/obj/reagent_dispensers/foamtank,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"amh" = (/obj/reagent_dispensers/foamtank,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"ami" = (/obj/storage/crate,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"amj" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/catering{name = "Catering Hangar"})
"amk" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -662,7 +662,7 @@
"amL" = (/obj/reagent_dispensers/watertank/fountain,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 6},/area/station/crew_quarters/quarters)
"amM" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/item/clothing/suit/bedsheet{bcolor = "blue"; icon_state = "bedsheet-blue"},/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"amN" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
-"amO" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"amO" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"amP" = (/obj/machinery/door/window/eastleft,/obj/item/storage/toilet{dir = 4},/obj/landmark/start{name = "Staff Assistant"},/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"amQ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock{name = "Showers"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"amR" = (/turf/simulated/floor{icon_state = "corner_nwest"; dir = 8},/area/station/crew_quarters/fitness)
@@ -681,9 +681,9 @@
"ane" = (/obj/machinery/vending/kitchen,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"anf" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock{name = "Catering Storage"; req_access_txt = "25;28;"; req_only_one_required = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
"ang" = (/turf/simulated/wall,/area/station/crew_quarters/catering)
-"anh" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ani" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"anj" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"anh" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ani" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"anj" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"ank" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hangar/catering{name = "Catering Hangar"})
"anl" = (/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hangar/catering{name = "Catering Hangar"})
"anm" = (/turf/simulated/floor{icon_state = "caution_east"},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -702,8 +702,8 @@
"anz" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"anA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"anB" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/quartersB)
-"anC" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"anD" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"anC" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"anD" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"anE" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/obj/rack,/obj/item/sponge{name = "loofah"},/obj/item/clothing/under/gimmick/macho,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"anF" = (/obj/machinery/door/window/northleft,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"anG" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/obj/rack,/obj/item/storage/firstaid/regular,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
@@ -735,12 +735,12 @@
"aog" = (/obj/submachine/chem_extractor,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"aoh" = (/obj/storage/crate{desc = "Wow! Crate may or may not still contain bottles."; name = "Bottles in a Crate"},/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"aoi" = (/obj/table/auto,/obj/item/storage/toolbox/emergency,/obj/item/storage/box/beakerbox,/obj/item/storage/box/glassbox,/obj/item/storage/box/syringes,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
-"aoj" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"aok" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aol" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aom" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aon" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aoo" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"aoj" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"aok" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aol" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aom" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aon" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aoo" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"aop" = (/obj/item/crowbar,/obj/table/auto,/obj/item/hand_labeler,/obj/item/shipcomponent/secondary_system/cargo,/obj/item/crowbar,/turf/simulated/floor{icon_state = "caution_north"},/area/station/hangar/catering{name = "Catering Hangar"})
"aoq" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_north"},/area/station/hangar/catering{name = "Catering Hangar"})
"aor" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor{icon_state = "caution_north"},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -767,7 +767,7 @@
"aoM" = (/obj/grille/steel,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/station/wreckage)
"aoN" = (/obj/structure/girder,/obj/grille/steel,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/airless{icon_state = "damaged2"},/area/station/wreckage)
"aoO" = (/obj/structure/girder,/turf/simulated/floor/airless{icon_state = "floorscorched1"},/area/station/wreckage)
-"aoP" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/fpmaint)
+"aoP" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/NWmaint)
"aoQ" = (/turf/simulated/wall,/area/station/crew_quarters/barber_shop)
"aoR" = (/obj/storage/crate,/obj/item/clothing/head/wig,/obj/item/dye_bottle,/obj/item/clothing/under/misc/barber,/obj/item/scissors,/obj/item/razor_blade,/obj/item/clothing/head/bald_cap,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aoS" = (/obj/table/auto,/obj/item/clothing/gloves/latex,/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
@@ -781,9 +781,9 @@
"apa" = (/obj/machinery/bathtub{anchored = 1; dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"apb" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"apc" = (/obj/machinery/shower{icon_state = "showerhead"; dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"apd" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ape" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"apf" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"apd" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ape" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"apf" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"apg" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aph" = (/obj/table/wood/auto,/obj/item/reagent_containers/food/drinks/bottle/bottledwater,/obj/item/storage/firstaid/regular,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"api" = (/turf/simulated/floor,/area/station/crew_quarters/fitness)
@@ -804,11 +804,11 @@
"apx" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"apy" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"apz" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
-"apA" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"apB" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"apC" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"apD" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"apE" = (/obj/shrub,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
+"apA" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"apB" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"apC" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"apD" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"apE" = (/obj/shrub,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
"apF" = (/turf/simulated/wall,/area/station/hydroponics/lobby)
"apG" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hydroponics/lobby)
"apH" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hydroponics/lobby)
@@ -836,7 +836,7 @@
"aqd" = (/obj/item/raw_material/rock,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage)
"aqe" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/creepy_sound_trigger,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/wreckage)
"aqf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/wreckage)
-"aqg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aqg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aqh" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aqi" = (/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aqj" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
@@ -846,10 +846,10 @@
"aqn" = (/obj/rack,/obj/item/sponge{name = "loofah"},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/obj/item/reagent_containers/glass/bottle/bubblebath,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"aqo" = (/obj/machinery/door/window/southright,/obj/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"aqp" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"aqq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqs" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aqq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqs" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aqu" = (/obj/machinery/shower,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aqv" = (/obj/fitness/speedbag/clown,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"aqw" = (/turf/simulated/floor{icon_state = "corner_west"; dir = 2},/area/station/crew_quarters/fitness)
@@ -874,12 +874,12 @@
"aqP" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"aqQ" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1446; name = "Botany Intercom"; pixel_x = 0; pixel_y = -26},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"aqR" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Catering Storage"; req_access_txt = "25;28;"; req_only_one_required = 1},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/catering)
-"aqS" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aqT" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aqU" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aqV" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/hallway/primary/port)
-"aqW" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
-"aqX" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/port)
+"aqS" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aqT" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aqU" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aqV" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/hallway/primary/west)
+"aqW" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
+"aqX" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/west)
"aqY" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"aqZ" = (/turf/simulated/floor{icon_state = "caution_east"},/area/station/hydroponics/lobby)
"ara" = (/obj/submachine/cargopad{name = "Botany Pad"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
@@ -890,8 +890,8 @@
"arf" = (/obj/machinery/plantpot,/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"arg" = (/obj/submachine/seed_vendor,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"arh" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hydroponics)
-"ari" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/alt,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/aft)
-"arj" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area/station/solar/aft)
+"ari" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/alt,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/south)
+"arj" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area/station/solar/south)
"ark" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoorright1"; id = "hangar_bridge"; name = "Command Hangar"},/turf/simulated/floor/shuttlebay,/area/station/hangar/sec)
"arl" = (/obj/machinery/door_control{id = "hangar_bridge"; name = "Command Hangar Door Control"; pixel_x = 24; pixel_y = 0},/obj/storage/closet/welding_supply,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/sec)
"arm" = (/obj/table/auto,/obj/item/storage/firstaid/regular,/obj/item/device/healthanalyzer,/obj/item/reagent_containers/syringe,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/station/security/brig)
@@ -915,10 +915,10 @@
"arE" = (/obj/machinery/door/window/eastleft,/obj/item/storage/toilet{dir = 4},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"arF" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"arG" = (/obj/submachine/chef_sink/chem_sink{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"arH" = (/obj/cable{icon_state = "1-2"},/obj/machinery/power/apc{areastring = "Bathroom"; dir = 8; name = "Bathroom APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arI" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arK" = (/obj/machinery/power/apc{areastring = "Arcade"; dir = 2; name = "Arcade APC"; pixel_y = -24},/obj/cable,/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"arH" = (/obj/cable{icon_state = "1-2"},/obj/machinery/power/apc{areastring = "Bathroom"; dir = 8; name = "Bathroom APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arI" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arK" = (/obj/machinery/power/apc{areastring = "Arcade"; dir = 2; name = "Arcade APC"; pixel_y = -24},/obj/cable,/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"arL" = (/obj/table/reinforced/auto,/obj/item/clothing/gloves/boxing,/obj/item/clothing/under/shorts/black,/obj/item/clothing/under/shorts/black,/obj/window/reinforced/north,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"arM" = (/obj/machinery/door/window/northright,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"arN" = (/obj/window/reinforced/north,/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/item/clothing/head/flatcap,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
@@ -944,10 +944,10 @@
"ash" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/storage/auxillary{name = "Tool Storage"})
"asi" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/storage/auxillary{name = "Tool Storage"})
"asj" = (/turf/simulated/wall/r_wall,/area/station/storage/auxillary{name = "Tool Storage"})
-"ask" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/port)
-"asl" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "greencorner"; dir = 2},/area/station/hallway/primary/port)
-"asm" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 6},/area/station/hallway/primary/port)
-"asn" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"ask" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/west)
+"asl" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "greencorner"; dir = 2},/area/station/hallway/primary/west)
+"asm" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 6},/area/station/hallway/primary/west)
+"asn" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"aso" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"asp" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"asq" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "caution_north"},/area/station/hydroponics/lobby)
@@ -958,11 +958,11 @@
"asv" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"asw" = (/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"asx" = (/obj/table/auto,/obj/item/paper/book/hydroponicsguide,/obj/item/storage/firstaid/regular,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
-"asy" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/aft)
-"asz" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"asA" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"asB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/space,/area/station/solar/aft)
-"asC" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/space,/area/station/solar/aft)
+"asy" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/south)
+"asz" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"asA" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"asB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/space,/area/station/solar/south)
+"asC" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/space,/area/station/solar/south)
"asD" = (/obj/lattice{icon_state = "lattice-dir"; dir = 4},/obj/machinery/light/runway_light/delay3,/turf/space,/area)
"asE" = (/obj/lattice{icon_state = "lattice-dir"; dir = 4},/obj/machinery/light/runway_light/delay4,/turf/space,/area)
"asF" = (/obj/lattice{icon_state = "lattice-dir"; dir = 4},/obj/machinery/light/runway_light/delay5,/turf/space,/area)
@@ -991,7 +991,7 @@
"atc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/station/crew_quarters/locker)
"atd" = (/obj/machinery/door/window/eastleft,/obj/item/storage/toilet{dir = 4},/obj/landmark/start{name = "Staff Assistant"},/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"ate" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"atf" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"atf" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"atg" = (/turf/simulated/wall,/area/station/crew_quarters/arcade)
"ath" = (/obj/machinery/computer/arcade,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"ati" = (/obj/decal/cleanable/vomit,/obj/machinery/computer/arcade,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
@@ -1023,8 +1023,8 @@
"atI" = (/obj/machinery/recharge_station{allow_clothes = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
"atJ" = (/obj/storage/closet/office,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
"atK" = (/obj/rack,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/extinguisher,/obj/item/reagent_containers/glass/oilcan,/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
-"atL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/port)
-"atM" = (/turf/simulated/wall,/area/station/hallway/primary/port)
+"atL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/west)
+"atM" = (/turf/simulated/wall,/area/station/hallway/primary/west)
"atN" = (/obj/table/auto,/obj/machinery/recharger,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"atO" = (/obj/critter/roach,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"atP" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
@@ -1034,9 +1034,9 @@
"atT" = (/obj/machinery/plantpot,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"atU" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hydroponics)
"atV" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
-"atW" = (/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/aft)
-"atX" = (/obj/lattice,/turf/space,/area/station/solar/aft)
-"atY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/space,/area/station/solar/aft)
+"atW" = (/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/south)
+"atX" = (/obj/lattice,/turf/space,/area/station/solar/south)
+"atY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/space,/area/station/solar/south)
"atZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay,/area/station/hangar/sec)
"aua" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/sec)
"aub" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1489; name = "Brig Intercom"; pixel_x = -26; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/station/security/brig)
@@ -1052,8 +1052,8 @@
"aul" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1489; name = "Brig Intercom"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/brig)
"aum" = (/obj/disposalpipe/loafer,/obj/decal/glow{brightness = 3; invisibility = 101; luminosity = 0; name = "glow - WHITE"; color_b = 0.35; color_g = 0.35; color_r = 0.35},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/station/wreckage)
"aun" = (/obj/decal/cleanable/dirt,/obj/disposalpipe/segment,/obj/computerframe{desc = "It is highly unlikely that this still works."; icon = 'icons/obj/computer.dmi'; icon_state = "datamedb"; name = "smashed computer"},/obj/decal/glow{brightness = 3; invisibility = 101; luminosity = 0; name = "glow - WHITE"; color_b = 0.35; color_g = 0.35; color_r = 0.35},/turf/simulated/floor/plating/airless,/area/station/wreckage)
-"auo" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"aup" = (/obj/cable{icon_state = "1-2"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"auo" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"aup" = (/obj/cable{icon_state = "1-2"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"auq" = (/obj/machinery/door/unpowered/wood{name = "The Snip"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aur" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/barber_shop)
"aus" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/station/crew_quarters/locker)
@@ -1088,8 +1088,8 @@
"auV" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"auW" = (/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"auX" = (/obj/machinery/vending/standard,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
-"auY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/port)
-"auZ" = (/obj/storage/closet/fire,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
+"auY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/west)
+"auZ" = (/obj/storage/closet/fire,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
"ava" = (/obj/rack,/obj/item/storage/toolbox/emergency,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"avb" = (/obj/storage/cart,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"avc" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
@@ -1117,10 +1117,10 @@
"avy" = (/obj/machinery/light/small{dir = 1},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/security/brig)
"avz" = (/obj/machinery/shower{icon_state = "showerhead"; dir = 1},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/security/brig)
"avA" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/wall,/area/station/security/brig)
-"avB" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"avC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"avD" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"avE" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"avB" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"avC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"avD" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"avE" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"avF" = (/obj/stool/chair/comfy,/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
"avG" = (/obj/table/auto,/obj/item/clothing/head/wig,/obj/machinery/light{icon_state = "tube1"; dir = 1},/obj/item/storage/pill_bottle/hairgrownium,/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
"avH" = (/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
@@ -1153,8 +1153,8 @@
"awi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"awj" = (/obj/stool,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"awk" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table/auto,/obj/machinery/computer3/generic/personal,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
-"awl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/port)
-"awm" = (/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
+"awl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/west)
+"awm" = (/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
"awn" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hydroponics/lobby)
"awo" = (/turf/simulated/wall,/area/station/hydroponics)
"awp" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hydroponics)
@@ -1177,10 +1177,10 @@
"awG" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/obj/submachine/ATM{pixel_x = 32; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/brig)
"awH" = (/obj/item/storage/toilet{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/security/brig)
"awI" = (/obj/submachine/chef_sink/chem_sink{dir = 8},/obj/item/pen,/obj/item/paper_bin,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/security/brig)
-"awJ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"awK" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/fpmaint)
-"awL" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"awM" = (/obj/cable{icon_state = "1-2"},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"awJ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"awK" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/NWmaint)
+"awL" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"awM" = (/obj/cable{icon_state = "1-2"},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"awN" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"awO" = (/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"awP" = (/obj/machinery/door/unpowered/wood{name = "The Snip"},/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
@@ -1220,8 +1220,8 @@
"axx" = (/obj/table/auto,/obj/item/wrench,/obj/item/device/analyzer,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
"axy" = (/obj/stool,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"axz" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
-"axA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/port)
-"axB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
+"axA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/west)
+"axB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
"axC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hydroponics/lobby)
"axD" = (/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/paper/book/hydroponicsguide,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/reagent_containers/glass/bottle/eyedrops,/turf/simulated/floor{icon_state = "green"; dir = 9},/area/station/hydroponics/lobby)
"axE" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/landmark/start{name = "Botanist"},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hydroponics/lobby)
@@ -1252,9 +1252,9 @@
"ayd" = (/turf/simulated/wall/r_wall,/area/station/security/secwing)
"aye" = (/obj/machinery/door/firedoor/border_only{icon_state = "door0"; dir = 4},/obj/machinery/door/airlock/security{name = "Brig Visitation Area"; req_access_txt = "1"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/security/secwing)
"ayf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/security/secwing)
-"ayg" = (/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ayh" = (/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ayi" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Barber Shop"; dir = 4; name = "Barber Shop APC"; pixel_x = 24; pixel_y = 0},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/decal/cleanable/ash,/obj/item/cigbutt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ayg" = (/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ayh" = (/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ayi" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Barber Shop"; dir = 4; name = "Barber Shop APC"; pixel_x = 24; pixel_y = 0},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/decal/cleanable/ash,/obj/item/cigbutt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ayj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall,/area/station/crew_quarters/barber_shop)
"ayk" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"ayl" = (/obj/stool/barber_chair{desc = "A traditional barbershop chair, obviously a very old one at that. What it is doing on a space station you haven't the foggiest."; name = "Old Barber Chair"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
@@ -1264,7 +1264,7 @@
"ayp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/crew_quarters/locker)
"ayq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/crew_quarters/locker)
"ayr" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "neutral"},/area/station/crew_quarters/locker)
-"ays" = (/obj/cable,/obj/machinery/power/apc{areastring = "Locker Room"; dir = 8; name = "Locker Room APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ays" = (/obj/cable,/obj/machinery/power/apc{areastring = "Locker Room"; dir = 8; name = "Locker Room APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ayt" = (/obj/machinery/sim/vr_bed{dir = 4; name = "VR simulation pod"; network = "arcadevr"},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/crew_quarters/arcade)
"ayu" = (/obj/machinery/sim/vr_bed{name = "VR simulation pod"; network = "arcadevr"},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/crew_quarters/arcade)
"ayv" = (/obj/stool/chair{dir = 4},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
@@ -1291,7 +1291,7 @@
"ayQ" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"ayR" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/auxillary{name = "Tool Storage"})
"ayS" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/storage/auxillary{name = "Tool Storage"})
-"ayT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
+"ayT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
"ayU" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/hydroponics/lobby)
"ayV" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "green"; dir = 9},/area/station/hydroponics/lobby)
"ayW" = (/turf/simulated/floor{icon_state = "greencorner"; dir = 1},/area/station/hydroponics/lobby)
@@ -1308,15 +1308,15 @@
"azh" = (/obj/stool,/turf/simulated/floor,/area/station/hydroponics)
"azi" = (/obj/table/auto,/obj/item/storage/box/beakerbox,/obj/item/clothing/glasses/spectro,/obj/item/device/reagentscanner,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hydroponics)
"azj" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
-"azk" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/tracker/alt,/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"azl" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"azm" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/aft)
-"azn" = (/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"azo" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"azp" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"azq" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"azr" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"azs" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"azk" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/tracker/alt,/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"azl" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"azm" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/south)
+"azn" = (/turf/simulated/wall,/area/station/maintenance/southsolar)
+"azo" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"azp" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"azq" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"azr" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"azs" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"azt" = (/obj/machinery/door_control{id = "interrogation"; name = "Interrogation Room Door Control"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"azu" = (/obj/stool/chair,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"azv" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/stool/chair,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
@@ -1382,19 +1382,19 @@
"aAD" = (/obj/landmark/start{name = "Botanist"},/turf/simulated/floor,/area/station/hydroponics)
"aAE" = (/obj/table/auto,/obj/item/reagent_containers/glass/bottle/powerplant,/obj/item/reagent_containers/glass/bottle/fruitful,/obj/item/reagent_containers/glass/bottle/topcrop,/obj/item/decoration/ashtray,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/hydroponics)
"aAF" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 9},/turf/space,/area)
-"aAG" = (/obj/cable,/obj/machinery/power/solar/alt,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/aft)
-"aAH" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/aft)
-"aAI" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAJ" = (/obj/decal/cleanable/fungus,/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"aAK" = (/obj/cable{icon_state = "2-4"},/obj/decal/cleanable/cobweb,/obj/machinery/power/solar_control/alt{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAM" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAN" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAP" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/machinery/portable_atmospherics/scrubber,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAQ" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization{name = "Air Hookup Reserve Tank (Air)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAR" = (/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAS" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aAG" = (/obj/cable,/obj/machinery/power/solar/alt,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/south)
+"aAH" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/south)
+"aAI" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAJ" = (/obj/decal/cleanable/fungus,/turf/simulated/wall,/area/station/maintenance/southsolar)
+"aAK" = (/obj/cable{icon_state = "2-4"},/obj/decal/cleanable/cobweb,/obj/machinery/power/solar_control/alt{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAM" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAN" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAP" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/machinery/portable_atmospherics/scrubber,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAQ" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization{name = "Air Hookup Reserve Tank (Air)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAR" = (/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAS" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aAT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Interrogation Room"; req_access_txt = "1"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aAU" = (/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/table/reinforced/auto,/obj/window/reinforced/west,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aAV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/table/reinforced/auto,/obj/item/clipboard,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
@@ -1470,15 +1470,15 @@
"aCn" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "green"},/area/station/hydroponics)
"aCo" = (/turf/simulated/floor{icon_state = "green"},/area/station/hydroponics)
"aCp" = (/obj/machinery/chem_master{dir = 8},/turf/simulated/floor{icon_state = "green"; dir = 6},/area/station/hydroponics)
-"aCq" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/aft)
-"aCr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(12); req_access_txt = null; req_only_one_required = 0},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/solar/aft)
-"aCt" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCu" = (/obj/machinery/atmospherics/pipe/simple{dir = 6; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCv" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCx" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCy" = (/obj/machinery/light/small{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aCq" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/south)
+"aCr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(12); req_access_txt = null; req_only_one_required = 0},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/solar/south)
+"aCt" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCu" = (/obj/machinery/atmospherics/pipe/simple{dir = 6; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCv" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCx" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCy" = (/obj/machinery/light/small{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aCz" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aCA" = (/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/table/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aCB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/table/auto,/obj/item/decoration/ashtray,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
@@ -1503,8 +1503,8 @@
"aCU" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/window/cubicle{icon_state = "cubicle"; dir = 4},/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/hallway/primary/central)
"aCV" = (/obj/submachine/ATM{pixel_x = 32; pixel_y = 0},/obj/window/cubicle{dir = 8},/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/hallway/primary/central)
"aCW" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/central)
-"aCX" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aCY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aCX" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aCY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aCZ" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/arcade)
"aDa" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"aDb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
@@ -1536,17 +1536,17 @@
"aDB" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor{icon_state = "fullgreen"},/area/station/hydroponics/lobby)
"aDC" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hydroponics)
"aDD" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hydroponics)
-"aDE" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDF" = (/obj/securearea,/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"aDG" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDH" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDI" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDJ" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Brig)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDK" = (/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDO" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 6},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aDE" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDF" = (/obj/securearea,/turf/simulated/wall,/area/station/maintenance/southsolar)
+"aDG" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDH" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDI" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDJ" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Brig)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDK" = (/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDO" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 6},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aDP" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/security{name = "Interrogation Room"; req_access_txt = "1"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aDQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aDR" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/table/auto,/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
@@ -1591,34 +1591,34 @@
"aEE" = (/obj/machinery/portable_atmospherics/canister/air,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"aEF" = (/obj/rack,/obj/item/wrench,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/extinguisher,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"aEG" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
-"aEH" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aEI" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aEJ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aEK" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aEL" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aEM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aEN" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aEO" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/station/hallway/primary/port)
-"aEP" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "greencorner"; dir = 4},/area/station/hallway/primary/port)
-"aEQ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aER" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aES" = (/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aET" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1446; name = "Botany Intercom"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aEU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aEV" = (/obj/noticeboard{pixel_y = 28},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aEW" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/stool/chair/comfy/blue,/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aEX" = (/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"aEH" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aEI" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aEJ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aEK" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aEL" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aEM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aEN" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aEO" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/station/hallway/primary/west)
+"aEP" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "greencorner"; dir = 4},/area/station/hallway/primary/west)
+"aEQ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aER" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aES" = (/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aET" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1446; name = "Botany Intercom"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aEU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aEV" = (/obj/noticeboard{pixel_y = 28},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aEW" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/stool/chair/comfy/blue,/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aEX" = (/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"aEY" = (/turf/simulated/floor{icon_state = "green"; dir = 10},/area/station/hydroponics)
"aEZ" = (/obj/landmark/start{name = "Botanist"},/turf/simulated/floor{icon_state = "green"},/area/station/hydroponics)
"aFa" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "green"; dir = 6},/area/station/hydroponics)
"aFb" = (/obj/machinery/vending/hydroponics,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
-"aFc" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/aftsolar)
-"aFd" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Brig Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aFe" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aFf" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "brig"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aFg" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aFh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aFi" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable,/obj/machinery/power/apc{areastring = "Security"; dir = 4; name = "Security APC"; pixel_x = 24; pixel_y = 0},/obj/rack,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/radio,/obj/item/wrench,/obj/item/device/glowstick,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aFc" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/southsolar)
+"aFd" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Brig Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aFe" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aFf" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "brig"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aFg" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aFh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aFi" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable,/obj/machinery/power/apc{areastring = "Security"; dir = 4; name = "Security APC"; pixel_x = 24; pixel_y = 0},/obj/rack,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/radio,/obj/item/wrench,/obj/item/device/glowstick,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aFj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall,/area/station/security/main)
"aFk" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aFl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
@@ -1665,29 +1665,29 @@
"aGa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Emergency Storage"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"aGb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Emergency Storage"},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"aGc" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/storage/emergency)
-"aGd" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aGe" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGf" = (/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGi" = (/obj/landmark/halloween,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGj" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour3;desc=Are you in need of spiritual counseling? Your station's theological staff is here to provide counseling and uplifting advice in the Chapel. The pen-and-paper game club meets in here too! Your station's hard-working Janitor's office is down below the Chapel. There's also a fully equipped hydroponics facility on this end of the station, helping to keep everyone healthy with bushels and bushels of tasty fruits and veggies!"; freq = 1443; location = "tour2"; name = "tour beacon - chapel"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "hydroponics"; name = "hydroponics mail router"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGn" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGo" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGp" = (/obj/table/wood/auto,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aGq" = (/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"aGd" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aGe" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGf" = (/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGi" = (/obj/landmark/halloween,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGj" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour3;desc=Are you in need of spiritual counseling? Your station's theological staff is here to provide counseling and uplifting advice in the Chapel. The pen-and-paper game club meets in here too! Your station's hard-working Janitor's office is down below the Chapel. There's also a fully equipped hydroponics facility on this end of the station, helping to keep everyone healthy with bushels and bushels of tasty fruits and veggies!"; freq = 1443; location = "tour2"; name = "tour beacon - chapel"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "hydroponics"; name = "hydroponics mail router"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGn" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGo" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGp" = (/obj/table/wood/auto,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aGq" = (/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"aGr" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hydroponics)
"aGs" = (/obj/landmark/halloween,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"aGt" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hydroponics)
-"aGu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/space,/area/station/solar/aft)
+"aGu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/space,/area/station/solar/south)
"aGv" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
-"aGw" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/aftsolar)
-"aGx" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Courtroom)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGy" = (/obj/decal/cleanable/oil,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aGw" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/southsolar)
+"aGx" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Courtroom)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGy" = (/obj/decal/cleanable/oil,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aGA" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "interrogation"; name = "Interrogation Room"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"aGB" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/securearea,/turf/simulated/floor,/area/station/security/main)
"aGC" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Brig"; req_access_txt = "1"},/turf/simulated/floor,/area/station/security/main)
@@ -1728,33 +1728,33 @@
"aHl" = (/obj/disposalpipe/segment{dir = 4},/obj/stool/bar,/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 2},/area/station/crew_quarters/cafeteria)
"aHm" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 6},/area/station/crew_quarters/cafeteria)
"aHn" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/machinery/vending/fortune,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
-"aHo" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/vending/medical_public,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHp" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHq" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHs" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHt" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/port)
-"aHw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/station/hallway/primary/port)
-"aHx" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/port)
-"aHA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair/comfy/blue{icon_state = "chair_comfy-blue"; dir = 1},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aHB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/vending/cards,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aHC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/vending/capsule,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aHD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aHE" = (/obj/machinery/light,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/stool/chair/comfy/blue{icon_state = "chair_comfy-blue"; dir = 1},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
+"aHo" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/vending/medical_public,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHp" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHq" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHs" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHt" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/west)
+"aHw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/station/hallway/primary/west)
+"aHx" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/west)
+"aHA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair/comfy/blue{icon_state = "chair_comfy-blue"; dir = 1},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aHB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/vending/cards,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aHC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/vending/capsule,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aHD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aHE" = (/obj/machinery/light,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/stool/chair/comfy/blue{icon_state = "chair_comfy-blue"; dir = 1},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
"aHF" = (/obj/grille/steel,/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/chapel/main)
"aHG" = (/obj/grille/steel,/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aHH" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/chapel/main)
"aHI" = (/turf/simulated/wall,/area/station/chapel/main)
"aHJ" = (/turf/simulated/wall/r_wall,/area/station/chapel/main)
"aHK" = (/obj/table/auto,/obj/item/storage/box/beakerbox,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
-"aHL" = (/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area/station/solar/aft)
-"aHM" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Courtroom Repressurization Port"},/obj/machinery/light/small{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aHN" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "courtroom"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aHO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aHL" = (/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area/station/solar/south)
+"aHM" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Courtroom Repressurization Port"},/obj/machinery/light/small{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aHN" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "courtroom"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aHO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aHP" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/wall,/area/station/security/main)
"aHQ" = (/obj/storage/secure/closet/security/equipment,/turf/simulated/floor{icon_state = "bot"},/area/station/security/main)
"aHR" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/security/main)
@@ -1796,13 +1796,13 @@
"aIB" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Cafeteria"},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/cafeteria)
"aIC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon/guardbot_buddytime,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aID" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=pool"; location = "bar"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
-"aIE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIF" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIG" = (/obj/disposalpipe/junction{icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIH" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aII" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIJ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIK" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 4; icon_state = "neutral"},/area/station/hallway/primary/port)
+"aIE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIF" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIG" = (/obj/disposalpipe/junction{icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIH" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aII" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIJ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIK" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 4; icon_state = "neutral"},/area/station/hallway/primary/west)
"aIL" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/chapel/main)
"aIM" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aIN" = (/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
@@ -1811,9 +1811,9 @@
"aIQ" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"aIR" = (/obj/table/auto,/obj/item/wrench,/obj/item/reagent_containers/glass/bottle/weedkiller,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
"aIS" = (/obj/machinery/plantpot,/obj/machinery/light,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/hydroponics)
-"aIT" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/aftsolar)
-"aIU" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Bridge)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aIV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aIT" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/southsolar)
+"aIU" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Bridge)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aIV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aIW" = (/turf/simulated/floor,/area/station/security/main)
"aIX" = (/turf/simulated/floor{icon_state = "caution_east"},/area/station/security/main)
"aIY" = (/obj/machinery/door/airlock/glass{name = "Locker Room"; req_access_txt = "1"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
@@ -1860,18 +1860,18 @@
"aJN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/window/reinforced/south,/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "arrivals"; name = "arrivals mail router"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aJO" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour6;desc=A happy crew is a productive crew! During approved breaks, please enjoy your station's cafeteria and lounge. Be sure to drink responsibly though!"; freq = 1443; location = "tour1"; name = "tour beacon - bar"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aJP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
-"aJQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj1"; mail_tag = "detective"; name = "detective mail router"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; layer = 9.6; name = "Medical Intercom"; pixel_x = 0; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "kitchen"; name = "kitchen mail router"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/port)
-"aJY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aJZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aKa" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/port)
-"aKb" = (/obj/shrub{icon_state = "shrub"; dir = 10},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/station/hallway/primary/port)
+"aJQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj1"; mail_tag = "detective"; name = "detective mail router"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; layer = 9.6; name = "Medical Intercom"; pixel_x = 0; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "kitchen"; name = "kitchen mail router"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/west)
+"aJY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aJZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aKa" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"},/area/station/hallway/primary/west)
+"aKb" = (/obj/shrub{icon_state = "shrub"; dir = 10},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/station/hallway/primary/west)
"aKc" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/chapel/main)
"aKd" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"aKe" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
@@ -1883,11 +1883,11 @@
"aKk" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 1},/area/station/chapel/main)
"aKl" = (/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 5},/area/station/chapel/main)
"aKm" = (/obj/window/reinforced/south,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
-"aKn" = (/obj/decal/cleanable/rust,/turf/simulated/wall/r_wall,/area/station/maintenance/aftsolar)
-"aKo" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Bridge Repressurization Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aKp" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aKq" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "bridge"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aKr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aKn" = (/obj/decal/cleanable/rust,/turf/simulated/wall/r_wall,/area/station/maintenance/southsolar)
+"aKo" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Bridge Repressurization Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aKp" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aKq" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "bridge"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aKr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aKs" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/rack,/obj/item/ammo/bullets/smoke,/obj/item/ammo/bullets/smoke,/obj/item/gun/kinetic/riot40mm,/obj/item/gun/kinetic/riot40mm,/obj/item/wrench,/obj/item/wrench,/turf/simulated/floor{icon_state = "bot"},/area/station/security/main)
"aKt" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "caution_west"},/area/station/security/main)
"aKu" = (/obj/machinery/vending/standard,/turf/simulated/floor{icon_state = "caution_east"},/area/station/security/main)
@@ -1928,9 +1928,9 @@
"aLd" = (/obj/table/reinforced/auto,/obj/machinery/door/window/westright{dir = 1; name = "Medical Booth"; req_access_txt = "5"},/obj/window/reinforced/east,/obj/machinery/cashreg,/obj/item/clothing/glasses/healthgoggles,/obj/item/pen,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/station/medical/medbooth)
"aLe" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Medical Booth"; req_access_txt = "5"},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/station/medical/medbooth)
"aLf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/medical/medbooth)
-"aLg" = (/obj/disposalpipe/junction,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aLh" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Chapel"},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aLi" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
+"aLg" = (/obj/disposalpipe/junction,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aLh" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Chapel"},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aLi" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
"aLj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aLk" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aLl" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
@@ -1947,7 +1947,7 @@
"aLw" = (/obj/grille/steel,/turf/space,/area/station/com_dish/comdish)
"aLx" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/bridge)
"aLy" = (/turf/simulated/wall/r_wall,/area/station/bridge)
-"aLz" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aLz" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aLA" = (/obj/machinery/door/airlock/glass{name = "Locker Room"; req_access_txt = "1"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
"aLB" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
"aLC" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"},/turf/simulated/floor,/area/station/security/main)
@@ -1991,8 +1991,8 @@
"aMo" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/med_data{icon_state = "datamed"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbooth)
"aMp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair/office{icon_state = "office_chair"; dir = 1},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbooth)
"aMq" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 5},/area/station/medical/medbooth)
-"aMr" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/shrub,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aMs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aMr" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/shrub,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aMs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aMt" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aMu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aMv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
@@ -2011,7 +2011,7 @@
"aMI" = (/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/grid,/area/station/bridge)
"aMJ" = (/obj/stool/chair{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/grid,/area/station/bridge)
"aMK" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/computer/announcement{announces_arrivals = 1; dir = 8; icon_state = "comm"},/turf/simulated/floor/grid,/area/station/bridge)
-"aML" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aML" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aMM" = (/obj/machinery/flasher/portable,/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
"aMN" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/cable,/turf/simulated/floor/plating,/area/station/security/main)
"aMO" = (/obj/disposalpipe/junction{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/station/security/main)
@@ -2058,8 +2058,8 @@
"aND" = (/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aNE" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-10"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbooth)
"aNF" = (/turf/simulated/wall,/area/station/medical/medbooth)
-"aNG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aNH" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/port)
+"aNG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aNH" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/west)
"aNI" = (/obj/table/wood/auto,/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aNJ" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aNK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2079,7 +2079,7 @@
"aNY" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aNZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aOa" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance{name = "Bridge Maintenance"; req_access_txt = "19"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aOb" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aOb" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aOc" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall/r_wall,/area/station/security/hos)
"aOd" = (/turf/simulated/wall/r_wall,/area/station/security/hos)
"aOe" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/station/security/main)
@@ -2115,9 +2115,9 @@
"aOI" = (/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 1},/area/station/medical/medbooth)
"aOJ" = (/obj/cable{icon_state = "2-5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aOK" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment,/obj/machinery/optable,/obj/item/reagent_containers/iv_drip/blood,/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbooth)
-"aOL" = (/obj/storage/closet/emergency,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
-"aOM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aON" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"},/area/station/hallway/primary/port)
+"aOL" = (/obj/storage/closet/emergency,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
+"aOM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aON" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"},/area/station/hallway/primary/west)
"aOO" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table/wood/auto,/obj/machinery/networked/printer{print_id = "Chapel"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aOP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aOQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
@@ -2145,7 +2145,7 @@
"aPm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 0; pixel_y = -28},/obj/table/auto,/obj/item/storage/toolbox/electrical,/obj/item/device/gps,/obj/item/aiModule/reset,/obj/item/disk/data/floppy/read_only/communications,/turf/simulated/floor/grid,/area/station/bridge)
"aPn" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 0; pixel_y = -28},/obj/table/auto,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor/grid,/area/station/bridge)
"aPo" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/wall/r_wall,/area/station/bridge)
-"aPp" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/power/apc{areastring = "Bridge"; dir = 2; name = "Bridge APC"; pixel_y = -24},/obj/cable,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aPp" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/power/apc{areastring = "Bridge"; dir = 2; name = "Bridge APC"; pixel_y = -24},/obj/cable,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aPq" = (/obj/machinery/computer/security,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/hos)
"aPr" = (/obj/machinery/computer/secure_data/detective_computer{req_access = null; req_access_txt = "1"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/hos)
"aPs" = (/obj/table/reinforced/auto,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/device/prisoner_scanner,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/hos)
@@ -2186,7 +2186,7 @@
"aQb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aQc" = (/obj/disposalpipe/segment,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = 28; pixel_y = 0},/obj/submachine/chef_sink/chem_sink{dir = 8},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbooth)
"aQd" = (/obj/storage/closet/emergency,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/medical/medbooth)
-"aQe" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/station/hallway/primary/port)
+"aQe" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/station/hallway/primary/west)
"aQf" = (/obj/table/wood/auto,/obj/item/ghostboard,/obj/item/ghostboard,/obj/item/ghostboard,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"aQg" = (/obj/machinery/light/emergency,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aQh" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2212,8 +2212,8 @@
"aQB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor/carpet{icon_state = "red2"},/area/station/security/main)
"aQC" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "red2"; dir = 6},/area/station/security/main)
"aQD" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
-"aQE" = (/turf/simulated/wall,/area/station/maintenance/fore)
-"aQF" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/fore)
+"aQE" = (/turf/simulated/wall,/area/station/maintenance/north)
+"aQF" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/north)
"aQG" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/security/beepsky)
"aQH" = (/obj/item/cigbutt,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/obj/machinery/bot/secbot/beepsky,/turf/simulated/floor/plating,/area/station/security/beepsky)
"aQI" = (/obj/storage/crate{desc = "A private crate that isn't yours."; name = "Beepsky's stuff"},/obj/item/diary,/obj/item/clothing/shoes/black{desc = "You have no idea how a robot with wheels for locomotion could possibly require these."; name = "Beepsky's Shoes"},/obj/item/storage/photo_album/beepsky,/obj/item/clothing/suit/det_suit/beepsky,/obj/item/clothing/head/NTberet{desc = "It's a momento, I guess. An old keepsake. And maybe a reminder of the things we've left behind."; name = "Old Beret"},/turf/simulated/floor/plating,/area/station/security/beepsky)
@@ -2238,8 +2238,8 @@
"aRb" = (/obj/table/reinforced/auto,/obj/item/reagent_containers/glass/beaker/large/epinephrine,/obj/item/reagent_containers/glass/beaker/large/burn,/obj/item/reagent_containers/glass/beaker/large/brute,/obj/item/reagent_containers/glass/beaker/large/antitox,/obj/item/clothing/glasses/healthgoggles,/obj/item/reagent_containers/hypospray,/obj/machinery/light/emergency,/obj/item/scalpel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/suture,/obj/item/staple_gun,/obj/item/hemostat,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbooth)
"aRc" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/morgue,/obj/machinery/light,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbooth)
"aRd" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "bluewhite"; dir = 6},/area/station/medical/medbooth)
-"aRe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aRf" = (/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/station/hallway/primary/port)
+"aRe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aRf" = (/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/station/hallway/primary/west)
"aRg" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/chapel/main)
"aRh" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/chapel/main)
"aRi" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/chapel/main)
@@ -2298,8 +2298,8 @@
"aSj" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/security/detectives_office)
"aSk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/security/detectives_office)
"aSl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/security/detectives_office)
-"aSm" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSn" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aSm" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSn" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aSo" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/chapel/main)
"aSp" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aSq" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2331,11 +2331,11 @@
"aSQ" = (/obj/stool/chair{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
"aSR" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
"aSS" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
-"aST" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "dark"},/area/station/maintenance/fore)
-"aSU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aSV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aSW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aSX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aST" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "dark"},/area/station/maintenance/north)
+"aSU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aSV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aSW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aSX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aSY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"aSZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"aTa" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -2356,7 +2356,7 @@
"aTp" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aTq" = (/obj/decal/cleanable/cobweb2,/obj/machinery/vending/security,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aTr" = (/turf/simulated/wall,/area/station/security/detectives_office)
-"aTs" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aTs" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aTt" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aTu" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aTv" = (/obj/stool,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2384,9 +2384,9 @@
"aTR" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aTS" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aTT" = (/obj/storage/closet/law,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
-"aTU" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aTV" = (/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aTW" = (/obj/cable,/obj/machinery/power/apc{areastring = "Central Primary Hallway"; dir = 4; name = "Central Primary Hallway APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aTU" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aTV" = (/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aTW" = (/obj/cable,/obj/machinery/power/apc{areastring = "Central Primary Hallway"; dir = 4; name = "Central Primary Hallway APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aTX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/central)
"aTY" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
"aTZ" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
@@ -2409,8 +2409,8 @@
"aUq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aUr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aUs" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window_blinds{id = "detective"},/turf/simulated/floor/plating,/area/station/security/detectives_office)
-"aUt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aUu" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour2;desc=Oh, um... here's where the detective works. I think they might have a drinking problem, but that's just between you and me. "; freq = 1443; location = "tour6"; name = "tour beacon - detective"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aUt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aUu" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour2;desc=Oh, um... here's where the detective works. I think they might have a drinking problem, but that's just between you and me. "; freq = 1443; location = "tour6"; name = "tour beacon - detective"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aUv" = (/turf/simulated/wall,/area/station/medical/crematorium)
"aUw" = (/turf/simulated/wall/r_wall,/area/station/medical/crematorium)
"aUx" = (/turf/simulated/wall,/area/station/chapel/office)
@@ -2442,10 +2442,10 @@
"aUX" = (/obj/stool/chair,/turf/simulated/floor{icon_state = "black"; dir = 1},/area/station/crew_quarters/courtroom)
"aUY" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aUZ" = (/obj/storage/closet/law,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
-"aVa" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aVb" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aVc" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aVd" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aVa" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aVb" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aVc" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aVd" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/north)
"aVe" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/central)
"aVf" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"aVg" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -2468,7 +2468,7 @@
"aVx" = (/obj/table/wood/auto,/obj/machinery/light/lamp/green{on = 0; switchon = 1},/obj/deskclutter,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aVy" = (/obj/decal/cleanable/dirt,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aVz" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/window_blinds{id = "detective"},/turf/simulated/floor/plating,/area/station/security/detectives_office)
-"aVA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aVA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aVB" = (/obj/morgue,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aVC" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/machinery/crema_switch{id = "crematorium"; pixel_y = 28},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aVD" = (/obj/crematorium{id = "crematorium"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2533,7 +2533,7 @@
"aWK" = (/obj/table/wood/auto,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aWL" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aWM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aWN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/item/cigbutt,/turf/simulated/floor,/area/station/hallway/primary/port)
+"aWN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/item/cigbutt,/turf/simulated/floor,/area/station/hallway/primary/west)
"aWO" = (/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aWP" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aWQ" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2606,9 +2606,9 @@
"aYf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aYg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aYh" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/obj/decal/cleanable/ash,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/security/detectives_office)
-"aYi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/item/tile/steel,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/hallway/primary/port)
-"aYj" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aYk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/port)
+"aYi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/item/tile/steel,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/hallway/primary/west)
+"aYj" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aYk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/west)
"aYl" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aYm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aYn" = (/obj/disposalpipe/junction,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2679,8 +2679,8 @@
"aZA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table/wood/auto,/obj/item/reagent_containers/food/drinks/bottle/bojackson,/obj/item/zippo{pixel_x = -3; pixel_y = -2},/obj/item/cigpacket/propuffs{pixel_x = 2; pixel_y = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/item/cigbutt,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aZB" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/storage/cart/forensic,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aZC" = (/obj/decal/cleanable/dirt,/turf/simulated/wall,/area/station/security/detectives_office)
-"aZD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/item/crowbar,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aZE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aZD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/item/crowbar,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aZE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aZF" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aZG" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aZH" = (/obj/table/auto,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/device/healthanalyzer,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/reagent_containers/syringe,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2732,18 +2732,18 @@
"baB" = (/obj/machinery/computer/security/wooden_tv,/obj/item/clothing/head/det_hat{pixel_y = 11},/obj/item/clothing/head/fedora{pixel_y = 11},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"baC" = (/obj/table/wood/auto,/obj/item/audio_tape{pixel_y = 8},/obj/item/audio_tape{pixel_y = 5},/obj/item/device/audio_log,/obj/item/device/detective_scanner,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"baD" = (/obj/table/wood/auto,/obj/item/device/detective_scanner,/obj/item/hand_labeler,/obj/item/spraybottle/detective,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/disposalpipe/segment,/obj/item/storage/secure/ssafe{pixel_y = -30},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"baE" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"baF" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"baE" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"baF" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"baG" = (/obj/table/auto,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/spraybottle/cleaner,/obj/item/pen,/obj/item/hand_labeler,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/item/body_bag,/obj/item/body_bag,/obj/item/body_bag,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"baH" = (/obj/disposaloutlet{dir = 8; mailgroup = "chaplain"; mailgroup2 = "security"; message = "Delivery alert in Crematorium."; name = "Crematorium Outlet"},/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"baI" = (/obj/storage/closet/wardrobe/black/chaplain,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"baJ" = (/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 10},/area/station/chapel/office)
"baK" = (/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 2},/area/station/chapel/office)
"baL" = (/obj/shrub{icon_state = "shrub"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 6},/area/station/chapel/office)
-"baM" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baN" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization{name = "Air Hookup Reserve Tank (Air)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baO" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/maintenance/aft)
-"baP" = (/obj/creepy_sound_trigger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"baM" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baN" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization{name = "Air Hookup Reserve Tank (Air)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baO" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/maintenance/south)
+"baP" = (/obj/creepy_sound_trigger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"baQ" = (/turf/simulated/wall/false_wall,/area/station/chapel/main)
"baR" = (/obj/stool/chair{dir = 4},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 10},/area/station/chapel/main)
"baS" = (/obj/table/wood/auto,/obj/item/clipboard,/obj/item/clipboard,/obj/item/clipboard,/obj/item/pen,/obj/item/pen,/obj/item/pen,/obj/item/clothing/head/apprentice,/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 2},/area/station/chapel/main)
@@ -2784,9 +2784,9 @@
"bbB" = (/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"; pixel_x = 0},/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/medical/crematorium)
"bbC" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/medical/crematorium)
"bbD" = (/turf/simulated/wall/r_wall,/area/station/chapel/office)
-"bbE" = (/obj/storage/closet/coffin,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbF" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/wall,/area/station/maintenance/aft)
-"bbG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bbE" = (/obj/storage/closet/coffin,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbF" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/wall,/area/station/maintenance/south)
+"bbG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bbH" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/chapel/main)
"bbI" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/chapel/main)
"bbJ" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
@@ -2822,23 +2822,23 @@
"bcn" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/space,/area)
"bco" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/false_wall,/area/station/crew_quarters/jazz)
"bcp" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/jazz)
-"bcq" = (/turf/simulated/wall,/area/station/maintenance/aft)
-"bcr" = (/obj/machinery/power/apc{areastring = "Detective's Office"; dir = 1; name = "Detective's Office APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcs" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bct" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"bcu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"bcv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Crematorium"; dir = 1; name = "Crematorium APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcy" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcz" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bcA" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bcB" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bcC" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcE" = (/obj/decal/cleanable/dirt,/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 28},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcF" = (/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcG" = (/obj/table/auto,/obj/decal/cleanable/cobweb2,/obj/item/device/glowstick,/obj/item/gun/kinetic/zipgun,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bcq" = (/turf/simulated/wall,/area/station/maintenance/south)
+"bcr" = (/obj/machinery/power/apc{areastring = "Detective's Office"; dir = 1; name = "Detective's Office APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcs" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bct" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"bcu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"bcv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Crematorium"; dir = 1; name = "Crematorium APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcy" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcz" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bcA" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bcB" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bcC" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcE" = (/obj/decal/cleanable/dirt,/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 28},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcF" = (/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcG" = (/obj/table/auto,/obj/decal/cleanable/cobweb2,/obj/item/device/glowstick,/obj/item/gun/kinetic/zipgun,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bcH" = (/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/lattice{icon_state = "lattice-dir-b"; dir = 9},/turf/space,/area)
"bcI" = (/obj/shrub{icon_state = "shrub"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"bcJ" = (/obj/table/auto,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/item/paper_bin,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -2859,9 +2859,9 @@
"bcY" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/item/pen/marker/blue,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bcZ" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/cashreg,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bda" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
-"bdb" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bdc" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bdd" = (/turf/simulated/wall/r_wall,/area/station/maintenance/fore)
+"bdb" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bdc" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bdd" = (/turf/simulated/wall/r_wall,/area/station/maintenance/north)
"bde" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bdf" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"bdg" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
@@ -2874,24 +2874,24 @@
"bdn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 1; status = 2},/obj/item/clothing/under/misc/syndicate{desc = "Non-descript, slightly suspicious jazzy clothing."; name = "Jazzy Turtleneck"},/obj/item/clothing/head/flatcap,/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"bdo" = (/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/pylon)
"bdp" = (/obj/disposalpipe/segment,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
-"bdq" = (/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdr" = (/obj/critter/nicespider{name = "spider"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bds" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bdt" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bdu" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdv" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdw" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdy" = (/obj/item/tile/steel,/obj/machinery/light/small,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdA" = (/obj/item/tile/steel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bdD" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Chapel"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdF" = (/obj/decal/cleanable/dirt,/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdG" = (/obj/table/auto,/obj/item/paper{info = "I'm in your station... : )"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdH" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bdq" = (/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdr" = (/obj/critter/nicespider{name = "spider"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bds" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bdt" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bdu" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdv" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdw" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdy" = (/obj/item/tile/steel,/obj/machinery/light/small,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdA" = (/obj/item/tile/steel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
+"bdD" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Chapel"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdF" = (/obj/decal/cleanable/dirt,/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdG" = (/obj/table/auto,/obj/item/paper{info = "I'm in your station... : )"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdH" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bdI" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
"bdJ" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
"bdK" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/captain)
@@ -2911,12 +2911,12 @@
"bdY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bdZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer/bank_data{icon_state = "databank"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bea" = (/turf/simulated/wall,/area/station/security/checkpoint)
-"beb" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bec" = (/obj/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bed" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bee" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bef" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Courtroom"; dir = 1; name = "Courtroom APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"beg" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"beb" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bec" = (/obj/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bed" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bee" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bef" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Courtroom"; dir = 1; name = "Courtroom APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"beg" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/north)
"beh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/central)
"bei" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
"bej" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/central)
@@ -2928,24 +2928,24 @@
"bep" = (/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"beq" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"ber" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
-"bes" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bet" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"beu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bev" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bew" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/fakeobjects/firelock_broken{desc = "Rust has rendered this airlock useless."; icon = 'icons/misc/hstation.dmi'; icon_state = "bloodydoor"; name = "rusted airlock"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bex" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bey" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bez" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"beA" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"beB" = (/obj/storage/cart/trash,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"beC" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beD" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/aft)
-"beE" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/aft)
-"beF" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Chapel)"},/turf/simulated/wall,/area/station/maintenance/aft)
-"beG" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold{dir = 4; icon_state = "manifold"; level = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beH" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beI" = (/obj/machinery/portable_atmospherics/canister/air,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beJ" = (/obj/table/auto,/obj/decal/cleanable/dirt,/obj/item/wrench,/obj/machinery/light/small,/obj/item/extinguisher,/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bes" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bet" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"beu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bev" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bew" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/fakeobjects/firelock_broken{desc = "Rust has rendered this airlock useless."; icon = 'icons/misc/hstation.dmi'; icon_state = "bloodydoor"; name = "rusted airlock"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bex" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bey" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bez" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"beA" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"beB" = (/obj/storage/cart/trash,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"beC" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beD" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/south)
+"beE" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/south)
+"beF" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Chapel)"},/turf/simulated/wall,/area/station/maintenance/south)
+"beG" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold{dir = 4; icon_state = "manifold"; level = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beH" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beI" = (/obj/machinery/portable_atmospherics/canister/air,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beJ" = (/obj/table/auto,/obj/decal/cleanable/dirt,/obj/item/wrench,/obj/machinery/light/small,/obj/item/extinguisher,/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/plating,/area/station/maintenance/south)
"beK" = (/obj/window/reinforced/north,/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
"beL" = (/obj/window/reinforced/east,/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
"beM" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
@@ -2969,11 +2969,11 @@
"bfe" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bff" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bfg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/security{name = "Customs"; req_access = null; req_access_txt = "1"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/security/checkpoint)
-"bfh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bfi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bfj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bfk" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bfl" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bfh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bfi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bfj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bfk" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bfl" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bfm" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bfn" = (/obj/grille/steel,/obj/disposalpipe/segment,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/wall,/area/station/maintenance/maintcentral)
"bfo" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/com_dish/auxdish)
@@ -2981,24 +2981,24 @@
"bfq" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
"bfr" = (/obj/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"bfs" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
-"bft" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfu" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"bfv" = (/obj/machinery/vending/cigarette,/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bfw" = (/obj/stool/chair{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bfx" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfy" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bfA" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfB" = (/obj/storage/cart/trash,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bft" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfu" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"bfv" = (/obj/machinery/vending/cigarette,/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bfw" = (/obj/stool/chair{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bfx" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfy" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bfA" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfB" = (/obj/storage/cart/trash,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bfC" = (/turf/simulated/wall,/area/station/janitor)
"bfD" = (/turf/simulated/wall/r_wall,/area/station/janitor)
"bfE" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/maintenance/disposal)
"bfF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/classic{name = "Recycling Room"; req_access_txt = "12"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
"bfG" = (/turf/simulated/wall,/area/station/maintenance/disposal)
-"bfH" = (/obj/machinery/atmospherics/portables_connector{dir = 1; name = "Chapel Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfI" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/general_alert{icon_state = "alert:0"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfJ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfK" = (/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
+"bfH" = (/obj/machinery/atmospherics/portables_connector{dir = 1; name = "Chapel Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfI" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/general_alert{icon_state = "alert:0"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfJ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfK" = (/turf/simulated/wall/r_wall,/area/station/maintenance/south)
"bfL" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
"bfM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fred6"; dir = 9},/area/station/crew_quarters/captain)
"bfN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fred5"; dir = 1},/area/station/crew_quarters/captain)
@@ -3016,9 +3016,9 @@
"bfZ" = (/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bga" = (/obj/stool/chair,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bgb" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer/card{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
-"bgc" = (/obj/disposalpipe/segment,/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bgd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bge" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bgc" = (/obj/disposalpipe/segment,/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bgd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bge" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bgf" = (/obj/table/auto,/obj/item/storage/box/cablesbox,/obj/item/storage/toolbox/mechanical,/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/decal/cleanable/cobweb,/obj/item/device/radio,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bgg" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bgh" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/table/auto,/obj/machinery/computer3/generic/personal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -3031,13 +3031,13 @@
"bgo" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 10},/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
"bgp" = (/turf/space,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 6},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/engine/substation/pylon)
"bgq" = (/turf/space,/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area)
-"bgr" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"bgt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"bgu" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bgw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bgx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
+"bgr" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"bgt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"bgu" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bgw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bgx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
"bgy" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/janitor)
"bgz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/janitor)
"bgA" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/station/janitor)
@@ -3057,9 +3057,9 @@
"bgO" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/item/stamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bgP" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only,/obj/machinery/cashreg,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bgQ" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only,/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
-"bgR" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bgS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bgT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bgR" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bgS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bgT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bgU" = (/obj/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bgV" = (/obj/cable{icon_state = "1-2"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bgW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -3073,11 +3073,11 @@
"bhe" = (/turf/space,/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bhf" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bhg" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
-"bhh" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhi" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhj" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhk" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
+"bhh" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhi" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhj" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhk" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
"bhm" = (/obj/grille/steel,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bhn" = (/turf/simulated/wall/r_wall,/area/station/maintenance/disposal)
"bho" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3110,9 +3110,9 @@
"bhP" = (/turf/simulated/wall,/area/station/crew_quarters/market)
"bhQ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market)
"bhR" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market)
-"bhS" = (/obj/machinery/power/apc{areastring = "Public Market"; dir = 8; name = "Public Market APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bhT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bhU" = (/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bhS" = (/obj/machinery/power/apc{areastring = "Public Market"; dir = 8; name = "Public Market APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bhT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bhU" = (/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bhV" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bhW" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bhX" = (/obj/storage/closet/office,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/maintcentral)
@@ -3126,10 +3126,10 @@
"bif" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area)
"big" = (/turf/space,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bih" = (/turf/space,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area)
-"bii" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bij" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bik" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bil" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bii" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bij" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bik" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bil" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bim" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; operating = 1},/obj/disposaloutlet,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bin" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bio" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3161,7 +3161,7 @@
"biO" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/crew_quarters/market)
"biP" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"biQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 28},/turf/simulated/floor,/area/station/crew_quarters/market)
-"biR" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"biR" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/north)
"biS" = (/obj/cable{icon_state = "1-2"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"biT" = (/turf/simulated/wall,/area/station/routingdepot/eva)
"biU" = (/turf/simulated/wall/r_wall,/area/station/routingdepot/eva)
@@ -3173,7 +3173,7 @@
"bja" = (/obj/window/reinforced/west,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot)
"bjb" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
"bjc" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
-"bjd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
+"bjd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
"bje" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bjf" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
"bjg" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
@@ -3196,9 +3196,9 @@
"bjx" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor,/area/station/crew_quarters/market)
"bjy" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/crew_quarters/market)
"bjz" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/crew_quarters/market)
-"bjA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bjB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bjC" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bjA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bjB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bjC" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bjD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"bjE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"bjF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
@@ -3225,12 +3225,12 @@
"bka" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
"bkb" = (/turf/space,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"bkc" = (/turf/space,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
-"bkd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/airless,/area/station/maintenance/aft)
-"bke" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkh" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bki" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-10"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bkd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/airless,/area/station/maintenance/south)
+"bke" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkh" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bki" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-10"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bkj" = (/obj/machinery/door/airlock/classic{req_access_txt = "12"},/turf/simulated/floor,/area/station/maintenance/disposal)
"bkk" = (/obj/landmark/halloween,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
"bkl" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=chapel"; location = "disposals"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
@@ -3253,7 +3253,7 @@
"bkC" = (/obj/machinery/light,/turf/simulated/floor,/area/station/crew_quarters/market)
"bkD" = (/obj/stool/chair,/turf/simulated/floor,/area/station/crew_quarters/market)
"bkE" = (/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market)
-"bkF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bkF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
"bkG" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"bkH" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"bkI" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -3280,10 +3280,10 @@
"bld" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/routingdepot)
"ble" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"blf" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area)
-"blg" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"blh" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; name = "VACUUM AREA"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bli" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-5"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"blj" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"blg" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"blh" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; name = "VACUUM AREA"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bli" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-5"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"blj" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/south)
"blk" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; operating = 1},/obj/plasticflaps,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bll" = (/obj/machinery/conveyor_switch{id = "garbage"; position = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"blm" = (/obj/machinery/door_control{id = "speedboost_crusher"; name = "Disposals Doors"; pixel_x = 0; pixel_y = -24},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
@@ -3330,9 +3330,9 @@
"bmb" = (/turf/simulated/floor{icon_state = "corner_west"; dir = 2},/area/station/routingdepot)
"bmc" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_south"},/area/station/routingdepot)
"bmd" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
-"bme" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bmf" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bmg" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bme" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bmf" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bmg" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bmh" = (/obj/grille/steel,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/obj/window{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bmi" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/steel,/obj/cable,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bmj" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3368,11 +3368,11 @@
"bmN" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/routingdepot)
"bmO" = (/obj/machinery/mass_driver{dir = 4; drive_range = 10; id = "cargo_out"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/routingdepot)
"bmP" = (/obj/machinery/mass_driver{dir = 4; drive_range = 10; id = "cargo_out"},/obj/machinery/door/poddoor{id = "cargo_out"; name = "Cargo Routing Door"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/routingdepot)
-"bmQ" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/door/poddoor{id = "cargo_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bmR" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bmS" = (/obj/disposalpipe/segment,/obj/machinery/cargo_router/Router6,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bmT" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"bmU" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 5; id = "speedboost_crusher"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
+"bmQ" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/door/poddoor{id = "cargo_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bmR" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bmS" = (/obj/disposalpipe/segment,/obj/machinery/cargo_router/Router6,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bmT" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"bmU" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 5; id = "speedboost_crusher"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
"bmV" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 5; id = "speedboost_crusher"},/obj/machinery/door/poddoor{id = "speedboost_crusher"; name = "Disposals Door"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/disposal)
"bmW" = (/obj/machinery/conveyor{dir = 4; id = "garbage"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bmX" = (/obj/machinery/conveyor{dir = 4; id = "garbage"; operating = 1},/obj/machinery/door/poddoor{id = "speedboost_crusher"; name = "Disposals Door"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3400,9 +3400,9 @@
"bnt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/routingdepot)
"bnu" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot)
"bnv" = (/obj/machinery/cargo_router/Router1,/turf/simulated/floor/plating,/area/station/routingdepot)
-"bnw" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bnx" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bny" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bnw" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bnx" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bny" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bnz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/disposal)
"bnA" = (/obj/item/bananapeel,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/disposal)
"bnB" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating/airless,/area)
@@ -3432,18 +3432,18 @@
"bnZ" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/routingdepot)
"boa" = (/obj/machinery/cargo_router/Router8,/turf/simulated/floor/plating,/area/station/routingdepot)
"bob" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/door/poddoor{id = "cargo_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot)
-"boc" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"},/obj/machinery/door/poddoor{id = "cargo_in"; name = "Cargo Routing Door"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"bod" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"boe" = (/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"bof" = (/obj/machinery/cargo_router/Router7,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bog" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/launcher_loader/east,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"boh" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 13; id = "speedboost_east"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"boi" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"boj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bok" = (/obj/machinery/cargo_router/Router9,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bol" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bom" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bon" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"},/obj/machinery/door/poddoor{id = "outer_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"boc" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"},/obj/machinery/door/poddoor{id = "cargo_in"; name = "Cargo Routing Door"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"bod" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"boe" = (/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"bof" = (/obj/machinery/cargo_router/Router7,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bog" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/launcher_loader/east,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"boh" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 13; id = "speedboost_east"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"boi" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"boj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bok" = (/obj/machinery/cargo_router/Router9,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bol" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bom" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bon" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"},/obj/machinery/door/poddoor{id = "outer_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"boo" = (/obj/machinery/cargo_router/Router11,/turf/simulated/floor/plating/airless,/area)
"bop" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/stockex)
"boq" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/crew_quarters/stockex)
@@ -3473,10 +3473,10 @@
"boO" = (/obj/machinery/mass_driver{id = "medsci_in"},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/routingdepot)
"boP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/airless,/area/station/routingdepot)
"boQ" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/routingdepot)
-"boR" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"boS" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"boT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/aft)
-"boU" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"boR" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"boS" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"boT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/south)
+"boU" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
"boV" = (/turf/simulated/floor/plating/airless,/area)
"boW" = (/obj/table/auto,/obj/item/clipboard,/obj/item/pen,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/crew_quarters/stockex)
"boX" = (/turf/simulated/floor/carpet{icon_state = "fblue1"; dir = 2},/area/station/crew_quarters/stockex)
@@ -3509,14 +3509,14 @@
"bpy" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
"bpz" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bpA" = (/turf/space,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area)
-"bpB" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpC" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpD" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpF" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/mass_driver{dir = 8; drive_range = 13; icon_state = "mass_driver"; id = "speedboost_west"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"bpG" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/aft)
-"bpH" = (/obj/machinery/cargo_router/Router10,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpI" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/door/poddoor{id = "outer_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bpB" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpC" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpD" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpF" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/mass_driver{dir = 8; drive_range = 13; icon_state = "mass_driver"; id = "speedboost_west"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"bpG" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/south)
+"bpH" = (/obj/machinery/cargo_router/Router10,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpI" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/door/poddoor{id = "outer_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bpJ" = (/obj/machinery/mass_driver{dir = 8; drive_range = 23; icon_state = "mass_driver"; id = "outer_in"},/turf/simulated/floor/plating/airless,/area)
"bpK" = (/obj/machinery/cargo_router/Router12,/turf/simulated/floor/plating/airless,/area)
"bpL" = (/obj/storage/closet/wardrobe/black/formalwear,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/crew_quarters/stockex)
@@ -3558,17 +3558,17 @@
"bqv" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
"bqw" = (/turf/space,/obj/disposalpipe/segment{dir = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bqx" = (/turf/space,/obj/disposalpipe/segment{dir = 4},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
-"bqy" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bqz" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/aft)
-"bqA" = (/obj/disposalpipe/segment,/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bqB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bqC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bqD" = (/obj/machinery/door/airlock/classic{name = "Emergency Airbridge Access"; req_access_txt = "12"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bqE" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bqF" = (/obj/grille/steel,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bqG" = (/obj/grille/steel,/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bqH" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bqI" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bqy" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bqz" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/south)
+"bqA" = (/obj/disposalpipe/segment,/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/wall,/area/station/maintenance/south)
+"bqB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bqC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bqD" = (/obj/machinery/door/airlock/classic{name = "Emergency Airbridge Access"; req_access_txt = "12"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bqE" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bqF" = (/obj/grille/steel,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bqG" = (/obj/grille/steel,/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bqH" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bqI" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bqJ" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/stamp,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/crew_quarters/stockex)
"bqK" = (/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fblue3"; dir = 6},/area/station/crew_quarters/stockex)
"bqL" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/crew_quarters/stockex)
@@ -3590,13 +3590,13 @@
"brb" = (/turf/space,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area)
"brc" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
"brd" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/obj/disposalpipe/segment,/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
-"bre" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/aft)
-"brf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/maintenance/aft)
-"brg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/maintenance/aft)
-"brh" = (/obj/stool/chair{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor,/area/station/maintenance/aft)
-"bri" = (/obj/table/reinforced/auto,/obj/machinery/light/small{dir = 4},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/aft)
-"brj" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"brk" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bre" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/south)
+"brf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/maintenance/south)
+"brg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/maintenance/south)
+"brh" = (/obj/stool/chair{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor,/area/station/maintenance/south)
+"bri" = (/obj/table/reinforced/auto,/obj/machinery/light/small{dir = 4},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/south)
+"brj" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"brk" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"brl" = (/obj/machinery/mass_driver{dir = 2; drive_range = 60; id = "south_ext"},/turf/simulated/floor/plating/airless,/area)
"brm" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/crew_quarters/stockex)
"brn" = (/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/crew_quarters/stockex)
@@ -3613,13 +3613,13 @@
"bry" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/maintenance/maintcentral)
"brz" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"brA" = (/turf/space,/obj/disposalpipe/segment,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
-"brB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
-"brC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
-"brD" = (/turf/simulated/floor,/area/station/maintenance/aft)
-"brE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/aft)
-"brF" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor,/area/station/maintenance/aft)
-"brG" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "qm_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"brH" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/obj/machinery/door/poddoor{id = "qm_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"brB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
+"brC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
+"brD" = (/turf/simulated/floor,/area/station/maintenance/south)
+"brE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/south)
+"brF" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor,/area/station/maintenance/south)
+"brG" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "qm_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"brH" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/obj/machinery/door/poddoor{id = "qm_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"brI" = (/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/stockex)
"brJ" = (/obj/grille/steel,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/stockex)
"brK" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/station/crew_quarters/market)
@@ -3646,9 +3646,9 @@
"bsf" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "engine_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/engine)
"bsg" = (/obj/machinery/atmospherics/pipe/simple/insulated,/obj/lattice{icon_state = "lattice-dir"; dir = 6},/turf/space,/area)
"bsh" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/obj/machinery/atmospherics/pipe/vent,/turf/space,/area)
-"bsi" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bsj" = (/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/aft)
-"bsk" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bsi" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bsj" = (/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/south)
+"bsk" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bsl" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"bsm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "neutral"},/area/station/crew_quarters/market)
"bsn" = (/obj/stool,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/station/crew_quarters/market)
@@ -3674,9 +3674,9 @@
"bsH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{req_access_txt = "44"},/turf/simulated/floor/plating,/area/station/hangar/engine)
"bsI" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/wall/r_wall,/area/station/hangar/engine)
"bsJ" = (/obj/machinery/r_door_control{id = "hangar_engine"; pixel_x = 0},/turf/simulated/wall/r_wall,/area/station/hangar/engine)
-"bsK" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bsL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/aft)
-"bsM" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bsK" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bsL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/south)
+"bsM" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bsN" = (/obj/grille/steel,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"bsO" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor,/area/station/crew_quarters/market)
"bsP" = (/obj/submachine/ATM{pixel_x = 32; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/window/cubicle{dir = 8},/obj/machinery/door/window/northright,/turf/simulated/floor{dir = 4; icon_state = "neutral"},/area/station/crew_quarters/market)
@@ -3709,8 +3709,8 @@
"btq" = (/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/shuttlebay,/area/station/hangar/engine)
"btr" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoorleft1"; id = "hangar_engine"; name = "Engineering Hangar"},/turf/simulated/floor/shuttlebay,/area/station/hangar/engine)
"bts" = (/turf/space,/obj/disposalpipe/segment,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area)
-"btt" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"btu" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"btt" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"btu" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
"btv" = (/obj/grille/steel,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"btw" = (/turf/simulated/wall,/area/station/crew_quarters/info)
"btx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/crew_quarters/info)
@@ -4547,11 +4547,11 @@
"bJw" = (/turf/simulated/wall/r_wall,/area/station/science/lab)
"bJx" = (/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 2.5; name = "FIRE HAZARD"},/turf/simulated/wall/r_wall,/area/station/science/lab)
"bJy" = (/obj/grille/steel,/obj/machinery/door/poddoor{id = "tox_vent3"; layer = 8; name = "Exhaust Vent"},/turf/simulated/floor/plating/airless,/area/station/science/lab)
-"bJz" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bJA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bJB" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/external,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/starboard)
-"bJC" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille/steel,/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/decal/poster/wallsign/space,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bJD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"bJz" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bJA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bJB" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/external,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/east)
+"bJC" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille/steel,/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/decal/poster/wallsign/space,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bJD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"bJE" = (/turf/simulated/wall,/area/station/turret_protected/Zeta)
"bJF" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/turret_protected/Zeta)
"bJG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/engine/power)
@@ -4598,13 +4598,13 @@
"bKv" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/science/teleporter)
"bKw" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/science/teleporter)
"bKx" = (/obj/decal/poster/wallsign/poster_sol,/turf/simulated/wall,/area/station/science/teleporter)
-"bKy" = (/obj/grille/steel,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bKz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bKA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bKB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/starboard)
-"bKC" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "ai2medbay"; pixel_x = 32; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bKD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bKE" = (/obj/grille/steel,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"bKy" = (/obj/grille/steel,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bKz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bKA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bKB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/east)
+"bKC" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "ai2medbay"; pixel_x = 32; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bKD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bKE" = (/obj/grille/steel,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"bKF" = (/obj/grille/steel,/obj/disposalpipe/segment,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/wall,/area/station/turret_protected/Zeta)
"bKG" = (/turf/simulated/floor/plating,/area/station/engine/power)
"bKH" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plating,/area/station/engine/power)
@@ -4668,9 +4668,9 @@
"bLN" = (/obj/machinery/door_control{id = "scienceteleporter2"; name = "Pad Public-Access Lockdown"; pixel_x = 6; pixel_y = 24},/obj/machinery/door_control{id = "scienceteleporter"; name = "Pad Control-Access Lockdown"; pixel_x = -6; pixel_y = 24},/obj/stool/chair/office{icon_state = "office_chair"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
"bLO" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/data_terminal,/obj/machinery/networked/teleconsole{icon_state = "s_teleport"; dir = 8},/turf/simulated/floor{icon_state = "cautionwhite"; dir = 4},/area/station/science/teleporter)
"bLP" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science/teleporter)
-"bLQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/starboard)
-"bLR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/starboard)
-"bLS" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/starboard)
+"bLQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/east)
+"bLR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/east)
+"bLS" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/east)
"bLT" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"},/turf/simulated/wall/r_wall,/area/station/engine/power)
"bLU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Power Room"; req_access_txt = "45"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/power)
"bLV" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"},/turf/simulated/wall,/area/station/engine/power)
@@ -4736,12 +4736,12 @@
"bNd" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/engine{allows_vehicles = 0},/area/station/science/teleporter)
"bNe" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine{allows_vehicles = 0},/area/station/science/teleporter)
"bNf" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/machinery/door/poddoor{id = "scienceteleporter2"; name = "Teleporter Blast Shield"; p_open = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced,/obj/securearea{desc = "Careless use of experimental teleportation technology may be hazardous to your health."; name = "Molecular Integrity Hazard"},/obj/disposalpipe/segment,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/engine,/area/station/science/teleporter)
-"bNg" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hallway/primary/starboard)
-"bNh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bNi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bNj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/hallway/primary/starboard)
-"bNk" = (/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/hallway/primary/starboard)
-"bNl" = (/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"bNg" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hallway/primary/east)
+"bNh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bNi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bNj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/hallway/primary/east)
+"bNk" = (/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/hallway/primary/east)
+"bNl" = (/turf/simulated/wall,/area/station/hallway/primary/east)
"bNm" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall,/area/station/maintenance/inner)
"bNn" = (/obj/machinery/mass_driver{dir = 1; drive_range = 33; id = "medsci_out"},/obj/machinery/door/poddoor{id = "medsci_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bNo" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "medsci_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -4815,10 +4815,10 @@
"bOE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/networked/telepad,/turf/simulated/floor/engine{allows_vehicles = 0},/area/station/science/teleporter)
"bOF" = (/turf/simulated/floor/engine{allows_vehicles = 0},/area/station/science/teleporter)
"bOG" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/poddoor{id = "scienceteleporter2"; name = "Teleporter Blast Shield"; p_open = 1},/obj/machinery/door/airlock/glass{name = "Teleporter Pad"; req_access_txt = "0"},/obj/disposalpipe/segment,/turf/simulated/floor/engine,/area/station/science/teleporter)
-"bOH" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/hallway/primary/starboard)
-"bOI" = (/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bOJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bOK" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/hallway/primary/starboard)
+"bOH" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/hallway/primary/east)
+"bOI" = (/turf/simulated/floor,/area/station/hallway/primary/east)
+"bOJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bOK" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/hallway/primary/east)
"bOL" = (/turf/simulated/wall,/area/station/routingdepot/airbridge)
"bOM" = (/turf/simulated/wall,/area/station/maintenance/inner)
"bON" = (/obj/machinery/mass_driver{dir = 1; drive_range = 33; id = "medsci_out"},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -4894,7 +4894,7 @@
"bQf" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
"bQg" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/pen,/obj/item/device/radio/headset/multifreq,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/storage/firstaid/regular,/turf/simulated/floor{icon_state = "cautionwhite"; dir = 4},/area/station/science/teleporter)
"bQh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine{allows_vehicles = 0},/area/station/science/teleporter)
-"bQi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hallway/primary/starboard)
+"bQi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hallway/primary/east)
"bQj" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
"bQk" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bQl" = (/obj/machinery/computer/ordercomp,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor,/area/station/routingdepot/airbridge)
@@ -4956,10 +4956,10 @@
"bRp" = (/obj/securearea{desc = "Careless use of experimental teleportation technology may be hazardous to your health."; name = "Molecular Integrity Hazard"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
"bRq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall,/area/station/science{name = "Research Sector"})
"bRr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science/teleporter)
-"bRs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bRt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bRu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bRv" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "testchamber"; name = "test chamber mail router"},/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/hallway/primary/starboard)
+"bRs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bRt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bRu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bRv" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "testchamber"; name = "test chamber mail router"},/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/hallway/primary/east)
"bRw" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
"bRx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bRy" = (/turf/simulated/floor,/area/station/routingdepot/airbridge)
@@ -5031,9 +5031,9 @@
"bSM" = (/obj/storage/closet/biohazard,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_south"},/area/station/science{name = "Research Sector"})
"bSN" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/machinery/portable_atmospherics/scrubber,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_south"},/area/station/science{name = "Research Sector"})
"bSO" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
-"bSP" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/noticeboard{pixel_x = -32; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bSQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bSR" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "chemistry"; name = "chemistry mail router"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
+"bSP" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/noticeboard{pixel_x = -32; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bSQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bSR" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "chemistry"; name = "chemistry mail router"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
"bSS" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Medsci Cargo Dock"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"},/area/station/routingdepot/airbridge)
"bST" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bSU" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/routingdepot/airbridge)
@@ -5114,17 +5114,17 @@
"bUr" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass{name = "Research Sector"; req_access_txt = "24"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science{name = "Research Sector"})
"bUs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science{name = "Research Sector"})
"bUt" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass{name = "Research Sector"; req_access_txt = "24"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science{name = "Research Sector"})
-"bUu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bUv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour13;desc=What would a research station be without a research sector? Beats me! Anyways, that's what's in here. Authorized personnel only! Your station's science team is very busy working on very serious and important sciencey stuff!"; freq = 1443; location = "tour12"; name = "tour beacon - research"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUx" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "research"; name = "research mail router"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
+"bUu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bUv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour13;desc=What would a research station be without a research sector? Beats me! Anyways, that's what's in here. Authorized personnel only! Your station's science team is very busy working on very serious and important sciencey stuff!"; freq = 1443; location = "tour12"; name = "tour beacon - research"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUx" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "research"; name = "research mail router"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
"bUy" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Medsci Cargo Dock"},/turf/simulated/floor{icon_state = "delivery"},/area/station/routingdepot/airbridge)
"bUz" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bUA" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_east"},/area/station/routingdepot/airbridge)
"bUB" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
-"bUC" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bUD" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bUE" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"bUC" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bUD" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bUE" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"bUF" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bUG" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/elect)
"bUH" = (/obj/table/reinforced/auto,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southleft{name = "Electronics Lab"; req_access_txt = "45"},/obj/item/paper_bin,/obj/item/pen,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/engine/elect)
@@ -5188,39 +5188,39 @@
"bVN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/shower,/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/science{name = "Research Sector"})
"bVO" = (/obj/disposalpipe/segment{dir = 4},/obj/submachine/chef_sink/chem_sink{dir = 1},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/science{name = "Research Sector"})
"bVP" = (/obj/disposalpipe/segment{dir = 4},/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 2.5; name = "FIRE HAZARD"},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
-"bVQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bVR" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bVQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bVR" = (/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
"bVT" = (/turf/simulated/wall/r_wall,/area/station/routingdepot/airbridge)
"bVU" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
"bVV" = (/obj/grille/steel,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
-"bVW" = (/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/station/hallway/primary/starboard)
-"bVX" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bVY" = (/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bVZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bWa" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bWb" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bWc" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWd" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWe" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWf" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWg" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWh" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bWi" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bWj" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bWk" = (/obj/noticeboard{pixel_y = 28},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWm" = (/obj/shrub,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWn" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bWo" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bWp" = (/obj/machinery/light{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bWr" = (/obj/machinery/vending/cola/red,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWs" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bWt" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bWu" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWv" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bWw" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/starboard)
+"bVW" = (/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/station/hallway/primary/east)
+"bVX" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bVY" = (/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bVZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bWa" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bWb" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bWc" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWd" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWe" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWf" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWg" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWh" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bWi" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bWj" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bWk" = (/obj/noticeboard{pixel_y = 28},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWm" = (/obj/shrub,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWn" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bWo" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bWp" = (/obj/machinery/light{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bWr" = (/obj/machinery/vending/cola/red,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWs" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bWt" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bWu" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWv" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
+"bWw" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/hallway/primary/east)
"bWx" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"bWy" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"bWz" = (/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/station/quartermaster/office)
@@ -5255,31 +5255,31 @@
"bXc" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Guardbot Depot"; req_access_txt = "8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/science{name = "Research Sector"})
"bXd" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/science{name = "Research Sector"})
"bXe" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
-"bXf" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bXg" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplecorner"; dir = 8},/area/station/hallway/primary/starboard)
-"bXi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "medbay"; name = "medbay mail router"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bXj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bXk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bXl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "genetics"; name = "genetics mail router"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bXm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/station/hallway/primary/starboard)
-"bXn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "robotics"; name = "robotics mail router"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXp" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXt" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bXv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=escape"; location = "engine"; name = "bot navigation beacon"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bXz" = (/obj/disposalpipe/junction{dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXA" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXC" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXD" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bXf" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bXg" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplecorner"; dir = 8},/area/station/hallway/primary/east)
+"bXi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "medbay"; name = "medbay mail router"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bXj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bXk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bXl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "genetics"; name = "genetics mail router"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bXm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/station/hallway/primary/east)
+"bXn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "robotics"; name = "robotics mail router"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXp" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXt" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bXv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=escape"; location = "engine"; name = "bot navigation beacon"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bXz" = (/obj/disposalpipe/junction{dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXA" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXC" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXD" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor,/area/station/hallway/primary/east)
"bXE" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bXF" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/vending/cola/blue,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market{name = "Supply Lobby"})
"bXG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5321,23 +5321,23 @@
"bYq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/science/bot_storage)
"bYr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor,/area/station/science/bot_storage)
"bYs" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/xmas,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"bYt" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYu" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bYv" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYw" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYx" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYy" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYz" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYA" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYB" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYD" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bYE" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYF" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour15;desc=Thanks to advances in plasma research, your C-class station has been equipped with a new Thermo-Electric Generator engine! Singularity accidents are a thing of the past! Who ever thought it was a good idea to keep a black hole inside a space station anyways? Yeesh!"; freq = 1443; location = "tour14"; name = "tour beacon - engine"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bYH" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYI" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bYJ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bYt" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYu" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bYv" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYw" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYx" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYy" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYz" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYA" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYB" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYD" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bYE" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYF" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour15;desc=Thanks to advances in plasma research, your C-class station has been equipped with a new Thermo-Electric Generator engine! Singularity accidents are a thing of the past! Who ever thought it was a good idea to keep a black hole inside a space station anyways? Yeesh!"; freq = 1443; location = "tour14"; name = "tour beacon - engine"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bYH" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYI" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bYJ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor,/area/station/hallway/primary/east)
"bYK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bYL" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bYM" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5376,43 +5376,43 @@
"bZt" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/science/bot_storage)
"bZu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/science/bot_storage)
"bZv" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/xmas,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"bZw" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bZx" = (/obj/machinery/vending/cola/red,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bZy" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hallway/primary/starboard)
-"bZz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bZA" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "bluecorner"},/area/station/hallway/primary/starboard)
-"bZB" = (/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bZC" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bZD" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bZE" = (/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bZF" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bZG" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bZH" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZI" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZJ" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboard)
-"bZK" = (/turf/simulated/wall,/area/station/maintenance/starboard)
-"bZL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/starboard)
+"bZw" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bZx" = (/obj/machinery/vending/cola/red,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bZy" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hallway/primary/east)
+"bZz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bZA" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "bluecorner"},/area/station/hallway/primary/east)
+"bZB" = (/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bZC" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bZD" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bZE" = (/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bZF" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bZG" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bZH" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZI" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZJ" = (/turf/simulated/wall/r_wall,/area/station/maintenance/east)
+"bZK" = (/turf/simulated/wall,/area/station/maintenance/east)
+"bZL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/east)
"bZM" = (/turf/simulated/wall,/area/station/crew_quarters/toilets)
"bZN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock{name = "Toilets"; req_access_txt = "0"},/turf/simulated/floor,/area/station/crew_quarters/toilets)
-"bZO" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZP" = (/obj/table/auto,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZQ" = (/obj/machinery/vending/snack,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZR" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bZS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZT" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj1"; mail_tag = "electronics"; name = "electronics mail router"},/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZW" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/hallway/primary/starboard)
-"bZX" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; name = "engineering mail router"},/turf/simulated/floor{icon_state = "yellowcorner"},/area/station/hallway/primary/starboard)
-"bZY" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"bZZ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"caa" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cab" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"cac" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"cad" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"cae" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"caf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 1},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"cag" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/starboard)
+"bZO" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZP" = (/obj/table/auto,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZQ" = (/obj/machinery/vending/snack,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZR" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bZS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZT" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj1"; mail_tag = "electronics"; name = "electronics mail router"},/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZW" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/hallway/primary/east)
+"bZX" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; name = "engineering mail router"},/turf/simulated/floor{icon_state = "yellowcorner"},/area/station/hallway/primary/east)
+"bZY" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"bZZ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"caa" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cab" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"cac" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"cad" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"cae" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"caf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 1},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
+"cag" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor{icon_state = "yellow"},/area/station/hallway/primary/east)
"cah" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/crew_quarters/market{name = "Supply Lobby"})
"cai" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"caj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5458,36 +5458,36 @@
"caX" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor,/area/station/science/bot_storage)
"caY" = (/obj/table/reinforced/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor,/area/station/science/bot_storage)
"caZ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"cba" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"cbb" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"cbc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"cbd" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/hallway/primary/starboard)
-"cbe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"cbg" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbh" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbi" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbj" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbk" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cbl" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; status = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cbm" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cba" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/east)
+"cbb" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "blue"},/area/station/hallway/primary/east)
+"cbc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"cbd" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/hallway/primary/east)
+"cbe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/hallway/primary/east)
+"cbg" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbh" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbi" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbj" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbk" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cbl" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; status = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cbm" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cbn" = (/obj/machinery/light/small{dir = 8},/obj/machinery/bathtub{anchored = 1; dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"cbo" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"cbp" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
-"cbq" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 5; icon_state = "intact"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbr" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbs" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbt" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"cbu" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"cbv" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"cbw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 6},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"cbx" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cby" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbz" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbA" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 9},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbB" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbC" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cbD" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cbq" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 5; icon_state = "intact"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbr" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbs" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbt" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"cbu" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/east)
+"cbv" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/east)
+"cbw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 6},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"cbx" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cby" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbz" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbA" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 9},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbB" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbC" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cbD" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cbE" = (/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cbF" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cbG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/shrub{dir = 8; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"},/turf/simulated/floor{icon_state = "neutral"},/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5538,32 +5538,32 @@
"ccz" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/disposalpipe/segment{dir = 4},/obj/machinery/bot/guardbot/xmas,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
"ccA" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/science/bot_storage)
"ccB" = (/obj/lattice,/obj/disposalpipe/segment{dir = 4},/turf/space,/area)
-"ccC" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"ccD" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/machinery/door/window/eastright,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/hallway/primary/starboard)
-"ccE" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency,/turf/simulated/floor{dir = 10; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"ccF" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"ccG" = (/obj/machinery/light/emergency,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "blue"; dir = 6},/area/station/hallway/primary/starboard)
-"ccH" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccI" = (/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccK" = (/obj/machinery/power/apc{areastring = "Starboard Primary Hallway"; dir = 1; name = "Starboard Primary Hallway APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccO" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccQ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccR" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccS" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ccC" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/hallway/primary/east)
+"ccD" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/machinery/door/window/eastright,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/hallway/primary/east)
+"ccE" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency,/turf/simulated/floor{dir = 10; icon_state = "blue"},/area/station/hallway/primary/east)
+"ccF" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"ccG" = (/obj/machinery/light/emergency,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "blue"; dir = 6},/area/station/hallway/primary/east)
+"ccH" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccI" = (/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccK" = (/obj/machinery/power/apc{areastring = "Starboard Primary Hallway"; dir = 1; name = "Starboard Primary Hallway APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccO" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccQ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccR" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccS" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ccT" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/obj/machinery/door/window/eastleft,/obj/item/storage/toilet{dir = 4},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"ccU" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"ccV" = (/obj/securearea{desc = "A poster that reads 'CLEAN HANDS SAVE LIVES'."; icon_state = "chsl"; name = "CLEAN HANDS SAVE LIVES"; pixel_x = 32; pixel_y = 0},/obj/submachine/chef_sink/chem_sink{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
-"ccW" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"ccX" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"ccY" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/starboard)
-"ccZ" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"cda" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area/station/maintenance/asmaint)
-"cdb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"ccW" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"ccX" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/east)
+"ccY" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/east)
+"ccZ" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"cda" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area/station/maintenance/SEmaint)
+"cdb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cdc" = (/obj/machinery/atmospherics/portables_connector{name = "Medbay Repressurization Port"},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"cdd" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/atmospherics/valve{high_risk = 1; name = "Air Reserve (Escape Hallway)"},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"cde" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/machinery/atmospherics/portables_connector{name = "Escape Hallway Repressurization Port"},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
@@ -5608,23 +5608,23 @@
"cdR" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay/lobby)
"cdS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay/lobby)
"cdT" = (/obj/securearea{desc = "Blue, blue."; icon_state = "med"; layer = 9; name = "MEDICAL BAY"; pixel_x = 0},/turf/simulated/wall/r_wall,/area/station/medical/medbay/lobby)
-"cdU" = (/obj/machinery/power/apc{areastring = "Medbay Lobby"; dir = 2; name = "Medbay Lobby APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cdV" = (/obj/machinery/power/apc{areastring = "Medbay"; dir = 2; name = "Medbay APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cdW" = (/obj/machinery/power/apc{areastring = "Medbay Operating Theater"; dir = 2; name = "Medbay Operating Theater APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cdX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cdU" = (/obj/machinery/power/apc{areastring = "Medbay Lobby"; dir = 2; name = "Medbay Lobby APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cdV" = (/obj/machinery/power/apc{areastring = "Medbay"; dir = 2; name = "Medbay APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cdW" = (/obj/machinery/power/apc{areastring = "Medbay Operating Theater"; dir = 2; name = "Medbay Operating Theater APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cdX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cdY" = (/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"cdZ" = (/turf/simulated/wall,/area/station/medical/robotics)
"cea" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/medical/robotics)
"ceb" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/medical/robotics)
-"cec" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cec" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
"ced" = (/obj/table/auto,/obj/item/paper_bin,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"cee" = (/obj/machinery/atmospherics/pipe/vent{dir = 4},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area)
"cef" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 4},/obj/lattice,/turf/space,/area)
-"ceg" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9; icon_state = "intact"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"ceh" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 5},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"ceg" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9; icon_state = "intact"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"ceh" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 5},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"cei" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/lattice,/turf/space,/area)
"cej" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area)
-"cek" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cek" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cel" = (/obj/machinery/atmospherics/valve{dir = 4; high_risk = 1; name = "Air Reserve (Medbay)"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cem" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4; icon_state = "manifold"; level = 1},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"cen" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
@@ -5654,14 +5654,14 @@
"ceL" = (/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/station/science/storage)
"ceM" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/science/storage)
"ceN" = (/obj/machinery/dispenser{o2tanks = 5; pltanks = 15},/turf/simulated/floor/plating,/area/station/science/storage)
-"ceO" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor,/area/station/artifact)
-"ceP" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/artifact)
-"ceQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/artifact)
-"ceR" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/artifact)
-"ceS" = (/turf/simulated/floor,/area/station/artifact)
-"ceT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/artifact)
-"ceU" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/artifact)
-"ceV" = (/turf/simulated/wall,/area/station/artifact)
+"ceO" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor,/area/station/science/artifact)
+"ceP" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/science/artifact)
+"ceQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/science/artifact)
+"ceR" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/science/artifact)
+"ceS" = (/turf/simulated/floor,/area/station/science/artifact)
+"ceT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
+"ceU" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/science/artifact)
+"ceV" = (/turf/simulated/wall,/area/station/science/artifact)
"ceW" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table/auto,/obj/machinery/networked/printer{print_id = "Research Sector"},/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/station/science{name = "Research Sector"})
"ceX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/station/science{name = "Research Sector"})
"ceY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/science{name = "Research Sector"})
@@ -5674,7 +5674,7 @@
"cff" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/lobby)
"cfg" = (/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/lobby)
"cfh" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/obj/machinery/vending/medical_public,/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 1},/area/station/medical/medbay/lobby)
-"cfi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cfi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cfj" = (/obj/window/reinforced/west,/obj/machinery/door/window/southleft,/mob/living/silicon/hivebot/eyebot,/turf/simulated/floor/grid,/area/station/medical/robotics)
"cfk" = (/obj/window/reinforced/east,/obj/machinery/door/window/southright,/obj/machinery/light{dir = 1; pixel_x = -1},/mob/living/silicon/hivebot/eyebot,/turf/simulated/floor/grid,/area/station/medical/robotics)
"cfl" = (/obj/table/auto,/obj/item/scalpel,/obj/item/scalpel,/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/hemostat,/obj/item/suture,/turf/simulated/floor{icon_state = "corner_west"; dir = 2},/area/station/medical/robotics)
@@ -5689,7 +5689,7 @@
"cfu" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/secondary/exit)
"cfv" = (/turf/simulated/floor,/area/station/hallway/secondary/exit)
"cfw" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/secondary/exit)
-"cfx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cfx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cfy" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 1; pixel_x = -24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/portable_atmospherics/canister/air,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"cfz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"cfA" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/space_heater,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
@@ -5702,8 +5702,8 @@
"cfH" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/crew_quarters/market{name = "Supply Lobby"})
"cfI" = (/obj/machinery/vending/paint/broken,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market{name = "Supply Lobby"})
"cfJ" = (/turf/simulated/wall,/area/station/crew_quarters/market{name = "Supply Lobby"})
-"cfK" = (/obj/storage/closet/emergency,/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfL" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cfK" = (/obj/storage/closet/emergency,/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfL" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cfM" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "fullred"},/area/station/security/checkpoint/cargo)
"cfN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"},/turf/simulated/floor{icon_state = "fullred"},/area/station/security/checkpoint/cargo)
"cfO" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/storage/secure/closet/security/equipment,/turf/simulated/floor{icon_state = "fullred"},/area/station/security/checkpoint/cargo)
@@ -5721,10 +5721,10 @@
"cga" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/station/science/storage)
"cgb" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/securearea,/turf/simulated/floor/plating,/area/station/science/storage)
"cgc" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/station/science/storage)
-"cgd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/artifact)
-"cge" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_south"},/area/station/artifact)
-"cgf" = (/turf/simulated/floor{icon_state = "caution_south"},/area/station/artifact)
-"cgg" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_south"},/area/station/artifact)
+"cgd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
+"cge" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_south"},/area/station/science/artifact)
+"cgf" = (/turf/simulated/floor{icon_state = "caution_south"},/area/station/science/artifact)
+"cgg" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_south"},/area/station/science/artifact)
"cgh" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/science{name = "Research Sector"})
"cgi" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/science{name = "Research Sector"})
"cgj" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/medical/medbay/lobby)
@@ -5741,17 +5741,17 @@
"cgu" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"cgv" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"cgw" = (/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 1},/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 4},/area/station/medical/medbay/lobby)
-"cgx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgy" = (/obj/machinery/power/apc{areastring = "Robotics"; dir = 4; name = "Robotics APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cgx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgy" = (/obj/machinery/power/apc{areastring = "Robotics"; dir = 4; name = "Robotics APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cgz" = (/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cgA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cgB" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cgC" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"cgD" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
-"cgE" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgG" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgH" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/wall,/area/station/maintenance/starboard)
+"cgE" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgG" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgH" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/wall,/area/station/maintenance/east)
"cgI" = (/turf/simulated/wall/r_wall,/area/station/hallway/secondary/exit)
"cgJ" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cgK" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
@@ -5761,17 +5761,17 @@
"cgO" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/station/hallway/secondary/exit)
"cgP" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cgQ" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
-"cgR" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cgS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cgR" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cgS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cgT" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Medbay"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cgU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Air Hookups"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"cgV" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Escape Hallway"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cgW" = (/obj/machinery/atmospherics/valve{high_risk = 1; name = "Supply Lobby"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
-"cgX" = (/turf/simulated/wall,/area/station/maintenance/asmaint)
-"cgY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cgZ" = (/turf/simulated/wall/r_wall,/area/station/maintenance/asmaint)
-"cha" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cgX" = (/turf/simulated/wall,/area/station/maintenance/SEmaint)
+"cgY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cgZ" = (/turf/simulated/wall/r_wall,/area/station/maintenance/SEmaint)
+"cha" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"chc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/checkpoint/cargo)
"chd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "fullred"},/area/station/security/checkpoint/cargo)
"che" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "fullred"},/area/station/security/checkpoint/cargo)
@@ -5786,12 +5786,12 @@
"chn" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 1},/turf/simulated/floor/plating/airless,/area)
"cho" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/science/storage)
"chp" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/science/storage)
-"chq" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/artifact)
-"chr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-4"},/turf/simulated/floor{icon_state = "caution_east"},/area/station/artifact)
-"chs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cht" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"chu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"chv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/artifact)
+"chq" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/science/artifact)
+"chr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-4"},/turf/simulated/floor{icon_state = "caution_east"},/area/station/science/artifact)
+"chs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cht" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"chu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"chv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/science/artifact)
"chw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/science{name = "Research Sector"})
"chx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=medbay"; location = "research"; name = "bot navigation beacon"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "purplecorner"; dir = 8},/area/station/science{name = "Research Sector"})
"chy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/science{name = "Research Sector"})
@@ -5810,18 +5810,18 @@
"chL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/lobby)
"chM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/lobby)
"chN" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/medical/medbay/lobby)
-"chO" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"chO" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"chP" = (/obj/storage/crate/robotics_supplies,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"chQ" = (/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"chR" = (/obj/landmark/start{name = "Roboticist"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"chS" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Robotics Storage"; req_access_txt = "12;29"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"chT" = (/obj/machinery/light/small,/obj/reagent_dispensers/fueltank,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"chU" = (/obj/rack,/obj/item/storage/toolbox/mechanical,/obj/item/reagent_containers/glass/oilcan,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
-"chV" = (/obj/landmark{name = "kudzustart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chW" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chX" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chY" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chZ" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area/station/maintenance/starboard)
+"chV" = (/obj/landmark{name = "kudzustart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chW" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chX" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chY" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chZ" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area/station/maintenance/east)
"cia" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cib" = (/obj/shrub,/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cic" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/grass,/area/station/hallway/secondary/exit)
@@ -5833,16 +5833,16 @@
"cii" = (/obj/machinery/vending/cigarette,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{icon_state = "fullgreen"},/area/station/hallway/secondary/exit)
"cij" = (/obj/shrub{icon_state = "shrub"; dir = 4},/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cik" = (/obj/shrub{icon_state = "shrub"; dir = 8},/turf/simulated/grass,/area/station/hallway/secondary/exit)
-"cil" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cim" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cin" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cio" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cip" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ciq" = (/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cir" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cis" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/power/apc{areastring = "Supply Lobby"; dir = 1; name = "Supply Lobby APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cit" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ciu" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cil" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cim" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cin" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cio" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cip" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ciq" = (/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cir" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cis" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/power/apc{areastring = "Supply Lobby"; dir = 1; name = "Supply Lobby APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cit" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ciu" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"civ" = (/obj/table/auto,/obj/machinery/recharger,/obj/machinery/door_timer/minibrig{pixel_x = 0; pixel_y = -24},/turf/simulated/floor{icon_state = "fullred"},/area/station/security/checkpoint/cargo)
"ciw" = (/obj/table/auto,/obj/item/storage/box/cablesbox,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/mining)
"cix" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{req_access = list(50); req_access_txt = null},/turf/simulated/floor{icon_state = "delivery"},/area/station/mining)
@@ -5858,12 +5858,12 @@
"ciH" = (/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 3; name = "FIRE HAZARD"},/turf/simulated/wall/r_wall,/area/station/science/storage)
"ciI" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/science/storage)
"ciJ" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/science/storage)
-"ciK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"},/area/station/artifact)
-"ciL" = (/obj/cable{icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ciM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair/office{icon_state = "office_chair"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ciN" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{dir = 8; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ciO" = (/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ciP" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
+"ciK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"},/area/station/science/artifact)
+"ciL" = (/obj/cable{icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ciM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair/office{icon_state = "office_chair"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ciN" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{dir = 8; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ciO" = (/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ciP" = (/obj/grille/steel,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
"ciQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purple"; dir = 10},/area/station/science{name = "Research Sector"})
"ciR" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 0; pixel_y = -26},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/science{name = "Research Sector"})
"ciS" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 0; pixel_y = -28},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "red"},/area/station/science{name = "Research Sector"})
@@ -5881,30 +5881,30 @@
"cje" = (/obj/machinery/door/window/eastright,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/medical/medbay/lobby)
"cjf" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/sleeper{dir = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"cjg" = (/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 4},/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 4},/area/station/medical/medbay/lobby)
-"cjh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cji" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cjh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cji" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cjj" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cjk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cjl" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
-"cjm" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cjn" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cjm" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cjn" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cjo" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cjp" = (/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cjq" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor{icon_state = "fullgreen"},/area/station/hallway/secondary/exit)
"cjr" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "fullgreen"},/area/station/hallway/secondary/exit)
"cjs" = (/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/grass,/area/station/hallway/secondary/exit)
-"cjt" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cju" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/mouse,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjE" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cjt" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cju" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/mouse,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjE" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cjF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Mini-Brig"; req_access_txt = "1"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/security/checkpoint/cargo)
"cjG" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/workbench,/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/mining)
"cjH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/station/mining)
@@ -5921,11 +5921,11 @@
"cjS" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/obj/grille/catwalk{dir = 4},/obj/machinery/magnet_chassis{dir = 4},/obj/machinery/mining_magnet{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"cjT" = (/obj/landmark/magnet_center,/turf/space,/area/mining/magnet)
"cjU" = (/turf/simulated/wall/r_wall,/area/station/hangar/science)
-"cjV" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor,/area/station/artifact)
-"cjW" = (/turf/simulated/floor{icon_state = "caution_east"},/area/station/artifact)
-"cjX" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cjY" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/artifact_console{desc = "It just sorta showed up in a giant box of test equipment."; name = "giant mystery science doodad"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cjZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"cjV" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor,/area/station/science/artifact)
+"cjW" = (/turf/simulated/floor{icon_state = "caution_east"},/area/station/science/artifact)
+"cjX" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cjY" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/artifact_console{desc = "It just sorta showed up in a giant box of test equipment."; name = "giant mystery science doodad"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cjZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"cka" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/science{name = "Research Sector"})
"ckb" = (/turf/simulated/wall,/area/station/science/gen_storage)
"ckc" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/science/gen_storage)
@@ -5945,18 +5945,18 @@
"ckq" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/head)
"ckr" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/head)
"cks" = (/turf/simulated/wall/r_wall,/area/station/medical/head)
-"ckt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ckt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cku" = (/obj/landmark/start{name = "Cyborg"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = -28; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"ckv" = (/obj/machinery/optable{id = "robotics"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"ckw" = (/obj/machinery/computer/operating{id = "robotics"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"ckx" = (/obj/submachine/robomoduler,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cky" = (/obj/landmark/start{name = "Cyborg"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"ckz" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance"; req_access_txt = "12;29"},/turf/simulated/floor/plating,/area/station/medical/robotics)
-"ckA" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ckB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ckC" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ckD" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ckE" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ckA" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ckB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ckC" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ckD" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ckE" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ckF" = (/obj/machinery/light_switch{name = "W light switch"; on = 0; pixel_x = -24; pixel_y = 0},/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 9},/area/station/hallway/secondary/exit)
"ckG" = (/obj/table/auto,/obj/item/game_kit,/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
"ckH" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
@@ -5969,12 +5969,12 @@
"ckO" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
"ckP" = (/obj/table/auto,/obj/machinery/computer/security/wooden_tv/small{pixel_y = 8},/turf/simulated/floor{icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
"ckQ" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/stool/chair{dir = 8},/turf/simulated/floor{dir = 5; icon_state = "green"},/area/station/hallway/secondary/exit)
-"ckR" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"ckR" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"ckS" = (/turf/simulated/wall/r_wall,/area/station/storage/tech)
"ckT" = (/turf/simulated/wall,/area/station/storage/tech)
"ckU" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/turf/simulated/floor/plating,/area/station/storage/tech)
"ckV" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/storage/tech)
-"ckW" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"ckW" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"ckX" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/floorflusher/minibrig,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/checkpoint/cargo)
"ckY" = (/obj/storage/secure/closet/brig/automatic/minibrig,/turf/simulated/floor{icon_state = "caution_west"},/area/station/security/checkpoint/cargo)
"ckZ" = (/obj/machinery/manufacturer/mining,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/mining)
@@ -5990,8 +5990,8 @@
"clj" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
"clk" = (/obj/landmark/artifact,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
"cll" = (/obj/storage/crate,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
-"clm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cln" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"clm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cln" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"clo" = (/obj/storage/closet/emergency,/obj/decal/cleanable/cobweb,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/science/gen_storage)
"clp" = (/obj/rack,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/extinguisher,/obj/item/wrench,/obj/item/storage/toolbox/emergency,/obj/item/storage/box/lightbox/tubes,/obj/item/reagent_containers/glass/bucket,/obj/item/device/glowstick,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/science/gen_storage)
"clq" = (/obj/reagent_dispensers/foamtank,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating,/area/station/science/gen_storage)
@@ -6015,19 +6015,19 @@
"clI" = (/turf/simulated/wall,/area/station/medical/morgue)
"clJ" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/medical/morgue)
"clK" = (/turf/simulated/wall/r_wall,/area/station/medical/morgue)
-"clL" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"clM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"clN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"clO" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"clL" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"clM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"clN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"clO" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
"clP" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"clQ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"clR" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"clS" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"clT" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour17;desc=In the event of catastrophic station damage or approved shift change, a shuttle will be dispatched from the regional Central Command dock to this location. Should this occur, remember to line up quietly and enter single-file. No shoving please!"; freq = 1443; location = "tour16"; name = "tour beacon - escape"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"clU" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"clV" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"clW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"clX" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"clU" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"clV" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"clW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"clX" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"clY" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor/plating,/area/station/storage/tech)
"clZ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/item/device/net_sniffer,/turf/simulated/floor/plating,/area/station/storage/tech)
"cma" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/radio,/turf/simulated/floor/plating,/area/station/storage/tech)
@@ -6036,8 +6036,8 @@
"cmd" = (/obj/machinery/bot/guardbot/bootleg,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/guardbot_dock,/turf/simulated/floor/plating,/area/station/storage/tech)
"cme" = (/obj/table/auto,/obj/machinery/computer3/luggable,/turf/simulated/floor/plating,/area/station/storage/tech)
"cmf" = (/obj/table/auto,/obj/item/storage/box/diskbox,/obj/machinery/light/small{dir = 4},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/station/storage/tech)
-"cmg" = (/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cmh" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cmg" = (/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cmh" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cmi" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/security/checkpoint/cargo)
"cmj" = (/obj/stool/bed,/obj/item/clothing/glasses/vr{network = "arcadevr"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/checkpoint/cargo)
"cmk" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/mining)
@@ -6054,11 +6054,11 @@
"cmv" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/science)
"cmw" = (/obj/machinery/computer/ordercomp,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hangar/science)
"cmx" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hangar/science)
-"cmy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/artifact)
-"cmz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/artifact)
-"cmA" = (/turf/simulated/floor{icon_state = "caution_ns"},/area/station/artifact)
-"cmB" = (/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/artifact)
-"cmC" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 8},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/artifact)
+"cmy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
+"cmz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
+"cmA" = (/turf/simulated/floor{icon_state = "caution_ns"},/area/station/science/artifact)
+"cmB" = (/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
+"cmC" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 8},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
"cmD" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/science/gen_storage)
"cmE" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/science/gen_storage)
"cmF" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/science/gen_storage)
@@ -6090,8 +6090,8 @@
"cnf" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/table/auto,/obj/item/clothing/gloves/latex,/obj/item/spraybottle/cleaner,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"cng" = (/obj/table/auto,/obj/item/clothing/mask/surgical,/obj/item/device/healthanalyzer,/obj/item/device/detective_scanner,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/clothing/under/suit{name = "Mortician Suit"},/obj/item/stamp,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"cnh" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/storage/crate/freezer{name = "Freezer - Spare Parts"},/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat,/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat{icon = 'icons/effects/blood.dmi'; icon_state = "gibtorso"; name = "meaty bit"},/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat{icon = 'icons/effects/blood.dmi'; icon_state = "gibmid2"; name = "gross organs"},/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat{icon = 'icons/effects/blood.dmi'; icon_state = "gibhead"; name = "grody thing"},/obj/item/reagent_containers/food/snacks/ingredient/meatpaste{desc = "Gross."; name = "old kidney"},/obj/item/organ/eye,/obj/item/organ/heart{desc = "A human heart, grody. How long has it been in that freezer?"; name = "funky ol' heart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
-"cni" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cnj" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cni" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cnj" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cnk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"cnl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Escape Hallway"},/turf/simulated/floor{icon_state = "arrivalcorner"; tag = ""},/area/station/hallway/secondary/exit)
"cnm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 2; icon_state = "arrival"},/area/station/hallway/secondary/exit)
@@ -6106,8 +6106,8 @@
"cnv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "arrivalcorner"; tag = ""},/area/station/hallway/secondary/exit)
"cnw" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"cnx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"cny" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cnz" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cny" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cnz" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cnA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/storage/tech)
"cnB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/storage/tech)
"cnC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/storage/tech)
@@ -6115,7 +6115,7 @@
"cnE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/storage/tech)
"cnF" = (/turf/simulated/floor/plating,/area/station/storage/tech)
"cnG" = (/obj/machinery/vending/computer3,/turf/simulated/floor/plating,/area/station/storage/tech)
-"cnH" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cnH" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cnI" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/checkpoint/cargo)
"cnJ" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/mining)
"cnK" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/external{req_access = list(50); req_access_txt = null},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/mining)
@@ -6129,11 +6129,11 @@
"cnS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/science)
"cnT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/hangar/science)
"cnU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Science Hangar"; req_access_txt = "8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/science)
-"cnV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/artifact)
-"cnW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"},/area/station/artifact)
-"cnX" = (/obj/submachine/cargopad{name = "Artifact Lab Pad"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cnY" = (/obj/table/auto,/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "caution_west"},/area/station/artifact)
-"cnZ" = (/obj/table/auto,/obj/item/storage/box/tapebox,/obj/item/device/audio_log,/turf/simulated/floor,/area/station/artifact)
+"cnV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/science/artifact)
+"cnW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"},/area/station/science/artifact)
+"cnX" = (/obj/submachine/cargopad{name = "Artifact Lab Pad"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cnY" = (/obj/table/auto,/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "caution_west"},/area/station/science/artifact)
+"cnZ" = (/obj/table/auto,/obj/item/storage/box/tapebox,/obj/item/device/audio_log,/turf/simulated/floor,/area/station/science/artifact)
"coa" = (/obj/machinery/portable_atmospherics/pump,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/science/gen_storage)
"cob" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/science/gen_storage)
"coc" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/science/gen_storage)
@@ -6165,7 +6165,7 @@
"coC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"coD" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"coE" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = 28; pixel_y = 0},/obj/critter/opossum/morty,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
-"coF" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"coF" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/east)
"coG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"coH" = (/turf/simulated/floor{icon_state = "arrivalcorner"; tag = ""},/area/station/hallway/secondary/exit)
"coI" = (/turf/simulated/floor{dir = 6; icon_state = "arrival"},/area/station/hallway/secondary/exit)
@@ -6193,9 +6193,9 @@
"cpe" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/science)
"cpf" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/door_control{id = "hangar_artlab"; name = "Science Hangar Door Control"; pixel_x = 24},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hangar/science)
"cpg" = (/turf/simulated/wall,/area/station/hangar/science)
-"cph" = (/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/station/artifact)
-"cpi" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/artifact)
-"cpj" = (/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/station/artifact)
+"cph" = (/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/station/science/artifact)
+"cpi" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/science/artifact)
+"cpj" = (/obj/grille/steel,/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/station/science/artifact)
"cpk" = (/obj/machinery/door/airlock/medical{name = "Test Chamber Access"; req_access_txt = "33"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/science{name = "Research Sector"})
"cpl" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/testchamber)
"cpm" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/chemistry)
@@ -6216,7 +6216,7 @@
"cpB" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/medical/head)
"cpC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Medical Director"; req_access_txt = "53"},/turf/simulated/floor{icon_state = "medbay"; dir = 2},/area/station/medical/head)
"cpD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/medical/head)
-"cpE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "5"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cpE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "5"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cpF" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/robotics)
"cpG" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/robotics)
"cpH" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/medical/robotics)
@@ -6240,11 +6240,11 @@
"cpZ" = (/obj/table/auto,/obj/machinery/light/small{dir = 8},/obj/item/peripheral/printer,/obj/item/device/flash,/turf/simulated/floor/plating,/area/station/storage/tech)
"cqa" = (/obj/rack,/obj/item/circuitboard/teleporter,/obj/item/circuitboard/card,/obj/item/circuitboard/cloning,/obj/item/circuitboard/barcode_qm,/obj/item/circuitboard/barcode,/turf/simulated/floor/plating,/area/station/storage/tech)
"cqb" = (/obj/rack,/obj/item/circuitboard/arcade,/obj/item/circuitboard/powermonitor,/obj/item/circuitboard/powermonitor_smes,/obj/item/circuitboard/operating,/turf/simulated/floor/plating,/area/station/storage/tech)
-"cqc" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cqd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cqe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cqf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cqg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cqc" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cqd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cqe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cqf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cqg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cqh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 10; icon_state = "yellow"},/area/station/mining)
"cqi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/mining)
"cqj" = (/obj/cable{icon_state = "1-8"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "yellowcorner"},/area/station/mining)
@@ -6308,10 +6308,10 @@
"crp" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/storage/tech)
"crq" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/storage/tech)
"crr" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/storage/tech)
-"crs" = (/turf/simulated/wall,/area/station/maintenance/starboardsolar)
-"crt" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboardsolar)
-"cru" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall,/area/station/maintenance/starboardsolar)
-"crv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"crs" = (/turf/simulated/wall,/area/station/maintenance/eastsolar)
+"crt" = (/turf/simulated/wall/r_wall,/area/station/maintenance/eastsolar)
+"cru" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall,/area/station/maintenance/eastsolar)
+"crv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"crw" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/mining)
"crx" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/mining)
"cry" = (/obj/machinery/door/poddoor{id = "artlabgun"; name = "Emergency Mass Driver"},/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
@@ -6364,12 +6364,12 @@
"cst" = (/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"csu" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"csv" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
-"csw" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"csx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"csy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(13,40); req_access_txt = null},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"csz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"csA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"csB" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"csw" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"csx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"csy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(13,40); req_access_txt = null},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"csz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"csA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"csB" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"csC" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/mining)
"csD" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/mining)
"csE" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 8; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 10; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/mining/magnet)
@@ -6416,15 +6416,15 @@
"ctt" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"ctu" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"ctv" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
-"ctw" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ctw" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ctx" = (/obj/machinery/door/poddoor/blast,/turf/simulated/floor/shuttlebay,/area/station/hallway/secondary/exit)
"cty" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"ctz" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/secondary/exit)
"ctA" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/secondary/exit)
-"ctB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(13,40); req_access_txt = null},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"ctC" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/cell/supercell/charged,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"ctD" = (/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"ctE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"ctB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = list(13,40); req_access_txt = null},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"ctC" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/cell/supercell/charged,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"ctD" = (/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"ctE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"ctF" = (/turf/space,/area/shuttle/mining/station)
"ctG" = (/turf/simulated/wall/r_wall{name = "very r wall"; explosion_resistance = 15},/area/station/testchamber)
"ctH" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "test_chamber2"; name = "Test Chamber Shield"; opacity = 0},/obj/grille/steel,/obj/window/crystal,/obj/window/crystal/reinforced/west,/obj/window/crystal/reinforced/north,/obj/window/crystal/reinforced/south,/turf/simulated/floor/engine/vacuum,/area/station/testchamber)
@@ -6468,14 +6468,14 @@
"cut" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"cuu" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
"cuv" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
-"cuw" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
-"cux" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/starboard)
-"cuy" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cuz" = (/turf/space,/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/starboard)
-"cuA" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cuB" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/solar_control/starboard{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cuC" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cuD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"cuw" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
+"cux" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/east)
+"cuy" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cuz" = (/turf/space,/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/east)
+"cuA" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cuB" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/solar_control/starboard{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cuC" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cuD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cuE" = (/obj/item/device/audio_log/wall_mounted{anchored = 1; max_lines = 350; mode = 1; name = "Test Chamber Recorder"; pixel_x = -25},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cuF" = (/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cuG" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6507,14 +6507,14 @@
"cvg" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"cvh" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/table/auto,/obj/item/paper_bin,/obj/item/pen/marker/red,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/item/pen/marker/blue,/obj/item/body_bag,/obj/item/body_bag,/obj/item/body_bag,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
"cvi" = (/obj/disposaloutlet{dir = 1; mailgroup = "medresearch"; mailgroup2 = "security"; message = "Delivery alert in Morgue."; name = "Morgue Outlet"},/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/morgue)
-"cvj" = (/obj/landmark{name = "blobstart"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cvj" = (/obj/landmark{name = "blobstart"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cvk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"cvl" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cvm" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"cvn" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"cvo" = (/turf/space,/obj/grille/catwalk,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
-"cvp" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cvq" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"cvl" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cvm" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"cvn" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"cvo" = (/turf/space,/obj/grille/catwalk,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
+"cvp" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cvq" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cvr" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cvs" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cvt" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6557,8 +6557,8 @@
"cwe" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cwf" = (/turf/simulated/floor{icon_state = "corner_nwest"; dir = 8},/area/station/hallway/secondary/exit)
"cwg" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "corner_neast"},/area/station/hallway/secondary/exit)
-"cwh" = (/obj/cable,/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
-"cwi" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
+"cwh" = (/obj/cable,/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
+"cwi" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
"cwj" = (/obj/machinery/door/airlock/external{name = "Mining Shuttle Airlock"},/turf/simulated/floor{icon_state = "delivery"},/area/station/mining)
"cwk" = (/obj/table/reinforced/auto,/obj/item/device/healthanalyzer,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cwl" = (/obj/machinery/optable,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6591,10 +6591,10 @@
"cwM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "bluechecker"},/area/station/medical/research)
"cwN" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bluechecker"},/area/station/medical/research)
"cwO" = (/turf/simulated/wall/r_wall,/area/station/medical/research)
-"cwP" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Medical Research"; dir = 8; name = "Medical Research APC"; pixel_x = -24; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cwQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cwR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cwS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cwP" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Medical Research"; dir = 8; name = "Medical Research APC"; pixel_x = -24; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cwQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cwR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cwS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cwT" = (/turf/simulated/floor{icon_state = "corner_west"},/area/station/hallway/secondary/exit)
"cwU" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "corner_east"; dir = 8},/area/station/hallway/secondary/exit)
"cwV" = (/obj/machinery/door/airlock/external,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
@@ -6633,9 +6633,9 @@
"cxC" = (/obj/table/auto,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/device/healthanalyzer,/obj/item/clothing/mask/surgical_shield,/turf/simulated/floor{icon_state = "redwhite"; dir = 8},/area/station/medical/medbay/surgery)
"cxD" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bluechecker"},/area/station/medical/research)
"cxE" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/table/auto,/obj/item/storage/firstaid/brain,/obj/item/storage/firstaid/brain,/obj/item/clothing/glasses/spectro,/turf/simulated/floor{icon_state = "bluechecker"},/area/station/medical/research)
-"cxF" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = -28; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cxG" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cxH" = (/obj/storage/cart/trash,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cxF" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = -28; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cxG" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cxH" = (/obj/storage/cart/trash,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cxI" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cxJ" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/station/hallway/secondary/exit)
"cxK" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
@@ -6662,11 +6662,11 @@
"cyf" = (/obj/submachine/chef_sink/chem_sink{dir = 8},/turf/simulated/floor{icon_state = "redwhite"; dir = 4},/area/station/medical/medbay/surgery)
"cyg" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/medical/research)
"cyh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "bluechecker"},/area/station/medical/research)
-"cyi" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cyi" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cyj" = (/turf/simulated/wall,/area/station/janitor/supply)
"cyk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/simulated/floor/plating,/area/station/janitor/supply)
"cyl" = (/turf/simulated/wall/r_wall,/area/station/janitor/supply)
-"cym" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 10},/obj/cable,/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
+"cym" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 10},/obj/cable,/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
"cyn" = (/obj/table/reinforced/auto,/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/item/storage/box/syringes,/obj/item/pen/marker/blue,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cyo" = (/obj/machinery/chemicompiler_stationary,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cyp" = (/obj/table/reinforced/auto,/obj/item/clothing/gloves/latex,/obj/item/reagent_containers/dropper,/obj/item/pen/marker/red,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6698,7 +6698,7 @@
"cyP" = (/obj/reagent_dispensers/watertank,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/station/janitor/supply)
"cyQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-8"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/station/janitor/supply)
"cyR" = (/obj/table/auto,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/bulbs,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/radio,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "purple"; dir = 5},/area/station/janitor/supply)
-"cyS" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
+"cyS" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
"cyT" = (/obj/machinery/mass_driver{dir = 2; id = "chemdock_out"},/obj/machinery/door/poddoor{id = "chemdock_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/medsci)
"cyU" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/routingdepot/medsci)
"cyV" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "chemdock_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/medsci)
@@ -6772,9 +6772,9 @@
"cAl" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/medical/cdc)
"cAm" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/research)
"cAn" = (/turf/space,/area/station)
-"cAo" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cAp" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"cAq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tracker/starboard,/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"cAo" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cAp" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"cAq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tracker/starboard,/turf/simulated/floor/plating/airless,/area/station/solar/east)
"cAr" = (/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"},/turf/simulated/wall/r_wall,/area/station/medical/cdc)
"cAs" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Pathology Lab"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "delivery_white"},/area/station/medical/cdc)
"cAt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"},/turf/simulated/wall/r_wall,/area/station/medical/cdc)
@@ -6827,8 +6827,8 @@
"cBo" = (/obj/grille/steel,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/medical/cdc)
"cBp" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/cdc)
"cBq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/research)
-"cBr" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cBs" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
+"cBr" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cBs" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
"cBt" = (/obj/item/clothing/suit/bedsheet,/obj/stool/bed/moveable,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc)
"cBu" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/west{icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{icon_state = "rwindow"; dir = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/cdc)
"cBv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair/office,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc)
diff --git a/maps/cogmap2.dmm b/maps/cogmap2.dmm
index c151e8b..32ec73d 100644
--- a/maps/cogmap2.dmm
+++ b/maps/cogmap2.dmm
@@ -64,20 +64,20 @@
"abl" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 2},/turf/space,/area)
"abm" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 6},/turf/space,/area)
"abn" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area)
-"abo" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
+"abo" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
"abp" = (/obj/lattice{icon_state = "lattice-dir"; dir = 5},/turf/space,/area)
"abq" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/turf/space,/area)
"abr" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 10},/turf/space,/area)
"abs" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/turf/space,/area)
-"abt" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/port)
-"abu" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"abv" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"abw" = (/obj/grille/catwalk{dir = 10},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"abx" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
+"abt" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/west)
+"abu" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"abv" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"abw" = (/obj/grille/catwalk{dir = 10},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"abx" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
"aby" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/turf/space,/area)
-"abz" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker/port,/turf/simulated/floor/plating/airless,/area/station/solar/port)
-"abA" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/port)
-"abB" = (/obj/cable,/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
+"abz" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker/port,/turf/simulated/floor/plating/airless,/area/station/solar/west)
+"abA" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/west)
+"abB" = (/obj/cable,/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
"abC" = (/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
"abD" = (/turf/space,/obj/grille/catwalk{dir = 10},/obj/machinery/power/tracker/small_backup2,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/small_backup2)
"abE" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/small_backup2)
@@ -88,8 +88,8 @@
"abJ" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating/airless,/area)
"abK" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor/plating/airless,/area)
"abL" = (/obj/machinery/mass_driver{dir = 4; drive_range = 65; id = "catering_relay"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
-"abM" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"abN" = (/turf/space,/obj/grille/catwalk{dir = 6},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
+"abM" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"abN" = (/turf/space,/obj/grille/catwalk{dir = 6},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
"abO" = (/obj/lattice{icon_state = "lattice-dir"},/turf/space,/area)
"abP" = (/obj/machinery/cargo_router{default_direction = 2; destinations = list("Arrivals" = 4)},/turf/simulated/floor/plating/airless,/area)
"abQ" = (/obj/machinery/mass_driver{dir = 4; drive_range = 70; id = "chapel_relayE"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
@@ -101,7 +101,7 @@
"abW" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating/airless,/area)
"abX" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating/airless,/area)
"abY" = (/turf/space,/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
-"abZ" = (/obj/grille/catwalk{dir = 5},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area/station/solar/port)
+"abZ" = (/obj/grille/catwalk{dir = 5},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area/station/solar/west)
"aca" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/auto/supernorn,/area)
"acb" = (/obj/cable,/obj/machinery/power/solar/small_backup2,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/small_backup2)
"acc" = (/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area/station/solar/small_backup2)
@@ -119,73 +119,73 @@
"aco" = (/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
"acp" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 2},/obj/machinery/light/runway_light/delay2,/turf/space,/area)
"acq" = (/obj/machinery/mass_driver{drive_range = 4; id = "catering_in"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
-"acr" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/portsolar)
-"acs" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"acr" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/westsolar)
+"acs" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"act" = (/obj/decal/cleanable/rust,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"acu" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"acv" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
-"acw" = (/obj/decal/cleanable/rust,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"acx" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"acy" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"acz" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/port)
+"acw" = (/obj/decal/cleanable/rust,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"acx" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"acy" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"acz" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/west)
"acA" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/turret_protected/ai)
"acB" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/small_backup2)
"acC" = (/obj/machinery/mass_driver{drive_range = 5; id = "arrivals_in"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
"acD" = (/obj/lattice{icon_state = "lattice-dir"},/obj/machinery/light/runway_light/delay3,/turf/space,/area)
-"acE" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/port)
-"acF" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"acG" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control/port{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"acH" = (/obj/stool/chair/yellow{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"acI" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"acJ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"acK" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"acE" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/west)
+"acF" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"acG" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control/port{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"acH" = (/obj/stool/chair/yellow{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"acI" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"acJ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"acK" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"acL" = (/obj/decal/cleanable/cobweb,/obj/decal/cleanable/dirt,/obj/decal/cleanable/oil,/obj/fitness/speedbag/captain,/obj/item/reagent_containers/pill/crank,/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"acM" = (/obj/stool/bed,/obj/decal/cleanable/dirt,/obj/landmark/start{name = "Clown"},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"acN" = (/obj/machinery/space_heater,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"acO" = (/obj/decal/cleanable/dirt,/obj/machinery/alarm{pixel_y = 20},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/storage/crate/clown,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"acP" = (/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
-"acQ" = (/obj/reagent_dispensers/fueltank,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/port)
-"acR" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"acS" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"acT" = (/turf/simulated/floor/plating,/area/station/maintenance/port)
-"acU" = (/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"acV" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"acW" = (/obj/item/cigbutt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
+"acQ" = (/obj/reagent_dispensers/fueltank,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/west)
+"acR" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"acS" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"acT" = (/turf/simulated/floor/plating,/area/station/maintenance/west)
+"acU" = (/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"acV" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"acW" = (/obj/item/cigbutt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
"acX" = (/obj/machinery/mass_driver{drive_range = 3; id = "chapel_in"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
"acY" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/turret_protected/ai)
"acZ" = (/obj/grille/steel,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/station/turret_protected/ai)
"ada" = (/obj/grille/steel,/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/turret_protected/ai)
"adb" = (/obj/lattice{icon_state = "lattice-dir"},/obj/machinery/light/runway_light/delay4,/turf/space,/area)
-"adc" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/port)
-"add" = (/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ade" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"adj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"adk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"adl" = (/obj/decal/cleanable/cobweb2,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
+"adc" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/west)
+"add" = (/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ade" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"adj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"adk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"adl" = (/obj/decal/cleanable/cobweb2,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
"adm" = (/obj/table/auto,/obj/deskclutter,/obj/decal/cleanable/dirt,/obj/item/bikehorn,/obj/item/reagent_containers/food/snacks/pie/cream,/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"adn" = (/obj/marker/supplymarker,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"ado" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"adp" = (/obj/decal/cleanable/dirt,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
-"adq" = (/obj/decal/cleanable/dirt,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"adr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/mouse,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ads" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/port)
+"adq" = (/obj/decal/cleanable/dirt,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"adr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/mouse,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ads" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/west)
"adt" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/engine,/area/station/turret_protected/ai)
"adu" = (/obj/window/auto/reinforced,/turf/simulated/floor/engine,/area/station/turret_protected/ai)
"adv" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/engine,/area/station/turret_protected/ai)
"adw" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/machinery/light/runway_light/delay5,/turf/space,/area)
"adx" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/obj/machinery/light/runway_light/delay5,/turf/space,/area)
-"ady" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/port)
-"adz" = (/turf/space,/obj/grille/catwalk{dir = 5},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"adA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adC" = (/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adD" = (/obj/machinery/light_switch/east,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adE" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/portsolar)
-"adF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
+"ady" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/west)
+"adz" = (/turf/space,/obj/grille/catwalk{dir = 5},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"adA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adC" = (/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adD" = (/obj/machinery/light_switch/east,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adE" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/westsolar)
+"adF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
"adG" = (/obj/table/auto,/obj/decal/cleanable/dirt,/obj/decal/cleanable/molten_item,/obj/item/storage/goodybag,/obj/item/peripheral/videocard,/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"adH" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/generic,/obj/stool/chair/syndicate,/obj/npc/trader/exclown{trader_area = "/area/station/crew_quarters/clown"},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"adI" = (/obj/item/bananapeel,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/clown{name = "Clown's Quarters"})
@@ -195,8 +195,8 @@
"adM" = (/obj/decal/cleanable/rust,/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/quartersB)
"adN" = (/obj/decal/poster/wallsign/fudad{pixel_y = -4},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/quartersB)
"adO" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/crew_quarters/quartersB)
-"adP" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"adQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"adP" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"adQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"adR" = (/obj/machinery/turret,/turf/simulated/floor{icon_state = "delivery"},/area/station/turret_protected/ai)
"adS" = (/turf/simulated/floor/grid,/area/station/turret_protected/ai)
"adT" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/grid,/area/station/turret_protected/ai)
@@ -212,19 +212,19 @@
"aed" = (/obj/machinery/mass_driver{dir = 1; drive_range = 4; id = "catering_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "catering_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/hangar/catering)
"aee" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/catering)
"aef" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "catering_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/hangar/catering)
-"aeg" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/port)
-"aeh" = (/turf/space,/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"aei" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aej" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aek" = (/obj/rack,/obj/item/wrench,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/extinguisher,/obj/item/reagent_containers/food/drinks/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/portsolar)
-"ael" = (/obj/table/auto,/obj/item/storage/toolbox/mechanical,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aem" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/portsolar)
-"aen" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/port)
-"aeo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aeg" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/west)
+"aeh" = (/turf/space,/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"aei" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aej" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aek" = (/obj/rack,/obj/item/wrench,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/extinguisher,/obj/item/reagent_containers/food/drinks/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/westsolar)
+"ael" = (/obj/table/auto,/obj/item/storage/toolbox/mechanical,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aem" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/westsolar)
+"aen" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/west)
+"aeo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aep" = (/obj/decal/cleanable/rust,/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"aeq" = (/obj/juggleplaque{pixel_y = -4},/obj/decal/cleanable/rust,/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
"aer" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/classic{name = "Clown's Quarters"; req_access_txt = "12"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/clown{name = "Clown's Quarters"})
-"aes" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aes" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aet" = (/obj/machinery/disposal,/obj/decal/fakeobjects{anchored = 1; desc = "how festive!"; dir = 2; icon = 'icons/misc/old_or_unused.dmi'; icon_state = "lights"; layer = 9; name = "spacemas lights"; pixel_y = 32},/obj/disposalpipe/trunk,/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quartersB)
"aeu" = (/obj/machinery/power/data_terminal,/obj/table/auto,/obj/machinery/networked/printer{name = "Printer - Crew Quarters B"; pixel_y = 5; print_id = "CrewQuartersB"},/obj/decal/fakeobjects{anchored = 1; desc = "how festive!"; dir = 2; icon = 'icons/misc/old_or_unused.dmi'; icon_state = "lights"; layer = 9; name = "spacemas lights"; pixel_y = 32},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quartersB)
"aev" = (/obj/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/mail/autoname/public/crewB,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quartersB)
@@ -236,7 +236,7 @@
"aeB" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/decal/cleanable/dirt,/obj/landmark/start{name = "Staff Assistant"},/obj/item/reagent_containers/food/snacks/chips,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersB)
"aeC" = (/obj/decal/jukebox{pixel_x = 2},/obj/decal/glow{brightness = 3; invisibility = 101; name = "glow - YELLOW"; color_b = 0.2; color_g = 0.45; color_r = 0.5},/obj/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersB)
"aeD" = (/obj/submachine/slot_machine,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersB)
-"aeE" = (/obj/landmark/halloween,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
+"aeE" = (/obj/landmark/halloween,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
"aeF" = (/turf/simulated/floor{icon_state = "circuitoff"},/area/station/turret_protected/ai)
"aeG" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/grid,/area/station/turret_protected/ai)
"aeH" = (/mob/living/silicon/hivebot/eyebot,/turf/simulated/floor/grid,/area/station/turret_protected/ai)
@@ -250,14 +250,14 @@
"aeP" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/shuttlebay,/area/station/hangar/catering)
"aeQ" = (/obj/machinery/mass_driver{dir = 1; drive_range = 4; id = "catering_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/hangar/catering)
"aeR" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/hangar/catering)
-"aeS" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"; dir = 1},/area/station/maintenance/portsolar)
-"aeT" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aeU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aeV" = (/obj/table/auto,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"aeW" = (/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/port)
-"aeX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aeY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aeZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aeS" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"; dir = 1},/area/station/maintenance/westsolar)
+"aeT" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aeU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aeV" = (/obj/table/auto,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"aeW" = (/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/west)
+"aeX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aeY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aeZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"afa" = (/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; name = "Crew Quarters B"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quartersB)
"afb" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quartersB)
"afc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime_gw2"},/area/station/crew_quarters/quartersB)
@@ -281,11 +281,11 @@
"afu" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor/shuttlebay,/area/station/hangar/catering)
"afv" = (/obj/machinery/door_control/podbay/catering/new_walls/east,/turf/simulated/floor/shuttlebay,/area/station/hangar/catering)
"afw" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hangar/catering)
-"afx" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/portsolar)
-"afy" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"afz" = (/obj/table/auto,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"afA" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"afB" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"afx" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/westsolar)
+"afy" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"afz" = (/obj/table/auto,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"afA" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"afB" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"afC" = (/obj/machinery/computer/security/wooden_tv{desc = "These channels seem to mostly be about robuddies. What is this, some kind of reality show?"; name = "Television"; network = "Zeta"},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorscorched1"},/area/station/crew_quarters/quartersB)
"afD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime_gw2"},/area/station/crew_quarters/quartersB)
"afE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime_gw2"},/area/station/crew_quarters/quartersB)
@@ -310,13 +310,13 @@
"afX" = (/obj/stool,/obj/item/device/radio/intercom/cargo,/turf/simulated/floor/plating,/area/station/hangar/catering)
"afY" = (/obj/machinery/computer/barcode{destinations = list("Arrivals","Catering","Disposals","Engine","Escape","Export","MedSci","Security","QM")},/turf/simulated/floor/plating,/area/station/hangar/catering)
"afZ" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/catering)
-"aga" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/portsolar)
+"aga" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/westsolar)
"agb" = (/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/bar)
"agc" = (/turf/simulated/wall/auto/supernorn,/area/station/security/detectives_office)
"agd" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/window_blinds/cog2/left,/turf/simulated/floor/plating,/area/station/security/detectives_office)
"age" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/window_blinds/cog2/middle,/turf/simulated/floor/plating,/area/station/security/detectives_office)
"agf" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/window_blinds/cog2/middle{dir = 10},/turf/simulated/floor,/area/station/security/detectives_office)
-"agg" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
+"agg" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
"agh" = (/obj/stool,/obj/machinery/light_switch/west,/obj/item/clothing/head/helmet/space/santahat,/turf/simulated/floor{icon_state = "floorscorched1"},/area/station/crew_quarters/quartersB)
"agi" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorscorched1"},/area/station/crew_quarters/quartersB)
"agj" = (/obj/machinery/light/small,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/station/crew_quarters/quartersB)
@@ -351,7 +351,7 @@
"agM" = (/obj/landmark/halloween,/turf/simulated/floor{icon_state = "floorgrime_gb1"},/area/station/hangar/catering)
"agN" = (/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hangar/catering)
"agO" = (/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = list(12,25,28); req_access_txt = null; req_only_one_required = 1},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
-"agP" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{areastring = "Bar"; dir = 4; name = "Bar APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"agP" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{areastring = "Bar"; dir = 4; name = "Bar APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"agQ" = (/obj/stool/bed,/obj/landmark/start{name = "Chef"},/obj/decal/poster/wallsign/poster_rand{pixel_y = 26},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/bar)
"agR" = (/obj/storage/closet/wardrobe/white,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/bar)
"agS" = (/obj/table/wood/auto,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/bar)
@@ -393,9 +393,9 @@
"ahC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime_gb1"},/area/station/hangar/catering)
"ahD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hangar/catering)
"ahE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = list(12,25,28); req_access_txt = null; req_only_one_required = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
-"ahF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahH" = (/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro{dir = 4; name = "Catering Staff Quarters"; req_access_txt = "25;28;"; req_only_one_required = 1},/turf/simulated/floor{icon_state = "grimy"},/area/station/maintenance/portsolar)
+"ahF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahH" = (/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro{dir = 4; name = "Catering Staff Quarters"; req_access_txt = "25;28;"; req_only_one_required = 1},/turf/simulated/floor{icon_state = "grimy"},/area/station/maintenance/westsolar)
"ahI" = (/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/bar)
"ahJ" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/bar)
"ahK" = (/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/bar)
@@ -404,7 +404,7 @@
"ahN" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"ahO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"ahP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/blind_switch/area{pixel_x = 24},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"ahQ" = (/obj/item/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
+"ahQ" = (/obj/item/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
"ahR" = (/obj/table/auto,/obj/item/storage/box/cablesbox,/obj/item/storage/toolbox/mechanical,/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/item/device/radio,/obj/decal/cleanable/ripped_poster{pixel_y = 28},/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
"ahS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/crew_quarters/quartersB)
"ahT" = (/obj/storage/closet/wardrobe/grey,/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
@@ -423,12 +423,12 @@
"aig" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/chapel/office)
"aih" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/chapel/main/main)
"aii" = (/obj/machinery/mass_driver{dir = 1; id = "coffin"; name = "coffin driver"},/obj/machinery/door/poddoor/pyro{id = "coffin"; name = "Funeral Door"},/turf/simulated/floor/plating,/area/station/chapel/main/main)
-"aij" = (/obj/machinery/mass_driver{dir = 1; drive_range = 3; id = "chapel_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "chapel_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aik" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"ail" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "chapel_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aim" = (/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 13},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fpmaint)
-"ain" = (/obj/decal/poster/wallsign/stencil/right/p{pixel_x = 16},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/h{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fpmaint)
-"aio" = (/obj/decal/poster/wallsign/stencil/right/l{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/e,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fpmaint)
+"aij" = (/obj/machinery/mass_driver{dir = 1; drive_range = 3; id = "chapel_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "chapel_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aik" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"ail" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "chapel_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aim" = (/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 13},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/NWmaint)
+"ain" = (/obj/decal/poster/wallsign/stencil/right/p{pixel_x = 16},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/h{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/NWmaint)
+"aio" = (/obj/decal/poster/wallsign/stencil/right/l{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/e,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/NWmaint)
"aip" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 1},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/turf/simulated/floor/engine,/area/station/turret_protected/ai)
"aiq" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/turret_protected/ai)
"air" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "nt_logo"},/area/station/turret_protected/ai)
@@ -452,8 +452,8 @@
"aiJ" = (/obj/stool/chair/comfy,/obj/landmark/start{name = "Detective"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aiK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aiL" = (/obj/machinery/door/airlock/pyro/security{dir = 4; name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aiM" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"aiN" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
+"aiM" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"aiN" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
"aiO" = (/obj/decal/cleanable/dirt,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/item/cigbutt,/obj/machinery/power/apc/autoname_west,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
"aiP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
"aiQ" = (/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
@@ -481,10 +481,10 @@
"ajm" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/chapel/main/main)
"ajn" = (/obj/machinery/mass_driver{dir = 1; id = "coffin"; name = "coffin driver"},/turf/simulated/floor/plating,/area/station/chapel/main/main)
"ajo" = (/turf/simulated/wall/auto/supernorn,/area/station/chapel/main/main)
-"ajp" = (/obj/machinery/mass_driver{dir = 1; drive_range = 3; id = "chapel_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajq" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
-"ajr" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajs" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ajp" = (/obj/machinery/mass_driver{dir = 1; drive_range = 3; id = "chapel_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajq" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
+"ajr" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajs" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ajt" = (/obj/machinery/light,/turf/simulated/floor/grid,/area/station/turret_protected/ai)
"aju" = (/obj/stool,/turf/simulated/floor{icon_state = "caution_west"},/area/station/turret_protected/ai)
"ajv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/ai)
@@ -520,8 +520,8 @@
"ajZ" = (/obj/table/wood/auto,/obj/item/ammo/bullets/a38/stun,/obj/item/ammo/bullets/a38,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/cigpacket,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aka" = (/obj/machinery/light/lamp/green,/obj/table/wood/auto,/obj/deskclutter,/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"akb" = (/obj/table/wood/auto,/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/item/device/camera_viewer,/obj/item/camera_test,/obj/item/device/audio_log,/obj/item/device/detective_scanner,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"akc" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/machinery/power/apc{areastring = "Detective's Office"; dir = 8; name = "Detective's Office APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"akd" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Fitness Room"; dir = 4; name = "Fitness Room APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
+"akc" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/machinery/power/apc{areastring = "Detective's Office"; dir = 8; name = "Detective's Office APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"akd" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Fitness Room"; dir = 4; name = "Fitness Room APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
"ake" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/decal/cleanable/dirt,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
"akf" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/item/clothing/suit/bedsheet,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
"akg" = (/obj/item/tile,/obj/item/cable_coil/cut,/obj/item/storage/box/syringes,/obj/item/football,/obj/item/clothing/mask/balaclava,/obj/item/clothing/mask/balaclava,/obj/storage/crate{desc = "A small, cuboid object with a hinged top and empty interior. It smells kinda bad and seems to have an odd stain on it."; icon = 'icons/misc/halloween.dmi'; name = "dented crate"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
@@ -533,7 +533,7 @@
"akm" = (/obj/landmark/start{name = "Staff Assistant"},/obj/item/storage/toilet/random{icon_state = "toilet"; dir = 4},/obj/decal/cleanable/dirt,/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/light_switch/west,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
"akn" = (/obj/decal/cleanable/dirt,/obj/decal/mushrooms/type1{desc = "Man, it's gross down here."; name = "strange mushroom"},/obj/item/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
"ako" = (/obj/decal/cleanable/dirt,/obj/machinery/bathtub{icon_state = "bathtub"; dir = 8; anchored = 1},/obj/decal/cleanable/gangtag{icon_state = "gangtag12"; pixel_x = 28},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/crew_quarters/quartersB)
-"akp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"akp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"akq" = (/obj/machinery/door/airlock/pyro/medical{dir = 4; icon_state = "research_closed"; name = "Crematorium"; req_access = list(27)},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/medical/crematorium)
"akr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/crematorium)
"aks" = (/obj/machinery/power/apc{areastring = "Crematorium"; dir = 1; name = "Crematorium APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/medical/crematorium)
@@ -546,8 +546,8 @@
"akz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/bent/south,/turf/simulated/floor{icon_state = "grimy"},/area/station/chapel/office)
"akA" = (/obj/machinery/light/lamp/green,/obj/table/wood/auto,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "grimy"},/area/station/chapel/office)
"akB" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/chapel/main/main)
-"akC" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akD" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"akC" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akD" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"akE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 1},/area/station/turret_protected/ai)
"akF" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 8},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/turf/simulated/floor/engine,/area/station/turret_protected/ai)
"akG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/station/hangar/arrivals)
@@ -598,8 +598,8 @@
"alz" = (/obj/item/device/candle,/obj/item/device/candle,/obj/item/device/candle,/obj/item/device/candle,/obj/item/device/candle,/obj/item/matchbook,/obj/item/matchbook,/obj/storage/crate,/obj/item/ghostboard,/obj/item/card_box/tarot,/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "grimy"},/area/station/chapel/office)
"alA" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/chapel/main/main)
"alB" = (/obj/machinery/conveyor{dir = 1; id = "chapel"},/obj/machinery/door/airlock/pyro/glass{req_access = list(27); req_access_txt = null},/turf/simulated/floor{icon_state = "delivery"},/area/station/chapel/main/main)
-"alC" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alD" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"alC" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alD" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alE" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/turret_protected/ai_upload)
"alF" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/command{name = "AI Core"; req_access = list(16)},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/turret_protected/ai)
"alG" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/hangar/arrivals)
@@ -792,9 +792,9 @@
"apl" = (/turf/simulated/floor/carpet{icon_state = "fpurple2"; dir = 6},/area/station/chapel/main/main)
"apm" = (/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; name = "Chapel Storage"; req_access = list(12,22); req_only_one_required = 1},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/chapel/main/main)
"apn" = (/turf/simulated/floor/plating,/area/station/chapel/main/main)
-"apo" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"app" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"apq" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/fpmaint)
+"apo" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"app" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"apq" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/NWmaint)
"apr" = (/obj/table/reinforced/auto,/obj/item/aiModule/protectStation,/obj/item/aiModule/conservePower,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
"aps" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/turret_protected/ai_upload)
"apt" = (/obj/cable{icon_state = "1-4"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor{dir = 4; icon_state = "blueblack"},/area/station/turret_protected/ai_upload)
@@ -838,14 +838,14 @@
"aqf" = (/obj/fitness/speedbag/syndie,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/fitness)
"aqg" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/clothing/head/plunger,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aqh" = (/obj/submachine/chef_sink/chem_sink{dir = 8; pixel_x = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
-"aqi" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"aqj" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"aqk" = (/obj/decal/cleanable/cobweb2,/obj/storage/closet/coffin,/obj/item/gun/kinetic/zipgun,/obj/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"aql" = (/obj/decal/cleanable/cobweb,/obj/item/reagent_containers/food/snacks/ingredient/egg/critter/spider{desc = "Eww."; layer = 3; pixel_x = 0; pixel_y = 0},/obj/item/clothing/gloves/black,/obj/item/matchbook{desc = "The faded logo looks like a series of geometric lines around a sun design. Some old club or lounge, perhaps?"; name = "old matchbook"},/obj/item/clothing/shoes/black,/obj/item/clothing/under/suit/pinstripe,/obj/item/paper{info = ": )"},/obj/storage/closet/dresser{anchored = 1; desc = "An ornately-designed antique. How'd anyone even get it down here?"; name = "antique armoire"},/turf/simulated/floor{icon_state = "redblack"; dir = 9},/area/station/maintenance/port)
-"aqm" = (/obj/decal/cleanable/cobweb2,/obj/cable{icon_state = "5-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "6-10"},/obj/cable{icon_state = "0-2"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "redblack"; dir = 1},/area/station/maintenance/port)
-"aqn" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/port)
-"aqo" = (/obj/machinery/door/unpowered/wood/pyro{desc = "An old, ornately-carved wooden door. Huh."; dir = 8; locked = 0; name = "old door"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"aqp" = (/obj/decal/cleanable/cobweb2,/obj/ladder{desc = "Is this supposed to be here?"; icon_state = "ladder_wall"; id = "smiling"; layer = 2.5; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
+"aqi" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"aqj" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"aqk" = (/obj/decal/cleanable/cobweb2,/obj/storage/closet/coffin,/obj/item/gun/kinetic/zipgun,/obj/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"aql" = (/obj/decal/cleanable/cobweb,/obj/item/reagent_containers/food/snacks/ingredient/egg/critter/spider{desc = "Eww."; layer = 3; pixel_x = 0; pixel_y = 0},/obj/item/clothing/gloves/black,/obj/item/matchbook{desc = "The faded logo looks like a series of geometric lines around a sun design. Some old club or lounge, perhaps?"; name = "old matchbook"},/obj/item/clothing/shoes/black,/obj/item/clothing/under/suit/pinstripe,/obj/item/paper{info = ": )"},/obj/storage/closet/dresser{anchored = 1; desc = "An ornately-designed antique. How'd anyone even get it down here?"; name = "antique armoire"},/turf/simulated/floor{icon_state = "redblack"; dir = 9},/area/station/maintenance/west)
+"aqm" = (/obj/decal/cleanable/cobweb2,/obj/cable{icon_state = "5-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "6-10"},/obj/cable{icon_state = "0-2"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "redblack"; dir = 1},/area/station/maintenance/west)
+"aqn" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/west)
+"aqo" = (/obj/machinery/door/unpowered/wood/pyro{desc = "An old, ornately-carved wooden door. Huh."; dir = 8; locked = 0; name = "old door"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"aqp" = (/obj/decal/cleanable/cobweb2,/obj/ladder{desc = "Is this supposed to be here?"; icon_state = "ladder_wall"; id = "smiling"; layer = 2.5; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
"aqq" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
"aqr" = (/obj/stool,/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
"aqs" = (/obj/table/wood/auto,/obj/machinery/light_switch/west,/obj/item/reagent_containers/glass/bottle/holywater,/obj/item/reagent_containers/glass/bottle/holywater,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main/main)
@@ -860,9 +860,9 @@
"aqB" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/storage/closet/coffin,/turf/simulated/floor/plating,/area/station/chapel/main/main)
"aqC" = (/obj/storage/closet/coffin,/obj/item/reagent_containers/syringe/krokodil,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/chapel/main/main)
"aqD" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/chapel/main/main)
-"aqE" = (/obj/machinery/mass_driver{drive_range = 5; id = "chapel_dock_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqF" = (/obj/window/auto/reinforced,/turf/simulated/floor,/area/station/maintenance/fpmaint)
-"aqG" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/fpmaint)
+"aqE" = (/obj/machinery/mass_driver{drive_range = 5; id = "chapel_dock_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqF" = (/obj/window/auto/reinforced,/turf/simulated/floor,/area/station/maintenance/NWmaint)
+"aqG" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/NWmaint)
"aqH" = (/obj/grille/steel,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/turret_protected/ai)
"aqI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/turret_protected/ai_upload)
"aqJ" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
@@ -914,13 +914,13 @@
"arD" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"arE" = (/turf/simulated/wall/auto/supernorn,/area/station/storage/primary)
"arF" = (/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/maintenance{name = "Primary Tool Storage"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/storage/primary)
-"arG" = (/obj/machinery/light/small{dir = 8; icon_state = "bulb1"; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"arH" = (/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"arI" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"arJ" = (/obj/storage/closet/coffin,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"arK" = (/obj/cable{icon_state = "4-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-9"},/obj/cable{icon_state = "6-10"},/obj/cable{icon_state = "4-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-5"},/turf/simulated/floor{icon_state = "redblack"; dir = 8},/area/station/maintenance/port)
-"arL" = (/obj/cable{icon_state = "1-5"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "8-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "8-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-5"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/maintenance/port)
-"arM" = (/obj/cable{icon_state = "6-8"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-9"},/obj/cable{icon_state = "6-10"},/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-9"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "redblack"; dir = 4},/area/station/maintenance/port)
+"arG" = (/obj/machinery/light/small{dir = 8; icon_state = "bulb1"; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"arH" = (/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"arI" = (/obj/storage/closet/coffin,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"arJ" = (/obj/storage/closet/coffin,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"arK" = (/obj/cable{icon_state = "4-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-9"},/obj/cable{icon_state = "6-10"},/obj/cable{icon_state = "4-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-5"},/turf/simulated/floor{icon_state = "redblack"; dir = 8},/area/station/maintenance/west)
+"arL" = (/obj/cable{icon_state = "1-5"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "8-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "8-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-5"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/maintenance/west)
+"arM" = (/obj/cable{icon_state = "6-8"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-9"},/obj/cable{icon_state = "6-10"},/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-9"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "redblack"; dir = 4},/area/station/maintenance/west)
"arN" = (/obj/disposalpipe/segment,/obj/machinery/door/unpowered/wood/pyro{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main/main)
"arO" = (/obj/grille/steel,/obj/window/auto,/turf/simulated/floor/plating,/area/station/chapel/main/main)
"arP" = (/obj/table/reinforced/bar/auto,/obj/item/device/candle{pixel_y = 7; rand_pos = 0},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main/main)
@@ -929,12 +929,12 @@
"arS" = (/obj/table/reinforced/bar/auto,/obj/loudspeaker,/turf/simulated/floor/carpet{icon_state = "fpurple1"; dir = 4},/area/station/chapel/main/main)
"arT" = (/obj/table/reinforced/bar/auto,/obj/item/device/candle{pixel_y = 7; rand_pos = 0},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main/main)
"arU" = (/obj/stool,/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main/main)
-"arV" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arW" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
-"arX" = (/obj/machinery/mass_driver{drive_range = 5; id = "chapel_dock_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arY" = (/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arZ" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor,/area/station/maintenance/fpmaint)
-"asa" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
+"arV" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arW" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
+"arX" = (/obj/machinery/mass_driver{drive_range = 5; id = "chapel_dock_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arY" = (/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arZ" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor,/area/station/maintenance/NWmaint)
+"asa" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
"asb" = (/obj/machinery/turret,/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "blueblack"},/area/station/turret_protected/ai_upload)
"asc" = (/obj/machinery/turret,/obj/machinery/light,/turf/simulated/floor{dir = 4; icon_state = "blueblack"},/area/station/turret_protected/ai_upload)
"asd" = (/turf/simulated/wall/auto/supernorn,/area/station/hangar/arrivals)
@@ -982,9 +982,9 @@
"asT" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/charged,/obj/item/cell/charged,/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/storage/primary)
"asU" = (/obj/machinery/power/data_terminal,/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/storage/primary)
"asV" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/table/auto,/obj/machinery/computer3/generic/personal{dir = 6},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/station/storage/primary)
-"asW" = (/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-6"; d1 = 2; d2 = 4},/obj/stool/chair/wooden{desc = "An antique chair."; dir = 4; name = "old wooden chair"},/turf/simulated/floor{icon_state = "redblack"; dir = 10},/area/station/maintenance/port)
-"asX" = (/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-9"},/obj/cable,/obj/table/wood/round/auto{desc = "This table is also pretty dang old."; name = "old wooden table"},/obj/item/device/candle/haunted{pixel_y = 14; rand_pos = 0},/turf/simulated/floor{icon_state = "redblack"; dir = 2},/area/station/maintenance/port)
-"asY" = (/obj/stool/chair/wooden{desc = "An antique chair."; dir = 8; name = "old wooden chair"},/obj/cable{icon_state = "4-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-10"},/turf/simulated/floor{icon_state = "redblack"; dir = 6},/area/station/maintenance/port)
+"asW" = (/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-6"; d1 = 2; d2 = 4},/obj/stool/chair/wooden{desc = "An antique chair."; dir = 4; name = "old wooden chair"},/turf/simulated/floor{icon_state = "redblack"; dir = 10},/area/station/maintenance/west)
+"asX" = (/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-6"; d1 = 2; d2 = 4},/obj/cable{icon_state = "5-9"},/obj/cable,/obj/table/wood/round/auto{desc = "This table is also pretty dang old."; name = "old wooden table"},/obj/item/device/candle/haunted{pixel_y = 14; rand_pos = 0},/turf/simulated/floor{icon_state = "redblack"; dir = 2},/area/station/maintenance/west)
+"asY" = (/obj/stool/chair/wooden{desc = "An antique chair."; dir = 8; name = "old wooden chair"},/obj/cable{icon_state = "4-9"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-10"},/turf/simulated/floor{icon_state = "redblack"; dir = 6},/area/station/maintenance/west)
"asZ" = (/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main/main)
"ata" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main/main)
"atb" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main/main)
@@ -1007,15 +1007,15 @@
"ats" = (/obj/machinery/light_switch/north,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main/main)
"att" = (/obj/item/storage/wall/fire{dir = 1; icon_state = "minifire"; pixel_y = 32},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main/main)
"atu" = (/obj/machinery/door/airlock/pyro/glass{dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "delivery"},/area/station/chapel/main/main)
-"atv" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/fpmaint)
-"atw" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/fpmaint)
-"atx" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/fpmaint)
-"aty" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"atz" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"atA" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/light_switch/north,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"atB" = (/obj/machinery/alarm{pixel_y = 20},/obj/disposalpipe/segment/mail/bent/south,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"atC" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"atD" = (/obj/rack,/obj/item/storage/box/mousetraps,/obj/machinery/power/apc{areastring = "Net Cafe"; dir = 1; name = "Net Cafe APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"atv" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/NWmaint)
+"atw" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/NWmaint)
+"atx" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/NWmaint)
+"aty" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"atz" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"atA" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/light_switch/north,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"atB" = (/obj/machinery/alarm{pixel_y = 20},/obj/disposalpipe/segment/mail/bent/south,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"atC" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"atD" = (/obj/rack,/obj/item/storage/box/mousetraps,/obj/machinery/power/apc{areastring = "Net Cafe"; dir = 1; name = "Net Cafe APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"atE" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/command{name = "AI Upload"; req_access = list(16)},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/turret_protected/ai_upload)
"atF" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/hangar/arrivals)
"atG" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/hangar/arrivals)
@@ -1056,9 +1056,9 @@
"aup" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"},/turf/simulated/floor,/area/station/storage/primary)
"auq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/primary)
"aur" = (/obj/stool,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/primary)
-"aus" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Primary Tool Storage"; dir = 8; name = "Primary Tool Storage APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"aut" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"auu" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/port)
+"aus" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Primary Tool Storage"; dir = 8; name = "Primary Tool Storage APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"aut" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"auu" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/west)
"auv" = (/obj/table/wood/round/auto,/obj/item/reagent_containers/food/drinks/tea,/obj/disposalpipe/segment,/obj/machinery/light_switch/west,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main/main)
"auw" = (/obj/cable{icon_state = "2-4"},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main/main)
"aux" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main/main)
@@ -1070,13 +1070,13 @@
"auD" = (/turf/simulated/floor/carpet{icon_state = "fpurple3"; dir = 5},/area/station/chapel/main/main)
"auE" = (/obj/cable{icon_state = "9-10"; d1 = 2; d2 = 4},/turf/simulated/floor/carpet{icon_state = "fpurple5"; dir = 5},/area/station/chapel/main/main)
"auF" = (/obj/machinery/door/airlock/pyro/glass{dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/chapel/main/main)
-"auG" = (/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/fpmaint)
-"auH" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/fpmaint)
-"auI" = (/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"auJ" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc/autoname_south,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"auK" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"auL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"auM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"auG" = (/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/NWmaint)
+"auH" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/NWmaint)
+"auI" = (/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"auJ" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc/autoname_south,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"auK" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"auL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"auM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"auN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/info{name = "Net Cafe"})
"auO" = (/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 28},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "blueblack"},/area/station/crew_quarters/info{name = "Net Cafe"})
"auP" = (/obj/machinery/turretid{pixel_x = 0; pixel_y = 24; req_access = null; req_access_txt = "19"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/turret_protected/ai_upload)
@@ -1137,13 +1137,13 @@
"avS" = (/obj/cable{icon_state = "4-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/storage/primary)
"avT" = (/obj/cable{icon_state = "4-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/primary)
"avU" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/storage/primary)
-"avV" = (/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"avW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"avX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"avY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/port)
-"avZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{icon_state = "pipe-y"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"awa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"awb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{areastring = "Chapel"; dir = 1; name = "Chapel APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"avV" = (/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"avW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"avX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"avY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/west)
+"avZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{icon_state = "pipe-y"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"awa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"awb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{areastring = "Chapel"; dir = 1; name = "Chapel APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"awc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/chapel/main/main)
"awd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main/main)
"awe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main/main)
@@ -1164,12 +1164,12 @@
"awt" = (/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main/main)
"awu" = (/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main/main)
"awv" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main/main)
-"aww" = (/obj/machinery/mass_driver{dir = 1; drive_range = 7; id = "chapel_dock_up"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"awx" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"awy" = (/obj/storage/crate,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"awz" = (/obj/table/auto,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"awA" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"awB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aww" = (/obj/machinery/mass_driver{dir = 1; drive_range = 7; id = "chapel_dock_up"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"awx" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "chapel_dock_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"awy" = (/obj/storage/crate,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"awz" = (/obj/table/auto,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"awA" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"awB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"awC" = (/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/info{name = "Net Cafe"})
"awD" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{dir = 8; icon_state = "blueblack"},/area/station/crew_quarters/info{name = "Net Cafe"})
"awE" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/info{name = "Net Cafe"})
@@ -1207,11 +1207,11 @@
"axk" = (/obj/table/auto,/obj/item/cable_coil,/obj/item/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/screwdriver,/obj/item/cell/charged,/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/storage/primary)
"axl" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/storage/primary)
"axm" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/primary)
-"axn" = (/obj/machinery/light_switch/west,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/port)
-"axo" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/port)
-"axp" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"axn" = (/obj/machinery/light_switch/west,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/west)
+"axo" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/west)
+"axp" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"axs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/chapel/main/main)
"axt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/chapel/main/main)
"axu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 1},/area/station/chapel/main/main)
@@ -1225,10 +1225,10 @@
"axC" = (/turf/simulated/floor/carpet{icon_state = "fpurple1"; dir = 1},/area/station/chapel/main/main)
"axD" = (/turf/simulated/floor/carpet{icon_state = "fpurple2"; dir = 4},/area/station/chapel/main/main)
"axE" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/chapel/main/main)
-"axF" = (/obj/machinery/mass_driver{dir = 1; drive_range = 7; id = "chapel_dock_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"axG" = (/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 17},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"axH" = (/obj/decal/poster/wallsign/stencil/left/o{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"axI" = (/obj/decal/poster/wallsign/stencil/left/k{pixel_x = -10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
+"axF" = (/obj/machinery/mass_driver{dir = 1; drive_range = 7; id = "chapel_dock_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"axG" = (/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 17},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"axH" = (/obj/decal/poster/wallsign/stencil/left/o{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"axI" = (/obj/decal/poster/wallsign/stencil/left/k{pixel_x = -10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
"axJ" = (/obj/table/auto,/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{name = "Printer - NetCafe"; pixel_y = 5; print_id = "NetCafe"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"; pixel_y = 20},/turf/simulated/floor/grid,/area/station/crew_quarters/info{name = "Net Cafe"})
"axK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "blueblack"},/area/station/crew_quarters/info{name = "Net Cafe"})
"axL" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/crew_quarters/info{name = "Net Cafe"})
@@ -1290,11 +1290,11 @@
"ayP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/navbeacon/mule/toolstorage_north/east,/obj/decal/mule/beacon,/turf/simulated/floor{icon_state = "yellow"},/area/station/storage/primary)
"ayQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "yellow"},/area/station/storage/primary)
"ayR" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{dir = 6; icon_state = "yellow"},/area/station/storage/primary)
-"ayS" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"ayT" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/port)
-"ayU" = (/obj/machinery/light/small,/obj/table/auto,/obj/random_item_spawner/desk_stuff,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayV" = (/obj/table/auto,/obj/random_item_spawner/desk_stuff,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"ayS" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"ayT" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/west)
+"ayU" = (/obj/machinery/light/small,/obj/table/auto,/obj/random_item_spawner/desk_stuff,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayV" = (/obj/table/auto,/obj/random_item_spawner/desk_stuff,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"ayX" = (/obj/ladder{desc = "Is this supposed to be here?"; id = "smiling"; layer = 2.5; pixel_y = -12},/obj/item/clothing/under/suit/dress{desc = "A black dress. Very formal."; name = "black dress"},/obj/item/clothing/under/suit,/obj/item/clothing/under/shirt_pants,/obj/item/clothing/shoes/black,/obj/item/clothing/head/fedora,/obj/item/clothing/glasses/eyepatch{name = "costume eyepatch"},/obj/storage/closet/dresser{anchored = 1; name = "costume dresser"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "arcade"},/area/station/chapel/main/main)
"ayY" = (/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
"ayZ" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/machinery/bot/duckbot,/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
@@ -1310,7 +1310,7 @@
"azj" = (/obj/disposaloutlet{dir = 8; mailgroup = "security"; message = "Brig delivery chute activated."},/obj/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
"azk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/chapel/main/main)
"azl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/storage/closet/law,/turf/simulated/floor{icon_state = "arcade"},/area/station/chapel/main/main)
-"azm" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"azm" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"azn" = (/obj/grille/steel,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window/auto,/turf/simulated/floor,/area/station/crew_quarters/info{name = "Net Cafe"})
"azo" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table/auto,/obj/machinery/networked/storage/scanner{bank_id = "security"; pixel_y = 4},/turf/simulated/floor/grid,/area/station/crew_quarters/info{name = "Net Cafe"})
"azp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "blueblack"},/area/station/crew_quarters/info{name = "Net Cafe"})
@@ -1356,10 +1356,10 @@
"aAd" = (/obj/machinery/portable_reclaimer,/turf/simulated/floor{dir = 6; icon_state = "yellow"},/area/station/storage/primary)
"aAe" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/primary)
"aAf" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/storage/primary)
-"aAg" = (/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 13},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/port)
-"aAh" = (/obj/decal/poster/wallsign/stencil/right/p{pixel_x = 16},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/h{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/port)
-"aAi" = (/obj/decal/poster/wallsign/stencil/right/l{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/e,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/port)
-"aAj" = (/obj/machinery/space_heater,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aAg" = (/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 13},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/west)
+"aAh" = (/obj/decal/poster/wallsign/stencil/right/p{pixel_x = 16},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/h{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/west)
+"aAi" = (/obj/decal/poster/wallsign/stencil/right/l{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/e,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/west)
+"aAj" = (/obj/machinery/space_heater,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aAk" = (/obj/submachine/chef_sink/chem_sink{dir = 8; pixel_x = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "arcade"},/area/station/chapel/main/main)
"aAl" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
"aAm" = (/obj/mic_stand,/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
@@ -1411,7 +1411,7 @@
"aBg" = (/obj/shrub,/obj/machinery/light,/obj/item/basketball{desc = "Something beautiful overwhelms you when you look at this ball."; layer = 9; name = "barkley's basketball"},/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"aBh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/stool/chair{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"aBi" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{name = "Primary Tool Storage"; req_access_txt = "12"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "fullyellow"},/area/station/storage/primary)
-"aBj" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/port)
+"aBj" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/west)
"aBk" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "arcade"},/area/station/chapel/main/main)
"aBl" = (/turf/simulated/floor{icon_state = "arcade"},/area/station/chapel/main/main)
"aBm" = (/obj/machinery/door/unpowered/wood/pyro{dir = 8},/turf/simulated/floor{icon_state = "wooden"},/area/station/chapel/main/main)
@@ -1425,8 +1425,8 @@
"aBu" = (/turf/simulated/floor/carpet{icon_state = "fpurple6"; dir = 6},/area/station/chapel/main/main)
"aBv" = (/obj/table/wood/auto,/obj/loudspeaker,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main/main)
"aBw" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "arcade"},/area/station/chapel/main/main)
-"aBx" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aBy" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
+"aBx" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aBy" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
"aBz" = (/obj/table/auto,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light_switch/west,/turf/simulated/floor/grid,/area/station/crew_quarters/info{name = "Net Cafe"})
"aBA" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "blueblack"},/area/station/crew_quarters/info{name = "Net Cafe"})
"aBB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/crew_quarters/info{name = "Net Cafe"})
@@ -1476,7 +1476,7 @@
"aCt" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/obj/decal/glow{brightness = 3; invisibility = 101; luminosity = 0; name = "glow - WHITE"; color_b = 0.35; color_g = 0.35; color_r = 0.35},/turf/space,/area)
"aCu" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{name = "Chapel"},/turf/simulated/floor{icon_state = "delivery"},/area/station/chapel/main/main)
"aCv" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/security{name = "Trial Chamber"},/turf/simulated/floor{icon_state = "delivery"},/area/station/chapel/main/main)
-"aCw" = (/obj/machinery/mass_driver{drive_range = 7; id = "garden_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aCw" = (/obj/machinery/mass_driver{drive_range = 7; id = "garden_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aCx" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/entry)
"aCy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/supernorn,/area/station/hallway/secondary/entry)
"aCz" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
@@ -1912,10 +1912,10 @@
"aKN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aKO" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aKP" = (/obj/table/reinforced/auto,/obj/random_item_spawner/med_tool,/obj/item/body_bag,/obj/item/body_bag,/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbooth)
-"aKQ" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"aKR" = (/obj/disposalpipe/segment,/obj/machinery/power/apc{areastring = "Public Garden"; dir = 1; name = "Public Garden APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aKS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aKT" = (/obj/disposalpipe/segment,/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aKQ" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"aKR" = (/obj/disposalpipe/segment,/obj/machinery/power/apc{areastring = "Public Garden"; dir = 1; name = "Public Garden APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aKS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aKT" = (/obj/disposalpipe/segment,/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aKU" = (/obj/machinery/plantpot{anchored = 1},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
"aKV" = (/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/crew_quarters/garden)
"aKW" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint1"; name = "Checkpoint Lockdown Doors"; opacity = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/security/checkpoint/chapel)
@@ -1924,7 +1924,7 @@
"aKZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bar"},/area/station/security/checkpoint/chapel)
"aLa" = (/turf/simulated/floor{icon_state = "bar"},/area/station/security/checkpoint/chapel)
"aLb" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/station/crew_quarters/garden)
-"aLc" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "garden_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aLc" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "garden_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aLd" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/secondary/entry)
"aLe" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/secondary/entry)
"aLf" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
@@ -1972,7 +1972,7 @@
"aLV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aLW" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbooth)
"aLX" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/table/reinforced/auto,/obj/random_item_spawner/med_tool,/obj/item/bandage,/obj/item/bandage,/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbooth)
-"aLY" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aLY" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aLZ" = (/obj/machinery/plantpot{anchored = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
"aMa" = (/obj/disposalpipe/segment/mail/bent/east,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/crew_quarters/garden)
"aMb" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint1"; name = "Checkpoint Lockdown Doors"; opacity = 0},/obj/cable,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/security/checkpoint/chapel)
@@ -1987,10 +1987,10 @@
"aMk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/plantpot{anchored = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
"aMl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/garden)
"aMm" = (/obj/lattice{icon_state = "lattice-dir"; dir = 10},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/space,/area)
-"aMn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"aMo" = (/obj/machinery/launcher_loader/north,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aMp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
-"aMq" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aMn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"aMo" = (/obj/machinery/launcher_loader/north,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aMp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
+"aMq" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aMr" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/space,/area)
"aMs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/locker)
"aMt" = (/obj/decal/poster/wallsign/stencil/left/a{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 12},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/locker)
@@ -2040,11 +2040,11 @@
"aNl" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 8},/area/station/medical/medbooth)
"aNm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk/mail/south,/obj/machinery/disposal/mail/small/autoname/medbay/booth/north,/turf/simulated/floor{icon_state = "bluewhite"; dir = 5},/area/station/medical/medbooth)
"aNn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = list(5,12)},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbooth)
-"aNo" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/apc/autoname_east,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/port)
-"aNp" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 12},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"aNq" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 14},/obj/decal/poster/wallsign/stencil/right/e{pixel_x = 2},/obj/decal/poster/wallsign/stencil/left/t{pixel_x = -9},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"aNr" = (/obj/decal/poster/wallsign/stencil/right/g,/obj/decal/poster/wallsign/stencil/left/n{pixel_x = -1},/obj/decal/poster/wallsign/stencil/left/i{pixel_x = -9},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"aNs" = (/obj/disposalpipe/segment,/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aNo" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/apc/autoname_east,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/west)
+"aNp" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 12},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"aNq" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 14},/obj/decal/poster/wallsign/stencil/right/e{pixel_x = 2},/obj/decal/poster/wallsign/stencil/left/t{pixel_x = -9},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"aNr" = (/obj/decal/poster/wallsign/stencil/right/g,/obj/decal/poster/wallsign/stencil/left/n{pixel_x = -1},/obj/decal/poster/wallsign/stencil/left/i{pixel_x = -9},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"aNs" = (/obj/disposalpipe/segment,/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aNt" = (/obj/table/wood/auto,/obj/item/paper/book/hydroponicsguide,/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
"aNu" = (/obj/stool/chair/green{icon_state = "chair-g"; dir = 8},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
"aNv" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "green"; dir = 10},/area/station/crew_quarters/garden)
@@ -2059,7 +2059,7 @@
"aNE" = (/turf/simulated/floor{icon_state = "green"; dir = 6},/area/station/crew_quarters/garden)
"aNF" = (/obj/stool/chair/green{icon_state = "chair-g"; dir = 4},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
"aNG" = (/obj/table/wood/auto,/obj/item/plantanalyzer,/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/crew_quarters/garden)
-"aNH" = (/obj/grille/steel,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aNH" = (/obj/grille/steel,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aNI" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/locker)
"aNJ" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/crew_quarters/locker)
"aNK" = (/obj/storage/closet/wardrobe/mixed,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
@@ -2110,14 +2110,14 @@
"aOD" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment/mail/horizontal,/obj/machinery/optable,/obj/item/reagent_containers/iv_drip/blood,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbooth)
"aOE" = (/obj/table/reinforced/auto,/obj/item/scalpel,/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/staple_gun,/obj/item/hemostat,/obj/disposalpipe/switch_junction/right/east{mail_tag = "medical booth"; name = "mail junction (medical booth)"},/obj/item/surgical_spoon,/obj/item/suture,/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "bluewhite"; dir = 6},/area/station/medical/medbooth)
"aOF" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/medical/medbooth)
-"aOG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment/mail/horizontal,/obj/machinery/light/small{dir = 8; icon_state = "bulb1"; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aOH" = (/obj/cable{icon_state = "1-2"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aOI" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"aOJ" = (/turf/simulated/wall/auto/reinforced/supernorn,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/port)
-"aOK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aOL" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aOM" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aON" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
+"aOG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment/mail/horizontal,/obj/machinery/light/small{dir = 8; icon_state = "bulb1"; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aOH" = (/obj/cable{icon_state = "1-2"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aOI" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"aOJ" = (/turf/simulated/wall/auto/reinforced/supernorn,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/west)
+"aOK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aOL" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aOM" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aON" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
"aOO" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
"aOP" = (/obj/securearea{desc = "Caution: Space Owl Preserve"; dir = 2; icon_state = "owlery"; layer = 30; name = "OWLERY"; pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
"aOQ" = (/obj/machinery/door/unpowered/wood/pyro{dir = 1; name = "Owlery"},/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "caution_ns"; dir = 1},/area/station/owlery)
@@ -2161,11 +2161,11 @@
"aPC" = (/obj/item/rubberduck{pixel_y = 6},/obj/poolwater,/turf/simulated/pool,/area/station/crew_quarters/pool)
"aPD" = (/obj/pool{icon_state = "pool"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bluechecker"},/area/station/crew_quarters/pool)
"aPE" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/medical/medbooth)
-"aPF" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aPG" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aPH" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/port)
-"aPI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aPJ" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aPF" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aPG" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aPH" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/west)
+"aPI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aPJ" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aPK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/owlery)
"aPL" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/table/auto,/obj/deskclutter,/obj/item/storage/wall/random,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aPM" = (/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/table/auto,/obj/random_item_spawner/desk_stuff,/obj/item/camera_test,/obj/item/paper/book/critter_compendium,/obj/decal/cleanable/gangtag{pixel_y = 28},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
@@ -2229,9 +2229,9 @@
"aQS" = (/obj/machinery/door/airlock/pyro{name = "Janitor's Supply Closet"; req_access_txt = "26"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aQT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/janitor/supply)
"aQU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor/supply)
-"aQV" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aQW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aQX" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aQV" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aQW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aQX" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aQY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aQZ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/owlery)
"aRa" = (/obj/machinery/door/unpowered/wood/pyro{dir = 8; name = "Owlery"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_we"},/area/station/owlery)
@@ -2242,7 +2242,7 @@
"aRf" = (/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/owlery)
"aRg" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aRh" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
-"aRi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aRi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aRj" = (/obj/table/wood/auto,/obj/item/device/candle/small,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/locker)
"aRk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor{icon_state = "wooden"},/area/station/crew_quarters/locker)
"aRl" = (/obj/machinery/door/window/eastleft,/obj/landmark/start{name = "Staff Assistant"},/obj/item/storage/toilet/random{icon_state = "toilet"; dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/item/clothing/head/plunger,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
@@ -2278,7 +2278,7 @@
"aRP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
"aRQ" = (/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/storage/crate,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/crew_quarters/barber_shop)
"aRR" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/barber_shop)
-"aRS" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/apmaint)
+"aRS" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SWmaint)
"aRT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/landmark/halloween,/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aRU" = (/obj/shrub,/turf/simulated/floor{icon_state = "bluechecker"},/area/station/crew_quarters/pool)
"aRV" = (/obj/pool{icon_state = "pool_in_misc"},/obj/machinery/light,/turf/simulated/floor{icon_state = "bluechecker"},/area/station/crew_quarters/pool)
@@ -2297,9 +2297,9 @@
"aSi" = (/obj/machinery/alarm{pixel_y = 20},/obj/mopbucket,/obj/item/caution,/obj/item/caution,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aSj" = (/obj/submachine/chef_sink{desc = "A common utility sink."; dir = 2; name = "rusty sink"},/obj/item/storage/wall/random,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aSk" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor/supply)
-"aSl" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aSm" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aSn" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aSl" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aSm" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aSn" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aSo" = (/obj/disposalpipe/switch_junction/left/north{mail_tag = "chapel checkpoint"; name = "mail junction (chapel checkpoint)"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aSp" = (/obj/item/reagent_containers/glass/bucket,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aSq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
@@ -2342,31 +2342,31 @@
"aTb" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor/carpet{icon_state = "blue5"; dir = 4},/area/station/crew_quarters/arcade)
"aTc" = (/obj/grille/steel,/obj/window/auto,/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"aTd" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
-"aTe" = (/turf/simulated/floor/plating,/obj/decal/cleanable/dirt,/obj/storage/closet/emergency,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/apmaint)
-"aTf" = (/obj/decal/cleanable/dirt,/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aTg" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/light_switch/north,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/apmaint)
-"aTh" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aTi" = (/obj/disposalpipe/segment,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aTe" = (/turf/simulated/floor/plating,/obj/decal/cleanable/dirt,/obj/storage/closet/emergency,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/SWmaint)
+"aTf" = (/obj/decal/cleanable/dirt,/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aTg" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/light_switch/north,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/SWmaint)
+"aTh" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aTi" = (/obj/disposalpipe/segment,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aTj" = (/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 1},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/station/crew_quarters/cafeteria)
"aTk" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aTl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aTm" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aTn" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/crew_quarters/cafeteria)
-"aTo" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Cafeteria"; dir = 8; name = "Cafeteria APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aTp" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aTo" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Cafeteria"; dir = 8; name = "Cafeteria APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aTp" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aTq" = (/obj/shrub{icon_state = "shrub"; dir = 10},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/pool)
"aTr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/northeast,/obj/stool/bench/red/auto,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/pool)
"aTs" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/horizontal,/obj/stool/bench/red/auto,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/pool)
"aTt" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/horizontal,/obj/stool/bench/red/auto,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/pool)
"aTu" = (/obj/storage/crate/furnacefuel,/obj/machinery/atmospherics/pipe/simple/junction/west,/turf/simulated/floor{icon_state = "wooden-2"},/area/station/crew_quarters/pool)
"aTv" = (/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/pool)
-"aTw" = (/obj/machinery/atmospherics/pipe/manifold/north,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aTx" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/overfloor/southwest,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aTw" = (/obj/machinery/atmospherics/pipe/manifold/north,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aTx" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/overfloor/southwest,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aTy" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aTz" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
-"aTA" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aTB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aTC" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aTA" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aTB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aTC" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aTD" = (/obj/item/clothing/under/gimmick/owl,/obj/storage/crate,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/clothing/mask/owl_mask,/obj/item/clothing/mask/owl_mask,/obj/item/clothing/under/gimmick/owl,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aTE" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aTF" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
@@ -2379,7 +2379,7 @@
"aTM" = (/obj/landmark{name = "kudzustart"},/obj/shrub{icon_state = "shrub"; dir = 6},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aTN" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
"aTO" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/owlery)
-"aTP" = (/obj/machinery/mass_driver{drive_range = 5; id = "owlery_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aTP" = (/obj/machinery/mass_driver{drive_range = 5; id = "owlery_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aTQ" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/locker)
"aTR" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/locker)
"aTS" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/locker)
@@ -2414,14 +2414,14 @@
"aUv" = (/obj/stool/chair{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 5},/area/station/crew_quarters/arcade)
"aUw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "blue5"; dir = 5},/area/station/crew_quarters/arcade)
"aUx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
-"aUy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/apmaint)
-"aUE" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aUy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/SWmaint)
+"aUE" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aUG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aUH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/station/crew_quarters/cafeteria)
"aUI" = (/obj/disposalpipe/segment,/obj/disposalpipe/junction,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
@@ -2429,25 +2429,25 @@
"aUK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aUL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/crew_quarters/cafeteria)
"aUM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/cafeteria)
-"aUN" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aUO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aUP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aUQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Pool Room"; dir = 1; name = "Pool Room APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aUR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aUS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aUN" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aUO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aUP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aUQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Pool Room"; dir = 1; name = "Pool Room APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aUR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aUS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aUT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/pool)
"aUU" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/pool)
"aUV" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/pool)
-"aUW" = (/obj/disposalpipe/segment/mail/bent/south,/obj/cable{icon_state = "4-10"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/overfloor/vertical,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aUX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/overfloor/vertical,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aUW" = (/obj/disposalpipe/segment/mail/bent/south,/obj/cable{icon_state = "4-10"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/overfloor/vertical,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aUX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/overfloor/vertical,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aUY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/supernorn,/area/station/janitor/supply)
"aUZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aVa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aVb" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aVc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor/supply)
-"aVd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aVe" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aVf" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/port)
+"aVd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aVe" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aVf" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/west)
"aVg" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/owlery)
"aVh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/owlery)
"aVi" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
@@ -2460,18 +2460,18 @@
"aVp" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
"aVq" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
"aVr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/supernorn,/area/station/owlery)
-"aVs" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "owlery_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVt" = (/obj/machinery/mass_driver{drive_range = 5; id = "owlery_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "owlery_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVv" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/power/apc{areastring = "Locker Room"; dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVw" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVA" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aVD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aVs" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "owlery_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVt" = (/obj/machinery/mass_driver{drive_range = 5; id = "owlery_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "owlery_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVv" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/power/apc{areastring = "Locker Room"; dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVw" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVA" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aVD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aVE" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/quartersA)
"aVF" = (/obj/machinery/vending/cards,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quartersA)
"aVG" = (/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/obj/storage/secure/closet/personal,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quartersA)
@@ -2500,28 +2500,28 @@
"aWd" = (/obj/table/wood/auto,/obj/item/storage/box/nerd_kit,/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 9},/area/station/crew_quarters/arcade)
"aWe" = (/obj/machinery/light/lamp/green,/obj/table/wood/auto,/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 5},/area/station/crew_quarters/arcade)
"aWf" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/machinery/camera/television{c_tag = "game room"; dir = 8; name = "camera - game room"},/turf/simulated/floor/carpet{icon_state = "blue5"; dir = 4},/area/station/crew_quarters/arcade)
-"aWg" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Arcade"; dir = 8; name = "Arcade APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aWh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aWi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/decal/cleanable/ash,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aWj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aWk" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/apmaint)
-"aWl" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/autoname_east,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aWg" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Arcade"; dir = 8; name = "Arcade APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aWh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aWi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/decal/cleanable/ash,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aWj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aWk" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/SWmaint)
+"aWl" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/autoname_east,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aWm" = (/obj/table/auto,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/station/crew_quarters/cafeteria)
"aWn" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aWo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aWp" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/station/crew_quarters/cafeteria)
"aWq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/cafeteria)
-"aWr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/reagent_dispensers/foamtank,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{areastring = "Port Crew Quarters"; dir = 2; name = "S APC"; noalerts = 0; operating = 1; pixel_y = -24; start_charge = 90},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/obj/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWy" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/valve/purge/vertical,/obj/item/wrench{pixel_x = 15},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Sauna Air Supply"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aWr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/reagent_dispensers/foamtank,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{areastring = "Port Crew Quarters"; dir = 2; name = "S APC"; noalerts = 0; operating = 1; pixel_y = -24; start_charge = 90},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/obj/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWy" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "5-8"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/valve/purge/vertical,/obj/item/wrench{pixel_x = 15},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Sauna Air Supply"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aWC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/janitor/supply)
"aWD" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/rack,/obj/item/reagent_containers/glass/bottle/cleaner,/obj/item/reagent_containers/glass/bottle/cleaner,/obj/item/reagent_containers/glass/bottle/acetone/janitors,/obj/item/reagent_containers/glass/bottle/acetone/janitors,/obj/item/reagent_containers/glass/bottle/ammonia/janitors,/obj/item/reagent_containers/glass/bottle/ammonia/janitors,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aWE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/bot/cleanbot,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
@@ -2529,25 +2529,25 @@
"aWG" = (/obj/storage/cart/trash,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aWH" = (/obj/item/storage/toolbox/emergency,/obj/item/storage/box/mousetraps,/obj/item/sponge,/obj/item/spraybottle/cleaner,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/obj/item/chem_grenade/cleaner,/obj/item/reagent_containers/glass/bottle/cleaner,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/storage/crate,/obj/item/chem_grenade/cleaner,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor/supply)
"aWI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor/supply)
-"aWJ" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWK" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWN" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/power/apc{areastring = "Owlery"; dir = 1; name = "Owlery APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aWO" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aWJ" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWK" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWN" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/power/apc{areastring = "Owlery"; dir = 1; name = "Owlery APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aWO" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aWP" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aWQ" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aWR" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "caution_we"},/area/station/owlery)
-"aWS" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aWT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aWU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aWV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aWW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aWX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/maintenance/fpmaint)
-"aWY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aWZ" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aXa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aXb" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aWS" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aWT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aWU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aWV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aWW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aWX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/maintenance/NWmaint)
+"aWY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aWZ" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aXa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aXb" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aXc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/quartersA)
"aXd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quartersA)
"aXe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quartersA)
@@ -2572,13 +2572,13 @@
"aXx" = (/obj/table/wood/auto,/obj/item/clothing/suit/cultist{desc = "Neeeeerds."; name = "+2 robes of dungeon mastery"},/obj/item/clothing/mask/skull,/turf/simulated/floor/carpet{icon_state = "blue5"; dir = 2},/area/station/crew_quarters/arcade)
"aXy" = (/obj/stool/chair{dir = 8},/obj/machinery/light,/turf/simulated/floor/carpet{icon_state = "blue5"; dir = 6},/area/station/crew_quarters/arcade)
"aXz" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor/carpet{icon_state = "blue6"; dir = 6},/area/station/crew_quarters/arcade)
-"aXA" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aXB" = (/obj/stool/chair,/obj/decal/cleanable/dirt,/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aXC" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aXD" = (/obj/decal/fakeobjects/firealarm_broken{desc = "It's all smashed."; dir = 4; pixel_x = 28},/obj/decal/cleanable/ash,/obj/critter/roach,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/apmaint)
-"aXE" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 12},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/apmaint)
-"aXF" = (/obj/decal/poster/wallsign/stencil/left/t{pixel_x = -9},/obj/decal/poster/wallsign/stencil/right/e{pixel_x = 2},/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 14},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/apmaint)
-"aXG" = (/obj/decal/poster/wallsign/stencil/left/i{pixel_x = -9},/obj/decal/poster/wallsign/stencil/left/n{pixel_x = -1},/obj/decal/poster/wallsign/stencil/right/g,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/apmaint)
+"aXA" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aXB" = (/obj/stool/chair,/obj/decal/cleanable/dirt,/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aXC" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aXD" = (/obj/decal/fakeobjects/firealarm_broken{desc = "It's all smashed."; dir = 4; pixel_x = 28},/obj/decal/cleanable/ash,/obj/critter/roach,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/SWmaint)
+"aXE" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 12},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SWmaint)
+"aXF" = (/obj/decal/poster/wallsign/stencil/left/t{pixel_x = -9},/obj/decal/poster/wallsign/stencil/right/e{pixel_x = 2},/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 14},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SWmaint)
+"aXG" = (/obj/decal/poster/wallsign/stencil/left/i{pixel_x = -9},/obj/decal/poster/wallsign/stencil/left/n{pixel_x = -1},/obj/decal/poster/wallsign/stencil/right/g,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SWmaint)
"aXH" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/crew_quarters/cafeteria)
"aXI" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/crew_quarters/cafeteria)
"aXJ" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/crew_quarters/cafeteria)
@@ -2589,19 +2589,19 @@
"aXO" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/quarters_port)
"aXP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/quarters_port)
"aXQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/quarters_port)
-"aXR" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"aXS" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aXT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/port)
-"aXU" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aXR" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"aXS" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aXT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/west)
+"aXU" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aXV" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor/supply)
"aXW" = (/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/janitor/supply)
"aXX" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor/supply)
-"aXY" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aXZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYc" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/reagent_dispensers/fueltank,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aXY" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aXZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYc" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/reagent_dispensers/fueltank,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aYe" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
"aYf" = (/obj/shrub,/obj/item/storage/pill_bottle/cyberpunk,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aYg" = (/obj/critter/owl{desc = "His name is Carl."; name = "space owl named Carl"},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
@@ -2609,19 +2609,19 @@
"aYi" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aYj" = (/obj/shrub,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aYk" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/owlery)
-"aYl" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"aYr" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYu" = (/obj/structure/girder,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/pill_bottle/cyberpunk{layer = 2.4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"aYv" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYw" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aYx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
+"aYl" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"aYr" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYu" = (/obj/structure/girder,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/pill_bottle/cyberpunk{layer = 2.4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"aYv" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYw" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aYx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
"aYy" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/quartersA)
"aYz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/quartersA)
"aYA" = (/obj/machinery/door/unpowered/wood/pyro,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
@@ -2634,9 +2634,9 @@
"aYH" = (/obj/decal/poster/wallsign/stencil/left/a{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 12},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/entry)
"aYI" = (/obj/decal/poster/wallsign/stencil/left/r{pixel_x = -8},/obj/decal/poster/wallsign/stencil/left/i{pixel_x = 0},/obj/decal/poster/wallsign/stencil/right/v{pixel_x = 7},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 18},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/entry)
"aYJ" = (/obj/decal/poster/wallsign/stencil/right/s{pixel_x = 10},/obj/decal/poster/wallsign/stencil/left/l{pixel_x = -2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/entry)
-"aYK" = (/obj/table/auto,/obj/decal/cleanable/dirt,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/apmaint)
-"aYL" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/decal/cleanable/ash,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aYM" = (/obj/stool/chair/comfy/blue{name = "grody blue chair"; desc = "It's all ripped and grimy. Gross."; icon_state = "chair_comfy-blue"; dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/apmaint)
+"aYK" = (/obj/table/auto,/obj/decal/cleanable/dirt,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/SWmaint)
+"aYL" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/decal/cleanable/ash,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aYM" = (/obj/stool/chair/comfy/blue{name = "grody blue chair"; desc = "It's all ripped and grimy. Gross."; icon_state = "chair_comfy-blue"; dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/SWmaint)
"aYN" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/cafeteria)
"aYO" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/cafeteria)
"aYP" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "aftport"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/cafeteria)
@@ -2651,31 +2651,31 @@
"aYY" = (/obj/decal/poster/wallsign/poster_human{pixel_y = 32},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_port)
"aYZ" = (/obj/fitness/speedbag,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_port)
"aZa" = (/obj/lattice,/obj/disposalpipe/segment,/turf/space,/area)
-"aZb" = (/obj/machinery/door/airlock/pyro/external,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aZb" = (/obj/machinery/door/airlock/pyro/external,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aZc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/wreckage{name = "Restricted Area"})
"aZd" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/wreckage{name = "Restricted Area"})
"aZe" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance{ai_no_access = 1; aiControlDisabled = 1; desc = "It's busted!"; locked = 1; name = "malfunctioning airlock"; secondsElectrified = -1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/wreckage{name = "Restricted Area"})
"aZf" = (/turf/simulated/wall/auto/supernorn,/area/station/wreckage{name = "Restricted Area"})
"aZg" = (/obj/decal/cleanable/rust,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/wreckage{name = "Restricted Area"})
"aZh" = (/obj/decal/cleanable/rust,/turf/simulated/wall/auto/supernorn,/area/station/wreckage{name = "Restricted Area"})
-"aZi" = (/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/engineering{dir = 2; icon_state = "eng_closed"; name = "Port Substation and Air Hookup"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"aZj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/machinery/meter{pixel_y = -5},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"aZk" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/meter{pixel_y = -5},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"aZl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"aZm" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
+"aZi" = (/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/engineering{dir = 2; icon_state = "eng_closed"; name = "Port Substation and Air Hookup"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"aZj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/machinery/meter{pixel_y = -5},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"aZk" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/meter{pixel_y = -5},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"aZl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"aZm" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
"aZn" = (/obj/shrub{icon_state = "shrub"; dir = 1},/obj/item/material_piece/cloth/cottonfabric{desc = "Looks like owls plucked it."; icon_state = "wad"; name = "wad of chair stuffing"},/obj/item/reagent_containers/food/snacks/ingredient/egg/critter/owl,/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aZo" = (/obj/tree1,/obj/disposalpipe/segment,/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
"aZp" = (/obj/shrub{icon_state = "shrub"; dir = 1},/turf/simulated/floor{icon = 'icons/misc/worlds.dmi'; icon_state = "grass"},/area/station/owlery)
-"aZq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"aZr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"aZs" = (/obj/machinery/door/airlock/pyro/external{name = "undeliverable parcels"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/fpmaint)
-"aZt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
-"aZu" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "owlery_up"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "owlery_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aZv" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "owlery_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aZw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
+"aZq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"aZr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"aZs" = (/obj/machinery/door/airlock/pyro/external{name = "undeliverable parcels"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/NWmaint)
+"aZt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
+"aZu" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "owlery_up"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "owlery_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aZv" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "owlery_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aZw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
"aZx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/lattice,/turf/space,/area)
-"aZy" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"aZz" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aZy" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"aZz" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aZA" = (/obj/table/wood/auto,/obj/random_item_spawner/desk_stuff,/obj/item/storage/fanny,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
"aZB" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/decal/poster/wallsign/poster_rand{pixel_y = 28},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
"aZC" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
@@ -2696,7 +2696,7 @@
"aZR" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "black"; icon_state = "bedsheet-black"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_port)
"aZS" = (/obj/storage/closet/wardrobe/black,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_port)
"aZT" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/obj/disposalpipe/segment,/turf/space,/area)
-"aZU" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aZU" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aZV" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/wreckage{name = "Restricted Area"})
"aZW" = (/obj/table/auto,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/light_switch/north,/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
"aZX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
@@ -2705,22 +2705,22 @@
"baa" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 4},/obj/decal/fakeobjects/robot{anchored = 1; density = 1; desc = "How long has this been down here?"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/secure/ssafe/loot{pixel_y = 32},/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
"bab" = (/obj/machinery/vending/standard,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
"bac" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/wreckage{name = "Restricted Area"})
-"bad" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bae" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Cafeteria)"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Chapel Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bag" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bah" = (/obj/storage/cart/mechcart{desc = "A big rolling supply cart equipped for handling hull breaches."; name = "breach repair cart"; req_access_txt = "40"},/obj/item/sheet/steel{amount = 50},/obj/item/storage/toolbox/mechanical,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/storage/firstaid/oxygen{pixel_y = -4},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/metalfoam,/obj/item/chem_grenade/metalfoam,/obj/machinery/power/apc/autoname_north,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bai" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"baj" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bak" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bal" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/chem_grenade/firefighting,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bam" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"ban" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bao" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bap" = (/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/fpmaint)
-"baq" = (/obj/machinery/disposal_pipedispenser,/obj/decal/cleanable/cobweb2,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bar" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "owlery_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"bas" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/fpmaint)
+"bad" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bae" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Cafeteria)"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Chapel Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bag" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bah" = (/obj/storage/cart/mechcart{desc = "A big rolling supply cart equipped for handling hull breaches."; name = "breach repair cart"; req_access_txt = "40"},/obj/item/sheet/steel{amount = 50},/obj/item/storage/toolbox/mechanical,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/storage/firstaid/oxygen{pixel_y = -4},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/metalfoam,/obj/item/chem_grenade/metalfoam,/obj/machinery/power/apc/autoname_north,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bai" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"baj" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bak" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bal" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/chem_grenade/firefighting,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bam" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"ban" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bao" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bap" = (/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/NWmaint)
+"baq" = (/obj/machinery/disposal_pipedispenser,/obj/decal/cleanable/cobweb2,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bar" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "owlery_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"bas" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/NWmaint)
"bat" = (/obj/disposalpipe/segment,/obj/lattice{icon_state = "lattice-dir"; dir = 6},/turf/space,/area)
"bau" = (/obj/storage/closet/dresser/random,/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
"bav" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/item/clothing/suit/bedsheet{bcolor = "pink"; icon_state = "bedsheet-pink"},/turf/simulated/floor{icon_state = "grimy"},/area/station/crew_quarters/quartersA)
@@ -2732,32 +2732,32 @@
"baB" = (/obj/airbridge_controler{id = "aftport"; tunnel_width = 2},/turf/space,/area)
"baC" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"baD" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters_port)
-"baE" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/port)
-"baF" = (/obj/machinery/door/airlock/pyro/external,/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/port)
+"baE" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/west)
+"baF" = (/obj/machinery/door/airlock/pyro/external,/obj/machinery/atmospherics/pipe/simple/color_pipe/green_pipe/vertical,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/west)
"baG" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/station/wreckage{name = "Restricted Area"})
"baH" = (/obj/stool/chair{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/decal/skeleton{desc = "The partially decomposed corpse of some poor chump."; icon = 'icons/misc/hstation.dmi'; icon_state = "body3"; layer = 4; name = "corpse"},/obj/disposalpipe/segment,/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
"baI" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/decal/cleanable/generic,/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
"baJ" = (/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
"baK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/wreckage{name = "Restricted Area"})
-"baL" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/port)
-"baM" = (/obj/critter/roach,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/northeast,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/obj/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baQ" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baR" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch/north,/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baS" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/item/storage/wall/random,/obj/machinery/atmospherics/valve/horizontal{name = "mixing valve"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baU" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/valve/notify_admins/horizontal{name = "Air Reserve (Escape Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/overfloor/horizontal,/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"baX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"baY" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"baZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
-"bba" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bbb" = (/obj/landmark/halloween,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bbc" = (/obj/storage/crate,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bbd" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/fpmaint)
+"baL" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/west)
+"baM" = (/obj/critter/roach,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/northeast,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/obj/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baQ" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baR" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch/north,/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baS" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/item/storage/wall/random,/obj/machinery/atmospherics/valve/horizontal{name = "mixing valve"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baU" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/valve/notify_admins/horizontal{name = "Air Reserve (Escape Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/overfloor/horizontal,/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"baX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"baY" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"baZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
+"bba" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bbb" = (/obj/landmark/halloween,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bbc" = (/obj/storage/crate,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bbd" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/NWmaint)
"bbe" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersA)
"bbf" = (/obj/airbridge_controler{id = "foreport"; tunnel_width = 2},/turf/space,/area)
"bbg" = (/obj/disposalpipe/segment,/obj/lattice{icon_state = "lattice-dir"; dir = 1},/turf/space,/area)
@@ -2768,24 +2768,24 @@
"bbl" = (/obj/storage/crate/loot,/turf/simulated/floor/airless{icon_state = "floorscorched1"},/area/station/wreckage{name = "Restricted Area"})
"bbm" = (/turf/simulated/floor/airless{icon_state = "floorscorched1"},/area/station/wreckage{name = "Restricted Area"})
"bbn" = (/obj/table/auto,/obj/deskclutter,/obj/item/pen/fancy{color = "purple"; desc = "You feel vaguely uncomfortable while studying this pen. Huh."; font = "Small Fonts"; font_color = "purple"; name = "peculiar pen"},/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/station/wreckage{name = "Restricted Area"})
-"bbo" = (/obj/machinery/atmospherics/portables_connector/east,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/engine/substation/port)
-"bbp" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/valve/horizontal,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/port)
-"bbq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold/overfloor/east,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbt" = (/obj/cable{icon_state = "1-8"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbu" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbv" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbw" = (/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbx" = (/obj/machinery/atmospherics/pipe/manifold/overfloor/west,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bby" = (/obj/machinery/atmospherics/valve/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbz" = (/obj/machinery/atmospherics/portables_connector/west,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbA" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bbB" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bbC" = (/obj/disposalpipe/segment/mail/bent/east,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fpmaint)
-"bbD" = (/obj/disposalpipe/trunk/mail/west,/obj/disposaloutlet/east{name = "undeliverable mail outlet"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"bbE" = (/turf/simulated/floor/plating,/obj/decal/cleanable/molten_item,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/fpmaint)
-"bbF" = (/obj/storage/crate,/obj/item/storage/box/crayon,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
+"bbo" = (/obj/machinery/atmospherics/portables_connector/east,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/engine/substation/west)
+"bbp" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/atmospherics/valve/horizontal,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/west)
+"bbq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/manifold/overfloor/east,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbt" = (/obj/cable{icon_state = "1-8"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbu" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbv" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbw" = (/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbx" = (/obj/machinery/atmospherics/pipe/manifold/overfloor/west,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bby" = (/obj/machinery/atmospherics/valve/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbz" = (/obj/machinery/atmospherics/portables_connector/west,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbA" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bbB" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bbC" = (/obj/disposalpipe/segment/mail/bent/east,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NWmaint)
+"bbD" = (/obj/disposalpipe/trunk/mail/west,/obj/disposaloutlet/east{name = "undeliverable mail outlet"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"bbE" = (/turf/simulated/floor/plating,/obj/decal/cleanable/molten_item,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/NWmaint)
+"bbF" = (/obj/storage/crate,/obj/item/storage/box/crayon,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
"bbG" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bbH" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/disposalpipe/segment,/turf/space,/area)
"bbI" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
@@ -2797,24 +2797,24 @@
"bbO" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor/airless{icon_state = "floorscorched1"},/area/station/wreckage{name = "Restricted Area"})
"bbP" = (/obj/table/auto,/obj/shrub/dead{dir = 8; name = "Dead plant"; pixel_y = 10},/obj/decal/fakeobjects/lighttube_broken,/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/airless{icon_state = "floorscorched1"},/area/station/wreckage{name = "Restricted Area"})
"bbQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/wreckage{name = "Restricted Area"})
-"bbR" = (/turf/simulated/wall/auto/reinforced/supernorn,/obj/machinery/atmospherics/pipe/tank/air_repressurization/east,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/engine/substation/port)
-"bbS" = (/obj/machinery/atmospherics/valve/horizontal,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/port)
-"bbT" = (/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/obj/stool,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/engine/substation/port)
-"bbU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/northwest,/obj/machinery/power/monitor{dir = 8; name = "Station Power Grid Monitoring"},/obj/cable,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/power/terminal{dir = 4},/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/item/wrench,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bbX" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bbY" = (/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/port)
-"bbZ" = (/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bca" = (/obj/table/auto,/obj/machinery/atmospherics/pipe/simple/overfloor/northeast,/obj/random_item_spawner/tools,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bcb" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization/west,/turf/simulated/floor/plating,/area/station/engine/substation/port)
-"bcc" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor/pyro,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"bcd" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"bce" = (/obj/disposalpipe/segment/mail/bent/east,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"bcf" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"bcg" = (/obj/disposalpipe/segment/mail/bent/west,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"bch" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"bci" = (/obj/machinery/mass_driver{drive_range = 10; id = "owlery_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"bbR" = (/turf/simulated/wall/auto/reinforced/supernorn,/obj/machinery/atmospherics/pipe/tank/air_repressurization/east,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/engine/substation/west)
+"bbS" = (/obj/machinery/atmospherics/valve/horizontal,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/west)
+"bbT" = (/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/obj/stool,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/engine/substation/west)
+"bbU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/northwest,/obj/machinery/power/monitor{dir = 8; name = "Station Power Grid Monitoring"},/obj/cable,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/power/terminal{dir = 4},/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/item/wrench,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bbX" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bbY" = (/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/west)
+"bbZ" = (/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bca" = (/obj/table/auto,/obj/machinery/atmospherics/pipe/simple/overfloor/northeast,/obj/random_item_spawner/tools,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bcb" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization/west,/turf/simulated/floor/plating,/area/station/engine/substation/west)
+"bcc" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor/pyro,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"bcd" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"bce" = (/obj/disposalpipe/segment/mail/bent/east,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"bcf" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"bcg" = (/obj/disposalpipe/segment/mail/bent/west,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"bch" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"bci" = (/obj/machinery/mass_driver{drive_range = 10; id = "owlery_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"bcj" = (/turf/space,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
"bck" = (/obj/lattice{icon_state = "lattice-dir"; dir = 9},/obj/machinery/light/runway_light,/turf/space,/area)
"bcl" = (/obj/lattice{icon_state = "lattice-dir"; dir = 4},/obj/machinery/light/runway_light/delay2,/turf/space,/area)
@@ -2832,18 +2832,18 @@
"bcx" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area)
"bcy" = (/obj/item/raw_material/shard,/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/station/wreckage{name = "Restricted Area"})
"bcz" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/airless{icon_state = "damaged4"},/area/station/wreckage{name = "Restricted Area"})
-"bcA" = (/obj/grille/steel,/obj/window/auto/reinforced,/turf/simulated/floor,/area/station/engine/substation/port)
-"bcB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bcC" = (/obj/cable{icon_state = "1-2"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bcD" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/northeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bcE" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/port)
-"bcF" = (/obj/machinery/atmospherics/pipe/simple/northwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bcG" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/engine/substation/port)
+"bcA" = (/obj/grille/steel,/obj/window/auto/reinforced,/turf/simulated/floor,/area/station/engine/substation/west)
+"bcB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bcC" = (/obj/cable{icon_state = "1-2"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bcD" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/northeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bcE" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/west)
+"bcF" = (/obj/machinery/atmospherics/pipe/simple/northwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bcG" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/engine/substation/west)
"bcH" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/disposalpipe/segment/mail/vertical,/turf/space,/area)
"bcI" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/lattice{icon_state = "lattice-dir"; dir = 1},/turf/space,/area)
-"bcJ" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "owlery_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"bcK" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fpmaint)
-"bcL" = (/obj/machinery/mass_driver{drive_range = 10; id = "owlery_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "owlery_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"bcJ" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "owlery_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"bcK" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NWmaint)
+"bcL" = (/obj/machinery/mass_driver{drive_range = 10; id = "owlery_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "owlery_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"bcM" = (/turf/space,/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area)
"bcN" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"bcO" = (/turf/space,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/hangar/main)
@@ -2852,9 +2852,9 @@
"bcR" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/space,/area)
"bcS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/lattice{icon_state = "lattice-dir"; dir = 6},/turf/space,/area)
"bcT" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/obj/cable{icon_state = "1-2"},/turf/space,/area)
-"bcU" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
-"bcV" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/engine/substation/port)
-"bcW" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/port)
+"bcU" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
+"bcV" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/engine/substation/west)
+"bcW" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/west)
"bcX" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/disposalpipe/segment,/turf/space,/area)
"bcY" = (/obj/lattice,/obj/lattice,/turf/space,/area)
"bcZ" = (/obj/airbridge_controler{id = "aftport"; primary_controller = 1; tunnel_width = 2},/turf/space,/area)
@@ -2876,9 +2876,9 @@
"bdp" = (/obj/decal/poster/wallsign/stencil/right/p{pixel_x = 15},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/hangar/main)
"bdq" = (/obj/decal/poster/wallsign/stencil/right/b{pixel_x = 20},/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 7},/obj/decal/poster/wallsign/stencil/left/o{pixel_x = -4},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/hangar/main)
"bdr" = (/obj/decal/poster/wallsign/stencil/right/y{pixel_x = 12},/obj/decal/poster/wallsign/stencil/left/a{pixel_x = 0},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/hangar/main)
-"bds" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/aft)
-"bdt" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/aft)
-"bdu" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/aft)
+"bds" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/south)
+"bdt" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/south)
+"bdu" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/south)
"bdv" = (/obj/decal/poster/wallsign/stencil/left/e{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/n{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/maintcentral)
"bdw" = (/obj/decal/poster/wallsign/stencil/left/g{pixel_x = -10},/obj/decal/poster/wallsign/stencil/left/i{pixel_x = -1},/obj/decal/poster/wallsign/stencil/right/n{pixel_x = 7},/obj/decal/poster/wallsign/stencil/right/e{pixel_x = 19},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/maintcentral)
"bdx" = (/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/maintcentral)
@@ -2919,23 +2919,23 @@
"beg" = (/obj/decal/poster/wallsign/stencil/left/s{pixel_x = 1},/obj/decal/poster/wallsign/stencil/right/e{pixel_x = 13},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/inner)
"beh" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 16},/obj/decal/poster/wallsign/stencil/right/u{pixel_x = 4},/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/inner)
"bei" = (/obj/decal/poster/wallsign/stencil/right/y{pixel_x = 12},/obj/decal/poster/wallsign/stencil/left/t{pixel_x = 0},/obj/decal/poster/wallsign/stencil/left/i{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/inner)
-"bej" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
-"bek" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/fore)
-"bel" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
-"bem" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fore)
-"ben" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/o{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fore)
-"beo" = (/obj/decal/poster/wallsign/stencil/left/m{pixel_x = -7},/obj/decal/poster/wallsign/stencil/right/m{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fore)
-"bep" = (/obj/decal/poster/wallsign/stencil/left/a{pixel_x = -8},/obj/decal/poster/wallsign/stencil/right/n{pixel_x = 4},/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 15},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fore)
-"beq" = (/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fore)
+"bej" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
+"bek" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/north)
+"bel" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
+"bem" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/north)
+"ben" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/o{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/north)
+"beo" = (/obj/decal/poster/wallsign/stencil/left/m{pixel_x = -7},/obj/decal/poster/wallsign/stencil/right/m{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/north)
+"bep" = (/obj/decal/poster/wallsign/stencil/left/a{pixel_x = -8},/obj/decal/poster/wallsign/stencil/right/n{pixel_x = 4},/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 15},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/north)
+"beq" = (/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/north)
"ber" = (/turf/space,/obj/grille/catwalk,/obj/lattice{icon_state = "lattice-dir-b"; dir = 9},/turf/simulated/floor/plating/airless/catwalk,/area)
"bes" = (/turf/space,/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/hangar/main)
"bet" = (/obj/machinery/door/airlock/pyro/external{icon_state = "airlock_closed"; dir = 4},/turf/simulated/floor{icon_state = "caution_we"},/area/station/hangar/main)
"beu" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/hangar/main)
"bev" = (/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro/external{icon_state = "airlock_closed"; dir = 4},/turf/simulated/floor/plating,/area/station/hangar/main)
"bew" = (/turf/simulated/floor/plating,/area/station/hangar/main)
-"bex" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/aft)
-"bey" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
-"bez" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "aftport"; pixel_x = 32; pixel_y = 0; starts_established = 1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/aft)
+"bex" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/south)
+"bey" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
+"bez" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "aftport"; pixel_x = 32; pixel_y = 0; starts_established = 1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/south)
"beA" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"beB" = (/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"beC" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/maintcentral)
@@ -2955,18 +2955,18 @@
"beQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"beR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"beS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"beT" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"beU" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/fore)
-"beV" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "foreport"; pixel_x = 32; pixel_y = 0; starts_established = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"beW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"beX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"beY" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"beT" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"beU" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/north)
+"beV" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "foreport"; pixel_x = 32; pixel_y = 0; starts_established = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"beW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"beX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"beY" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
"beZ" = (/obj/machinery/light/small,/turf/simulated/floor/plating/airless/shuttlebay{name = "landing pad plating"},/area/station/hangar/main)
"bfa" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/obj/machinery/light/small,/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/hangar/main)
"bfb" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"bfc" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 1},/area/station/hallway/primary/aft)
-"bfd" = (/turf/simulated/floor{dir = 1; icon_state = "stairs_middle"},/area/station/hallway/primary/aft)
-"bfe" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 1},/area/station/hallway/primary/aft)
+"bfc" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 1},/area/station/hallway/primary/south)
+"bfd" = (/turf/simulated/floor{dir = 1; icon_state = "stairs_middle"},/area/station/hallway/primary/south)
+"bfe" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 1},/area/station/hallway/primary/south)
"bff" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/maintcentral)
"bfg" = (/obj/machinery/light/small,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bfh" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -2983,14 +2983,14 @@
"bfs" = (/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/security/brig)
"bft" = (/obj/machinery/shower{dir = 1; icon_state = "showerhead"; pixel_y = 16},/obj/decal/cleanable/gangtag{icon_state = "gangtag12"; pixel_x = 28},/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/security/brig)
"bfu" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/brig)
-"bfv" = (/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bfw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
-"bfx" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 1},/area/station/hallway/primary/fore)
-"bfy" = (/turf/simulated/floor{dir = 1; icon_state = "stairs_middle"},/area/station/hallway/primary/fore)
-"bfz" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 1},/area/station/hallway/primary/fore)
-"bfA" = (/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bfv" = (/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bfw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
+"bfx" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 1},/area/station/hallway/primary/north)
+"bfy" = (/turf/simulated/floor{dir = 1; icon_state = "stairs_middle"},/area/station/hallway/primary/north)
+"bfz" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 1},/area/station/hallway/primary/north)
+"bfA" = (/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bfB" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/ai_monitored/storage/eva)
-"bfC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/fore)
+"bfC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/north)
"bfD" = (/obj/machinery/door/poddoor/blast/pyro{autoclose = 1; dir = 4; icon_state = "bdoormid1"; id = 1},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bfE" = (/obj/machinery/vehicle/escape_pod{dir = 8},/obj/decal/cleanable/oil,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bfF" = (/obj/machinery/door/airlock/pyro/glass{dir = 4},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
@@ -2999,9 +2999,9 @@
"bfI" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/hangar/main)
"bfJ" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/hangar/main)
"bfK" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/hangar/main)
-"bfL" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
-"bfM" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon7,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfN" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bfL" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
+"bfM" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon7,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfN" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"bfO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bfP" = (/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bfQ" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/engineering)
@@ -3046,22 +3046,22 @@
"bgD" = (/obj/machinery/power/data_terminal,/obj/table/reinforced/auto,/obj/machinery/computer3/generic/personal,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/brig)
"bgE" = (/obj/submachine/slot_machine,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/brig)
"bgF" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 2},/obj/window/reinforced{dir = 2; icon_state = "rwindow"},/obj/window/reinforced{icon_state = "rwindow"; dir = 1},/obj/window/reinforced{icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/security/brig)
-"bgG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bgH" = (/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bgI" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bgJ" = (/obj/grille/steel,/obj/window/auto,/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bgK" = (/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bgL" = (/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bgM" = (/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bgN" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bgO" = (/obj/storage/closet/office,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"bgG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bgH" = (/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bgI" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bgJ" = (/obj/grille/steel,/obj/window/auto,/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bgK" = (/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bgL" = (/turf/simulated/floor,/area/station/hallway/primary/north)
+"bgM" = (/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bgN" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bgO" = (/obj/storage/closet/office,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"bgP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "caution"; dir = 9},/area/station/ai_monitored/storage/eva)
"bgQ" = (/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/station/ai_monitored/storage/eva)
"bgR" = (/obj/machinery/door/airlock/pyro/glass{dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/ai_monitored/storage/eva)
"bgS" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun1"},/obj/machinery/driver_button{id = "evagun1"; name = "Mass Driver (EVA #1)"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/ai_monitored/storage/eva)
"bgT" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun1"},/obj/machinery/door/poddoor/pyro{dir = 4; id = "evagun1"; name = "EVA Tube"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/ai_monitored/storage/eva)
-"bgU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun1"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/fore)
-"bgV" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun1"},/obj/machinery/door/poddoor/pyro{dir = 4; id = "evagun1"; name = "EVA Tube"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/fore)
+"bgU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun1"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/north)
+"bgV" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun1"},/obj/machinery/door/poddoor/pyro{dir = 4; id = "evagun1"; name = "EVA Tube"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/north)
"bgW" = (/obj/machinery/atmospherics/unary/vent_pump/south,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bgX" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bgY" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
@@ -3073,10 +3073,10 @@
"bhe" = (/obj/disposalpipe/segment/mail/bent/east,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/hangar/main)
"bhf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment/mail/horizontal,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southwest,/turf/simulated/floor/plating,/area/station/hangar/main)
"bhg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/hangar/main)
-"bhh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"bhi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
-"bhj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bhk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bhh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"bhi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
+"bhj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bhk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"bhl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bhm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bhn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -3121,20 +3121,20 @@
"bia" = (/obj/stool/bench/red/auto,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/brig)
"bib" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/submachine/ATM{pixel_y = 32},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/brig)
"bic" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/security/brig)
-"bid" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/submachine/ATM{pixel_y = 32},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bie" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bif" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"big" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bih" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/hallway/primary/fore)
-"bii" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bij" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bik" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bil" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/hallway/primary/fore)
-"bim" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"bid" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/submachine/ATM{pixel_y = 32},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bie" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bif" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"big" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bih" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/hallway/primary/north)
+"bii" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bij" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"bik" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bil" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/hallway/primary/north)
+"bim" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"bin" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"bio" = (/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
"bip" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/ai_monitored/storage/eva)
-"biq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/fore)
+"biq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/north)
"bir" = (/obj/machinery/atmospherics/pipe/manifold/west,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bis" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bit" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
@@ -3143,9 +3143,9 @@
"biw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/hangar/main)
"bix" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/hangar/main)
"biy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/hangar/main)
-"biz" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
-"biA" = (/turf/simulated/floor,/area/station/hallway/primary/aft)
-"biB" = (/obj/stool/chair{dir = 8},/obj/landmark/halloween,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"biz" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
+"biA" = (/turf/simulated/floor,/area/station/hallway/primary/south)
+"biB" = (/obj/stool/chair{dir = 8},/obj/landmark/halloween,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"biC" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance{req_access = list(40); req_access_txt = null},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/engineering)
"biD" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "yellow"; icon_state = "bedsheet-yellow"},/obj/landmark/start{name = "Engineer"},/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/carpet{icon_state = "red2"; dir = 10},/area/station/engine/engineering)
"biE" = (/turf/simulated/floor/carpet{icon_state = "red2"; dir = 2},/area/station/engine/engineering)
@@ -3203,22 +3203,22 @@
"bjE" = (/obj/stool/bench/red/auto,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/security/brig)
"bjF" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/brig{broadcasting = 1; pixel_y = -3},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/brig)
"bjG" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/security/brig)
-"bjH" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/brig{broadcasting = 1; pixel_y = -3},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bjI" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bjJ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bjK" = (/obj/grille/steel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/window/auto,/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bjL" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bjM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bjN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bjO" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bjP" = (/obj/table/auto,/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bjQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
+"bjH" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/brig{broadcasting = 1; pixel_y = -3},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bjI" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bjJ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bjK" = (/obj/grille/steel,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/window/auto,/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bjL" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bjM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"bjN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bjO" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bjP" = (/obj/table/auto,/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bjQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
"bjR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"bjS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
"bjT" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun2"},/obj/machinery/driver_button{id = "evagun2"; name = "Mass Driver (EVA #2)"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/ai_monitored/storage/eva)
"bjU" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun2"},/obj/machinery/door/poddoor/pyro{dir = 4; id = "evagun2"; name = "EVA Tube"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/ai_monitored/storage/eva)
-"bjV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun2"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/fore)
-"bjW" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun2"},/obj/machinery/door/poddoor/pyro{dir = 4; id = "evagun2"; name = "EVA Tube"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/fore)
+"bjV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun2"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/north)
+"bjW" = (/obj/machinery/mass_driver{dir = 4; drive_range = 20; id = "evagun2"},/obj/machinery/door/poddoor/pyro{dir = 4; id = "evagun2"; name = "EVA Tube"},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/maintenance/north)
"bjX" = (/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/hangar/main)
"bjY" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hangar/main)
"bjZ" = (/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/hangar/main)
@@ -3227,8 +3227,8 @@
"bkc" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
"bkd" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
"bke" = (/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor/plating/airless,/area)
-"bkf" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"bkg" = (/obj/table/reinforced/auto,/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bkf" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"bkg" = (/obj/table/reinforced/auto,/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"bkh" = (/obj/table/auto,/obj/item/paper_bin,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/engine/engineering)
"bki" = (/obj/item/storage/toilet/random{icon_state = "toilet"; dir = 1},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/engine/engineering)
"bkj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/engine/engineering)
@@ -3286,17 +3286,17 @@
"blj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/security/brig)
"blk" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/brig)
"bll" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/security/brig)
-"blm" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bln" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"blo" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"blp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"blq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
-"blr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bls" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"blt" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
+"blm" = (/obj/table/reinforced/auto,/obj/window/reinforced/west{dir = 1; icon_state = "darkwindow"; name = "divider window"},/obj/window/reinforced/west{dir = 2; icon_state = "darkwindow"; name = "divider window"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bln" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"blo" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"blp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"blq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
+"blr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bls" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/north)
+"blt" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
"blu" = (/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"blv" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
-"blw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 1},/area/station/maintenance/fore)
+"blw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 1},/area/station/maintenance/north)
"blx" = (/obj/machinery/light/runway_light/delay2,/obj/lattice,/turf/space,/area)
"bly" = (/obj/machinery/light/runway_light/delay3,/obj/lattice,/turf/space,/area)
"blz" = (/obj/machinery/light/runway_light/delay4,/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
@@ -3309,7 +3309,7 @@
"blG" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/obj/item/storage/wall/random,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/hangar/main)
"blH" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/hangar/main)
"blI" = (/obj/machinery/atmospherics/pipe/simple/insulated,/turf/space,/area)
-"blJ" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"blJ" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"blK" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/engine/engineering)
"blL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/engine/engineering)
"blM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/engine/engineering)
@@ -3379,8 +3379,8 @@
"bmY" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window_blinds/cog2/left,/turf/simulated/floor/plating,/area/station/security/hos)
"bmZ" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window_blinds/cog2/right,/turf/simulated/floor/plating,/area/station/security/hos)
"bna" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/hos)
-"bnb" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bnc" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
+"bnb" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bnc" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
"bnd" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/obj/table/auto,/obj/item/reagent_containers/food/drinks/fueltank,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bne" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/machinery/light_switch/north,/obj/storage/crate/rcd,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bnf" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/tank/jetpack,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "bot"},/area/station/ai_monitored/storage/eva)
@@ -3388,8 +3388,8 @@
"bnh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
"bni" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/tank/jetpack,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor{icon_state = "bot"},/area/station/ai_monitored/storage/eva)
"bnj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/ai_monitored/storage/eva)
-"bnk" = (/obj/table/auto,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/obj/item/mop,/obj/item/storage/box/mousetraps,/obj/item/storage/box/balloonbox,/obj/item/card_box/suit,/obj/item/basketball,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/item/clothing/under/gimmick/yay,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bnl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bnk" = (/obj/table/auto,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/obj/item/mop,/obj/item/storage/box/mousetraps,/obj/item/storage/box/balloonbox,/obj/item/card_box/suit,/obj/item/basketball,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/item/clothing/under/gimmick/yay,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bnl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bnm" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/heads)
"bnn" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/window_blinds/cog2/left,/turf/simulated/floor/plating,/area/station/crew_quarters/heads)
"bno" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/window_blinds/cog2/middle,/turf/simulated/floor/plating,/area/station/crew_quarters/heads)
@@ -3405,9 +3405,9 @@
"bny" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
"bnz" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 5; icon_state = "intact"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
"bnA" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"bnB" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/aft)
-"bnC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
-"bnD" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bnB" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/south)
+"bnC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
+"bnD" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"bnE" = (/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/engine/engineering)
"bnF" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/engineering,/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/engineering)
"bnG" = (/obj/stool/chair/yellow{dir = 1},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor{icon_state = "bot"},/area/station/engine/engineering)
@@ -3480,8 +3480,8 @@
"boV" = (/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/ai_monitored/storage/eva)
"boW" = (/turf/simulated/floor{icon_state = "cautioncorner"; dir = 1},/area/station/ai_monitored/storage/eva)
"boX" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/tank/jetpack,/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "bot"},/area/station/ai_monitored/storage/eva)
-"boY" = (/obj/reagent_dispensers/heliumtank,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"boZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"boY" = (/obj/reagent_dispensers/heliumtank,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"boZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bpa" = (/obj/table/wood/auto,/obj/machinery/light/lamp/green,/obj/machinery/alarm{pixel_y = 20},/obj/item/item_box/gold_star{item_amount = 20},/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/heads)
"bpb" = (/obj/table/wood/auto,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/crew_quarters/heads)
"bpc" = (/obj/machinery/computer/bank_data,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 1},/area/station/crew_quarters/heads)
@@ -3499,8 +3499,8 @@
"bpo" = (/obj/machinery/alarm{pixel_y = 20},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
"bpp" = (/obj/machinery/light_switch/north,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
"bpq" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor{icon_state = "bot"},/area/station/hangar/main)
-"bpr" = (/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/aft)
-"bps" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
+"bpr" = (/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/south)
+"bps" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
"bpt" = (/obj/machinery/vending/cola/blue,/obj/machinery/light_switch/north,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/engine/engineering)
"bpu" = (/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/engine/engineering)
"bpv" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/engine/engineering)
@@ -3567,13 +3567,13 @@
"bqE" = (/turf/simulated/floor{icon_state = "carpetN"},/area/station/security/hos)
"bqF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpetNE"},/area/station/security/hos)
"bqG" = (/obj/item/device/radio/intercom/security{pixel_x = 28; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/hos)
-"bqH" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/fore)
-"bqI" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/fore)
+"bqH" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/north)
+"bqI" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/north)
"bqJ" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/chem_grenade/metalfoam,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bqK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"bqL" = (/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"bqM" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/machinery/door_control{id = "eva"; name = "EVA Secure Shutters"; pixel_x = 28},/obj/item/tank/jetpack,/turf/simulated/floor{icon_state = "bot"},/area/station/ai_monitored/storage/eva)
-"bqN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bqN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bqO" = (/obj/table/wood/auto,/obj/random_item_spawner/desk_stuff,/obj/blind_switch/area{pixel_x = -24},/obj/blind_switch/area,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/heads)
"bqP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Head of Personnel"},/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/crew_quarters/heads)
"bqQ" = (/turf/simulated/floor/carpet{icon_state = "fblue3"; dir = 6},/area/station/crew_quarters/heads)
@@ -3589,7 +3589,7 @@
"bra" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor,/area/station/hangar/main)
"brb" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor,/area/station/hangar/main)
"brc" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southwest,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
-"brd" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/aft)
+"brd" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/south)
"bre" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 4},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor{dir = 10; icon_state = "yellow"},/area/station/engine/engineering)
"brf" = (/turf/simulated/floor{icon_state = "yellow"},/area/station/engine/engineering)
"brg" = (/obj/table/auto,/obj/random_item_spawner/desk_stuff,/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"},/area/station/engine/engineering)
@@ -3646,18 +3646,18 @@
"bsf" = (/turf/simulated/floor{icon_state = "carpet2"},/area/station/security/hos)
"bsg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpetE"},/area/station/security/hos)
"bsh" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "red"; icon_state = "bedsheet-red"},/obj/landmark/start{name = "Head of Security"},/obj/machinery/light_switch/east,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/hos)
-"bsi" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bsj" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bsk" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
+"bsi" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bsj" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bsk" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
"bsl" = (/obj/table/auto,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/extinguisher{pixel_y = 8},/obj/item/extinguisher{pixel_y = 8},/obj/machinery/light,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bsm" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "caution"; dir = 10},/area/station/ai_monitored/storage/eva)
"bsn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution"},/area/station/ai_monitored/storage/eva)
"bso" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution"; dir = 6},/area/station/ai_monitored/storage/eva)
"bsp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bsq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/command{dir = 4; icon_state = "com_closed"; name = "EVA Access"; req_access_txt = "18"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/ai_monitored/storage/eva)
-"bsr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bss" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bst" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/fore)
+"bsr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bss" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bst" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/north)
"bsu" = (/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/command{dir = 4; icon_state = "com_closed"; name = "Head of Personnel's Office"; req_access = list(55); req_access_txt = null},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/heads)
"bsv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/heads)
"bsw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/crew_quarters/heads)
@@ -3685,8 +3685,8 @@
"bsS" = (/obj/machinery/light,/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/turf/simulated/floor{icon_state = "caution"},/area/station/hangar/main)
"bsT" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution"},/area/station/hangar/main)
"bsU" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "caution"},/area/station/hangar/main)
-"bsV" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/obj/machinery/meter,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/aft)
-"bsW" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
+"bsV" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/obj/machinery/meter,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/south)
+"bsW" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
"bsX" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/engineering)
"bsY" = (/obj/machinery/disposal,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/obj/disposalpipe/trunk,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "bot"},/area/station/engine/engineering)
"bsZ" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/engineering)
@@ -3756,9 +3756,9 @@
"bul" = (/obj/table/auto,/obj/item/device/analyzer,/obj/item/storage/toolbox/electrical,/obj/item/disk/data/floppy/read_only/communications,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bum" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"bun" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/machinery/dispenser{pltanks = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "bot"},/area/station/ai_monitored/storage/eva)
-"buo" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bup" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"buq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Head of Personnel's Office"; dir = 4; name = "HoP's Office APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"buo" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bup" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"buq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Head of Personnel's Office"; dir = 4; name = "HoP's Office APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/north)
"bur" = (/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 1},/obj/item/dice/d100,/obj/item/reagent_containers/food/drinks/bottle/ntbrew,/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/heads)
"bus" = (/obj/vehicle/segway,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/crew_quarters/heads)
"but" = (/obj/table/wood/auto,/obj/item/goldbar,/obj/item/stamp,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/crew_quarters/heads)
@@ -3774,10 +3774,10 @@
"buD" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external{name = "Pod Bay"; req_access_txt = "0"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"buE" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
"buF" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"buG" = (/obj/shrub,/obj/landmark{name = "kudzustart"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/aft)
-"buH" = (/obj/machinery/atmospherics/pipe/manifold/north,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"buI" = (/obj/machinery/atmospherics/unary/vent_pump/west,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"buJ" = (/obj/shrub,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/aft)
+"buG" = (/obj/shrub,/obj/landmark{name = "kudzustart"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/south)
+"buH" = (/obj/machinery/atmospherics/pipe/manifold/north,/turf/simulated/floor,/area/station/hallway/primary/south)
+"buI" = (/obj/machinery/atmospherics/unary/vent_pump/west,/turf/simulated/floor,/area/station/hallway/primary/south)
+"buJ" = (/obj/shrub,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/south)
"buK" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/engineering)
"buL" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{name = "Engineering"; req_access_txt = "40"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/engineering)
"buM" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/inner)
@@ -3832,9 +3832,9 @@
"bvJ" = (/obj/storage/secure/crate/weapon/confiscated_items,/turf/simulated/floor{icon_state = "red"},/area/station/security/main)
"bvK" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/table/auto,/obj/item/storage/box/revimp_kit,/turf/simulated/floor{icon_state = "red"},/area/station/security/main)
"bvL" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/pen/marker,/obj/item/device/prisoner_scanner,/obj/item/device/prisoner_scanner,/turf/simulated/floor{icon_state = "red"; dir = 6},/area/station/security/main)
-"bvM" = (/obj/shrub,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bvN" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bvO" = (/obj/shrub,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
+"bvM" = (/obj/shrub,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bvN" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"bvO" = (/obj/shrub,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
"bvP" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/command{name = "EVA Access"; req_access_txt = "18"},/turf/simulated/floor{icon_state = "delivery"},/area/station/ai_monitored/storage/eva)
"bvQ" = (/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "eva"; name = "E.V.A."; opacity = 0},/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
"bvR" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/checkpoint/customs)
@@ -3852,18 +3852,18 @@
"bwd" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bwe" = (/obj/item/storage/wall/medical{dir = 1; icon_state = "minimed"; pixel_y = 32},/obj/machinery/computer/card,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bwf" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/security/checkpoint/podbay)
-"bwg" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/storage/closet/office,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bwh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bwi" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bwj" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/aft)
-"bwk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/aft)
-"bwl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bwm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "nt_logo"},/area/station/hallway/primary/aft)
-"bwn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bwo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/aft)
-"bwp" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/aft)
-"bwq" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/noticeboard{pixel_y = 32},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bwr" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
+"bwg" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/storage/closet/office,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bwh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bwi" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bwj" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/south)
+"bwk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/south)
+"bwl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bwm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "nt_logo"},/area/station/hallway/primary/south)
+"bwn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bwo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/south)
+"bwp" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/south)
+"bwq" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/noticeboard{pixel_y = 32},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bwr" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
"bws" = (/obj/window/auto/reinforced,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/engine/inner)
"bwt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 6},/turf/simulated/floor/plating,/area/station/engine/inner)
"bwu" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 9; icon_state = "intact"},/turf/simulated/floor/plating,/area/station/engine/inner)
@@ -3914,15 +3914,15 @@
"bxn" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/security/checkpoint/sec_foyer)
"bxo" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/security/checkpoint/sec_foyer)
"bxp" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/checkpoint/sec_foyer)
-"bxq" = (/obj/storage/crate/bin/lostandfound,/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/obj/item/reagent_containers/food/drinks/bottle/hobo_wine/safe,/obj/item/clothing/shoes/blue{desc = "These look like they were really expensive shoes before a dog stole them. You can vaguely make out the initials 'O.M.J.' written inside."; movement_speed_mod = 0; name = "chewed-up running shoes"; quality = -60},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bxr" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bxs" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bxt" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 4},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bxu" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/fore)
-"bxv" = (/turf/simulated/floor{icon_state = "nt_logo"},/area/station/hallway/primary/fore)
-"bxw" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/fore)
-"bxx" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bxy" = (/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/obj/machinery/vending/medical_public,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
+"bxq" = (/obj/storage/crate/bin/lostandfound,/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/obj/item/reagent_containers/food/drinks/bottle/hobo_wine/safe,/obj/item/clothing/shoes/blue{desc = "These look like they were really expensive shoes before a dog stole them. You can vaguely make out the initials 'O.M.J.' written inside."; movement_speed_mod = 0; name = "chewed-up running shoes"; quality = -60},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bxr" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bxs" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bxt" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 4},/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bxu" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/north)
+"bxv" = (/turf/simulated/floor{icon_state = "nt_logo"},/area/station/hallway/primary/north)
+"bxw" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/north)
+"bxx" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bxy" = (/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/obj/machinery/vending/medical_public,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
"bxz" = (/obj/item/storage/wall/medical{dir = 1; icon_state = "minimed"; pixel_y = 32},/obj/vehicle/tug{desc = "Pretty much just an airport baggage cart, really."; name = "utility tractor"},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 9},/area/station/security/checkpoint/customs)
"bxA" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 1},/area/station/security/checkpoint/customs)
"bxB" = (/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 1},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 5},/area/station/security/checkpoint/customs)
@@ -3944,17 +3944,17 @@
"bxR" = (/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bxS" = (/obj/stool/chair/red{icon_state = "chair-r"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bxT" = (/obj/table/reinforced/auto,/obj/machinery/cashreg,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
-"bxU" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bxV" = (/obj/landmark/halloween,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bxW" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bxX" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/aft)
-"bxY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/aft)
-"bxZ" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bya" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/aft)
-"byb" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/aft)
-"byc" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"byd" = (/obj/disposalpipe/segment,/obj/landmark/halloween,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bye" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
+"bxU" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bxV" = (/obj/landmark/halloween,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bxW" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bxX" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/south)
+"bxY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/south)
+"bxZ" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bya" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/south)
+"byb" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/south)
+"byc" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"byd" = (/obj/disposalpipe/segment,/obj/landmark/halloween,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bye" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
"byf" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/turf/simulated/floor/plating/airless,/area/station/engine/inner)
"byg" = (/obj/machinery/atmospherics/pipe/simple/insulated,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/engine/inner)
"byh" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 9; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/engine/core)
@@ -4010,16 +4010,16 @@
"bzf" = (/obj/machinery/disposal/brig,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
"bzg" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/table/reinforced/auto,/obj/machinery/recharger,/obj/item/device/prisoner_scanner,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
"bzh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/table/reinforced/auto,/obj/item/storage/wall/medical{dir = 1; icon_state = "minimed"; pixel_y = 32},/obj/machinery/networked/printer{name = "Printer - Checkpoint"; pixel_y = 5; print_id = "Checkpoint"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
-"bzi" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bzj" = (/obj/table/wood/round/auto,/obj/machinery/computer/security/wooden_tv/small{pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bzk" = (/obj/landmark/halloween,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bzl" = (/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/fore)
-"bzm" = (/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bzn" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bzo" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bzp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/fore)
-"bzq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bzr" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"bzi" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bzj" = (/obj/table/wood/round/auto,/obj/machinery/computer/security/wooden_tv/small{pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bzk" = (/obj/landmark/halloween,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bzl" = (/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/north)
+"bzm" = (/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bzn" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"bzo" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bzp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/north)
+"bzq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bzr" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"bzs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/checkpoint/customs)
"bzt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 10},/area/station/security/checkpoint/customs)
"bzu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 2},/area/station/security/checkpoint/customs)
@@ -4048,10 +4048,10 @@
"bzR" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bzS" = (/obj/table/reinforced/auto,/obj/machinery/door_control{id = "pt_laser"; name = "PTL Doors"; pixel_x = 0; pixel_y = 8},/obj/machinery/door_control{id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bzT" = (/obj/grille/steel,/obj/window/auto/reinforced,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/security/checkpoint/podbay)
-"bzU" = (/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bzV" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bzW" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bzX" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
+"bzU" = (/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bzV" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bzW" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bzX" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
"bzY" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/turf/simulated/floor/plating/airless,/area/station/engine/inner)
"bzZ" = (/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 1},/area/station/engine/inner)
"bAa" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable,/turf/simulated/floor/plating/airless,/area/station/engine/core)
@@ -4115,9 +4115,9 @@
"bBg" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bBh" = (/obj/machinery/computer/security,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bBi" = (/obj/machinery/computer/secure_data,/obj/item/device/radio/intercom/brig{broadcasting = 0},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
-"bBj" = (/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/fore)
-"bBk" = (/obj/machinery/light/emergency{dir = 4; icon_state = "ebulb1"; pixel_x = 16},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/fore)
-"bBl" = (/obj/machinery/light/emergency{dir = 8; icon_state = "ebulb1"; pixel_x = -16},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/fore)
+"bBj" = (/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/north)
+"bBk" = (/obj/machinery/light/emergency{dir = 4; icon_state = "ebulb1"; pixel_x = 16},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/north)
+"bBl" = (/obj/machinery/light/emergency{dir = 8; icon_state = "ebulb1"; pixel_x = -16},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/north)
"bBm" = (/obj/machinery/computer/card,/obj/machinery/light_switch/north,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
"bBn" = (/obj/machinery/computer/bank_data,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
"bBo" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
@@ -4146,10 +4146,10 @@
"bBL" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bBM" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bBN" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/decal/poster/wallsign/hazard_caution{desc = "High-intensity laser beamline. Approach with extreme caution."},/turf/simulated/floor/plating,/area/station/security/checkpoint/podbay)
-"bBO" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/decal/poster/wallsign/hazard_caution{desc = "High-intensity laser beamline. Approach with extreme caution."},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"bBP" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bBQ" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bBR" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
+"bBO" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/decal/poster/wallsign/hazard_caution{desc = "High-intensity laser beamline. Approach with extreme caution."},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"bBP" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bBQ" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bBR" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
"bBS" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 8; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 10; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 6; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/atmospherics/pipe/simple/insulated,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/inner)
"bBT" = (/obj/machinery/light_switch/west,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor/engine,/area/station/engine/core)
"bBU" = (/turf/simulated/floor/engine,/area/station/engine/core)
@@ -4211,15 +4211,15 @@
"bCY" = (/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bCZ" = (/obj/stool/chair/red{icon_state = "chair-r"; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bDa" = (/obj/table/reinforced/auto,/obj/machinery/light/lamp,/obj/noticeboard{name = "Wanted Board"; pixel_y = 28},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
-"bDb" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/hallway/primary/fore)
-"bDc" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 1},/area/station/hallway/primary/fore)
-"bDd" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 5},/area/station/hallway/primary/fore)
-"bDe" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"bDb" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/hallway/primary/north)
+"bDc" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 1},/area/station/hallway/primary/north)
+"bDd" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 5},/area/station/hallway/primary/north)
+"bDe" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"bDf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
-"bDg" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bDh" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/hallway/primary/fore)
-"bDi" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 1},/area/station/hallway/primary/fore)
-"bDj" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 5},/area/station/hallway/primary/fore)
+"bDg" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bDh" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/hallway/primary/north)
+"bDi" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 1},/area/station/hallway/primary/north)
+"bDj" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 5},/area/station/hallway/primary/north)
"bDk" = (/obj/machinery/door/firedoor/pyro,/obj/table/reinforced/auto,/obj/machinery/light/lamp,/obj/noticeboard{name = "Complaint Board"; pixel_y = 28},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/customs)
"bDl" = (/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
"bDm" = (/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
@@ -4244,10 +4244,10 @@
"bDF" = (/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/podbay)
"bDG" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/podbay)
"bDH" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/podbay)
-"bDI" = (/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/aft)
-"bDJ" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/aft)
-"bDK" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/aft)
-"bDL" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "pt_laser"; name = "Beamline Interlock"},/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/aft)
+"bDI" = (/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/south)
+"bDJ" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/south)
+"bDK" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/south)
+"bDL" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "pt_laser"; name = "Beamline Interlock"},/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/hallway/primary/south)
"bDM" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "pt_laser"; name = "Beamline Interlock"},/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/engine/inner)
"bDN" = (/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/engine/inner)
"bDO" = (/obj/window/auto/reinforced,/turf/simulated/floor/plating/airless,/area/station/engine/core)
@@ -4311,14 +4311,14 @@
"bEU" = (/obj/cable{icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/sec_foyer)
"bEV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/sec_foyer)
"bEW" = (/obj/table/reinforced/auto,/obj/machinery/cashreg,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
-"bEX" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/hallway/primary/fore)
-"bEY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 2},/area/station/hallway/primary/fore)
-"bEZ" = (/obj/decal/jukebox,/obj/decal/glow{brightness = 3; invisibility = 101; name = "glow - YELLOW"; color_b = 0.2; color_g = 0.45; color_r = 0.5},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 4},/area/station/hallway/primary/fore)
-"bFa" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"bEX" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/hallway/primary/north)
+"bEY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 2},/area/station/hallway/primary/north)
+"bEZ" = (/obj/decal/jukebox,/obj/decal/glow{brightness = 3; invisibility = 101; name = "glow - YELLOW"; color_b = 0.2; color_g = 0.45; color_r = 0.5},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 4},/area/station/hallway/primary/north)
+"bFa" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"bFb" = (/obj/landmark{name = "Observer-Start"},/turf/space,/area)
-"bFc" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bFd" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/clipboard,/obj/item/pen,/obj/item/stamp,/obj/item/clothing/head/that,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/hallway/primary/fore)
-"bFe" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 4},/area/station/hallway/primary/fore)
+"bFc" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bFd" = (/obj/table/auto,/obj/item/paper_bin,/obj/item/clipboard,/obj/item/pen,/obj/item/stamp,/obj/item/clothing/head/that,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/hallway/primary/north)
+"bFe" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 4},/area/station/hallway/primary/north)
"bFf" = (/obj/machinery/door/firedoor/pyro,/obj/table/reinforced/auto,/obj/machinery/cashreg,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor,/area/station/security/checkpoint/customs)
"bFg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/customs)
"bFh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon/mule/bridge_north/east,/obj/decal/mule/beacon,/turf/simulated/floor{icon_state = "circuitoff"},/area/station/security/checkpoint/customs)
@@ -4347,9 +4347,9 @@
"bFE" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"bFF" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bFG" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
-"bFH" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bFI" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bFJ" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/aft)
+"bFH" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bFI" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bFJ" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/hallway/primary/south)
"bFK" = (/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 4; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 9; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/securearea{desc = "This hazard stripe marks a high-intensity beamline."; dir = 5; icon_state = "magwarning"; layer = 2.5; name = "Beamline"},/obj/machinery/atmospherics/pipe/simple/insulated,/obj/machinery/door/airlock/pyro/glass{autoclose = 0; density = 0; icon_state = "glass_open"; id = "pt_laser"; name = "Beamline Interlock"; req_access_txt = "54"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/inner)
"bFL" = (/obj/machinery/power/pt_laser{dir = 8},/obj/machinery/door_control{id = "pt_laser"; name = "PTL Doors"; pixel_x = -24; pixel_y = 8},/obj/machinery/door_control{id = "engine_observation"; name = "Observation Shutters"; pixel_x = -24; pixel_y = -8},/turf/simulated/floor/engine,/area/station/engine/core)
"bFM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/engine,/area/station/engine/core)
@@ -4399,15 +4399,15 @@
"bGE" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bGF" = (/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bGG" = (/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
-"bGH" = (/obj/item/device/radio/intercom/security{pixel_x = -24; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/hallway/primary/fore)
-"bGI" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/hallway/primary/fore)
-"bGJ" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/hallway/primary/fore)
-"bGK" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"bGH" = (/obj/item/device/radio/intercom/security{pixel_x = -24; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/hallway/primary/north)
+"bGI" = (/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/hallway/primary/north)
+"bGJ" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/hallway/primary/north)
+"bGK" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"bGL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area)
-"bGM" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bGN" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/hallway/primary/fore)
-"bGO" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/hallway/primary/fore)
-"bGP" = (/obj/item/device/radio/intercom/bridge{pixel_x = 28; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/hallway/primary/fore)
+"bGM" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bGN" = (/obj/machinery/computer/stockexchange{icon_state = "QMreq"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/hallway/primary/north)
+"bGO" = (/obj/stool/chair/blue{icon_state = "chair-b"; dir = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/hallway/primary/north)
+"bGP" = (/obj/item/device/radio/intercom/bridge{pixel_x = 28; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/hallway/primary/north)
"bGQ" = (/obj/disposalpipe/trunk/mail/east,/obj/machinery/disposal/mail/small/autoname/checkpoint/customs/east,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
"bGR" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
"bGS" = (/obj/disposalpipe/switch_junction/left/south{mail_tag = "customs checkpoint"; name = "mail junction (customs)"},/turf/simulated/floor{dir = 2; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
@@ -4426,11 +4426,11 @@
"bHf" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bHg" = (/obj/disposalpipe/switch_junction/right/north{mail_tag = "podbay checkpoint"; name = "mail junction (pod bay checkpoint)"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
"bHh" = (/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/podbay)
-"bHi" = (/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bHj" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bHk" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bHl" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
-"bHm" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/monitor/smes{dir = 8; name = "Engine Output Monitoring"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/aft)
+"bHi" = (/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bHj" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bHk" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bHl" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
+"bHm" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/monitor/smes{dir = 8; name = "Engine Output Monitoring"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/south)
"bHn" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/engine/inner)
"bHo" = (/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/engine/inner)
"bHp" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/turf/simulated/floor/plating/airless,/area/station/engine/core)
@@ -4487,10 +4487,10 @@
"bIo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bIp" = (/obj/machinery/power/apc/autoname_south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/sec_foyer)
"bIq" = (/obj/machinery/door/airlock/pyro/glass{dir = 4; name = "Security Office"; req_access_txt = "1"},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/checkpoint/sec_foyer)
-"bIr" = (/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/fore)
-"bIs" = (/obj/machinery/light/emergency{dir = 4; icon_state = "ebulb1"; pixel_x = 16},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/fore)
-"bIt" = (/obj/grille/steel,/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bIu" = (/obj/machinery/light/emergency{dir = 8; icon_state = "ebulb1"; pixel_x = -16},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/fore)
+"bIr" = (/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/north)
+"bIs" = (/obj/machinery/light/emergency{dir = 4; icon_state = "ebulb1"; pixel_x = 16},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/north)
+"bIt" = (/obj/grille/steel,/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bIu" = (/obj/machinery/light/emergency{dir = 8; icon_state = "ebulb1"; pixel_x = -16},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/hallway/primary/north)
"bIv" = (/obj/machinery/door/airlock/pyro/command{dir = 4; icon_state = "com_closed"; name = "Bridge Access"},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/checkpoint/customs)
"bIw" = (/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
"bIx" = (/obj/disposalpipe/switch_junction/right/south{mail_tag = "bridge"; name = "mail junction (bridge)"},/turf/simulated/floor{dir = 1; icon_state = "blueblack"},/area/station/security/checkpoint/customs)
@@ -4510,15 +4510,15 @@
"bIL" = (/obj/disposalpipe/segment/mail/bent/north,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bIM" = (/obj/stool/chair/red{icon_state = "chair-r"; dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment/mail/bent/south,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bIN" = (/obj/table/reinforced/auto,/obj/machinery/cashreg,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
-"bIO" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bIP" = (/obj/disposalpipe/segment,/obj/landmark/halloween,/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bIQ" = (/obj/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bIR" = (/obj/cable{icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/aft)
-"bIS" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/aft)
-"bIT" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bIU" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/aft)
-"bIV" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/aft)
-"bIW" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
+"bIO" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bIP" = (/obj/disposalpipe/segment,/obj/landmark/halloween,/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bIQ" = (/obj/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bIR" = (/obj/cable{icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/south)
+"bIS" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/south)
+"bIT" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bIU" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/south)
+"bIV" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/south)
+"bIW" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
"bIX" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/station/engine/inner)
"bIY" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 10; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/station/engine/core)
"bIZ" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 5; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/station/engine/core)
@@ -4562,12 +4562,12 @@
"bJL" = (/obj/disposalpipe/trunk,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/machinery/disposal/brig{name = "ejection chute"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
"bJM" = (/obj/table/reinforced/auto,/obj/item/paper/Port_A_Brig,/obj/cable{icon_state = "1-2"},/obj/item/remote/porter/port_a_brig,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
"bJN" = (/obj/machinery/port_a_brig,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/sec_foyer)
-"bJO" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bJP" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/fore)
-"bJQ" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bJR" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bJS" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/fore)
-"bJT" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"bJO" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bJP" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "Stairs2_wide"},/area/station/hallway/primary/north)
+"bJQ" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bJR" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bJS" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hallway/primary/north)
+"bJT" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"bJU" = (/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 9},/area/station/security/checkpoint/customs)
"bJV" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 1},/area/station/security/checkpoint/customs)
"bJW" = (/obj/machinery/manufacturer/uniform,/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 5},/area/station/security/checkpoint/customs)
@@ -4585,14 +4585,14 @@
"bKi" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bKj" = (/obj/table/reinforced/auto,/obj/machinery/door_control{id = "pt_laser"; name = "PTL Doors"; pixel_x = 0; pixel_y = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door_control{id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown"; pixel_x = 0; pixel_y = 0},/obj/machinery/power/apc/autoname_south,/obj/cable,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint/podbay)
"bKk" = (/obj/grille/steel,/obj/window/auto/reinforced,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_checkpoint3"; name = "Checkpoint Lockdown Doors"; opacity = 0},/obj/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/security/checkpoint/podbay)
-"bKl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bKm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bKn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bKo" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/aft)
-"bKp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bKq" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/aft)
-"bKr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
-"bKs" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/aft)
+"bKl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bKm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bKn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bKo" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/south)
+"bKp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bKq" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/south)
+"bKr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
+"bKs" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/south)
"bKt" = (/obj/window/auto/reinforced,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "engine_observation"; name = "Observation Shutter"; opacity = 0},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/engine/inner)
"bKu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/station/engine/inner)
"bKv" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/station/engine/inner)
@@ -4636,12 +4636,12 @@
"bLh" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/security/checkpoint/sec_foyer)
"bLi" = (/obj/window/auto/reinforced,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/steel,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/security/checkpoint/sec_foyer)
"bLj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/checkpoint/sec_foyer)
-"bLk" = (/obj/disposalpipe/trunk{dir = 8},/obj/disposaloutlet{dir = 4; name = "ejection outlet"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bLl" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bLm" = (/obj/machinery/light/emergency,/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/fore)
-"bLn" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon1_start,/turf/simulated/floor{icon_state = "nt_logo"},/area/station/hallway/primary/fore)
-"bLo" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/fore)
-"bLp" = (/obj/disposalpipe/trunk{dir = 4},/obj/disposaloutlet{dir = 8; name = "ejection outlet"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
+"bLk" = (/obj/disposalpipe/trunk{dir = 8},/obj/disposaloutlet{dir = 4; name = "ejection outlet"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bLl" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bLm" = (/obj/machinery/light/emergency,/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hallway/primary/north)
+"bLn" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon1_start,/turf/simulated/floor{icon_state = "nt_logo"},/area/station/hallway/primary/north)
+"bLo" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hallway/primary/north)
+"bLp" = (/obj/disposalpipe/trunk{dir = 4},/obj/disposaloutlet{dir = 8; name = "ejection outlet"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
"bLq" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/checkpoint/customs)
"bLr" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/brig{name = "ejection chute"},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 10},/area/station/security/checkpoint/customs)
"bLs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 2},/area/station/security/checkpoint/customs)
@@ -4663,10 +4663,10 @@
"bLI" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/checkpoint/podbay)
"bLJ" = (/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/external{name = "Pod Bay"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bLK" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"bLL" = (/obj/shrub,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/aft)
-"bLM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bLN" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon8,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bLO" = (/obj/shrub,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/aft)
+"bLL" = (/obj/shrub,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/south)
+"bLM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bLN" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon8,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bLO" = (/obj/shrub,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/south)
"bLP" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/emergency)
"bLQ" = (/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{dir = 2; name = "Emergency Storage A"; req_access = list(41); req_access_txt = "41"; req_only_one_required = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"bLR" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor/plating,/area/station/engine/inner)
@@ -4716,9 +4716,9 @@
"bMJ" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/window_blinds/cog2/left,/turf/simulated/floor/plating,/area/station/security/main)
"bMK" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/window_blinds/cog2/right,/turf/simulated/floor/plating,/area/station/security/main)
"bML" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/security{name = "Interview Room"; req_access = null},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
-"bMM" = (/obj/shrub,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/fore)
-"bMN" = (/obj/shrub,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bMO" = (/obj/machinery/door/airlock/pyro,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
+"bMM" = (/obj/shrub,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{dir = 8; icon_state = "black"},/area/station/hallway/primary/north)
+"bMN" = (/obj/shrub,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bMO" = (/obj/machinery/door/airlock/pyro,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
"bMP" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/teleporter)
"bMQ" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/command{name = "Teleporter"; req_access = list(17)},/turf/simulated/floor{icon_state = "delivery"},/area/station/teleporter)
"bMR" = (/obj/securearea,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/teleporter)
@@ -4735,8 +4735,8 @@
"bNc" = (/obj/disposalpipe/segment/bent/west,/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/hangar/main)
"bNd" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/obj/machinery/portable_atmospherics/pump,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "bot"},/area/station/hangar/main)
"bNe" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 6},/obj/machinery/meter,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"bNf" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
-"bNg" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
+"bNf" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
+"bNg" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
"bNh" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/emergency)
"bNi" = (/obj/machinery/disposal,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/machinery/alarm{pixel_y = 20},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bNj" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
@@ -4798,16 +4798,16 @@
"bOn" = (/obj/item/device/radio/intercom/security,/obj/blind_switch/area{pixel_x = 13; pixel_y = 28},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bOo" = (/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bOp" = (/obj/item/device/audio_log/wall_mounted{anchored = 1; max_lines = 350; mode = 1; name = "Security Recorder"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
-"bOq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
+"bOq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
"bOr" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bOs" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bOt" = (/obj/table/auto,/obj/item/hand_tele,/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bOu" = (/obj/table/auto,/obj/item/hand_tele,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bOv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/teleporter)
-"bOw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bOx" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bOy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bOz" = (/obj/fitness/speedbag/clown,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/item/storage/pill_bottle/catdrugs,/obj/machinery/power/apc{areastring = "Captain's Quarters"; dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bOw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bOx" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bOy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bOz" = (/obj/fitness/speedbag/clown,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/item/storage/pill_bottle/catdrugs,/obj/machinery/power/apc{areastring = "Captain's Quarters"; dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/north)
"bOA" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/captain)
"bOB" = (/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/communications{dir = 4},/obj/machinery/alarm{pixel_y = 20},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"bOC" = (/obj/machinery/light_switch/north,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/crew_quarters/captain)
@@ -4820,8 +4820,8 @@
"bOJ" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/floor,/area/station/hangar/main)
"bOK" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor,/area/station/hangar/main)
"bOL" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"bOM" = (/obj/machinery/door/airlock/pyro/glass,/obj/machinery/door/firedoor/pyro,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/aft)
-"bON" = (/obj/machinery/door/airlock/pyro/glass,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/aft)
+"bOM" = (/obj/machinery/door/airlock/pyro/glass,/obj/machinery/door/firedoor/pyro,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/south)
+"bON" = (/obj/machinery/door/airlock/pyro/glass,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/south)
"bOO" = (/obj/item/sheet/steel{amount = 50},/obj/item/storage/toolbox/mechanical,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/obj/item/storage/firstaid/oxygen{pixel_y = -4},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/metalfoam,/obj/item/chem_grenade/metalfoam,/obj/storage/cart/mechcart{desc = "A big rolling supply cart equipped for handling hull breaches."; name = "breach repair cart"; req_access_txt = "40"},/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bOP" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/storage/emergency)
"bOQ" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/storage/emergency)
@@ -4880,14 +4880,14 @@
"bPR" = (/obj/table/reinforced/auto,/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bPS" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bPT" = (/obj/reagent_dispensers/watertank/fountain,/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
-"bPU" = (/obj/table/auto,/obj/item/paper_bin,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
-"bPV" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
+"bPU" = (/obj/table/auto,/obj/item/paper_bin,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
+"bPV" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
"bPW" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bPX" = (/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bPY" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/teleporter)
"bPZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/command{dir = 4; icon_state = "com_closed"; name = "Teleporter"; req_access_txt = "17"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/teleporter)
-"bQa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bQb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/fore)
+"bQa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bQb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/north)
"bQc" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/command{dir = 4; icon_state = "com_closed"; name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/captain)
"bQd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"bQe" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/crew_quarters/captain)
@@ -4900,7 +4900,7 @@
"bQl" = (/obj/disposalpipe/trunk/mail/west,/obj/machinery/disposal/mail/small/autoname/public/podbay/south,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
"bQm" = (/obj/machinery/navbeacon/mule/podbay_north/east,/obj/decal/mule/beacon,/turf/simulated/floor,/area/station/hangar/main)
"bQn" = (/turf/simulated/floor,/area/station/hangar/main)
-"bQo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
+"bQo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
"bQp" = (/obj/item/sheet/steel{amount = 50},/obj/item/storage/toolbox/mechanical,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/storage/firstaid/oxygen{pixel_y = -4},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/metalfoam,/obj/item/chem_grenade/metalfoam,/obj/storage/cart/mechcart{desc = "A big rolling supply cart equipped for handling hull breaches."; name = "breach repair cart"; req_access_txt = "40"},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bQq" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/storage/emergency)
"bQr" = (/turf/simulated/floor{icon_state = "yellowcorner"},/area/station/storage/emergency)
@@ -4964,7 +4964,7 @@
"bRx" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/window_blinds/cog2{dir = 4},/turf/simulated/floor/plating,/area/station/security/main)
"bRy" = (/obj/table/reinforced/auto,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bRz" = (/obj/table/auto,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 4},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
-"bRA" = (/obj/item/storage/toilet/random{icon_state = "toilet"; dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
+"bRA" = (/obj/item/storage/toilet/random{icon_state = "toilet"; dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
"bRB" = (/obj/machinery/teleport/portal_ring,/turf/simulated/floor{icon_state = "delivery"},/area/station/teleporter)
"bRC" = (/obj/machinery/teleport/portal_generator,/turf/simulated/floor{icon_state = "bot"},/area/station/teleporter)
"bRD" = (/obj/machinery/computer/teleporter{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/teleporter)
@@ -4982,7 +4982,7 @@
"bRP" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 6},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
"bRQ" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
"bRR" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 9},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/main)
-"bRS" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bRS" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
"bRT" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/item/extinguisher,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bRU" = (/obj/rack,/obj/item/clothing/suit/space/engineer,/obj/item/clothing/shoes/magnetic,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/engineer,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bRV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/storage/emergency)
@@ -5033,8 +5033,8 @@
"bSO" = (/obj/machinery/camera/television{c_tag = "security 1"; dir = 4; name = "camera - interview room"},/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bSP" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
"bSQ" = (/obj/shrub{icon_state = "shrub"; dir = 1},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/main)
-"bSR" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bSS" = (/obj/submachine/chef_sink/chem_sink{dir = 8; pixel_x = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
+"bSR" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bSS" = (/obj/submachine/chef_sink/chem_sink{dir = 8; pixel_x = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
"bST" = (/obj/table/wood/auto,/obj/machinery/light/lamp/green,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"bSU" = (/obj/table/wood/auto,/obj/machinery/power/data_terminal,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/obj/cable,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/crew_quarters/captain)
"bSV" = (/obj/table/wood/auto,/obj/machinery/recharger{pixel_y = 3},/obj/item/item_box/gold_star{item_amount = 20},/obj/item/card/id/captains_spare,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/crew_quarters/captain)
@@ -5048,7 +5048,7 @@
"bTd" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "caution"},/area/station/hangar/main)
"bTe" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "caution"},/area/station/hangar/main)
"bTf" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/space,/area)
-"bTg" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bTg" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
"bTh" = (/obj/machinery/door/airlock/pyro/glass{dir = 4; name = "Emergency Storage A"; req_access = list(41); req_access_txt = "41"; req_only_one_required = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"bTi" = (/obj/machinery/light_switch/north,/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"bTj" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/emergency)
@@ -5090,16 +5090,16 @@
"bTT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/security/main)
"bTU" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/station/security/main)
"bTV" = (/obj/plasticflaps{layer = 3},/obj/machinery/door/airlock/pyro/security{name = "Interview Room"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/security/main)
-"bTW" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bTX" = (/obj/shrub{dir = 2; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
-"bTY" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/fore)
-"bTZ" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bUa" = (/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bUb" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bUc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bUd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bUe" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc/autoname_south,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bUf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bTW" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bTX" = (/obj/shrub{dir = 2; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
+"bTY" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/hallway/primary/north)
+"bTZ" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bUa" = (/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bUb" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bUc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bUd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bUe" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc/autoname_south,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bUf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bUg" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/window_blinds/cog2/left,/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
"bUh" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/window_blinds/cog2/middle,/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
"bUi" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/obj/window_blinds/cog2/middle,/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
@@ -5109,7 +5109,7 @@
"bUm" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization/south,/turf/simulated/floor/plating,/area/station/hangar/main)
"bUn" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/hangar/main)
"bUo" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor/plating/airless,/area)
-"bUp" = (/obj/table/reinforced/auto,/obj/item/storage/toolbox/mechanical,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bUp" = (/obj/table/reinforced/auto,/obj/item/storage/toolbox/mechanical,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
"bUq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/storage/emergency)
"bUr" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/obj/item/extinguisher,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bUs" = (/obj/window/auto/reinforced,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor/plating,/area/station/storage/emergency)
@@ -5150,17 +5150,17 @@
"bVb" = (/obj/plasticflaps{layer = 3},/obj/machinery/door/airlock/pyro/security{dir = 4; opacity = 0},/obj/machinery/door/poddoor/pyro{density = 0; dir = 4; icon_state = "pdoor0"; id = "lockdown_sec"; name = "Security Lockdown Doors"; opacity = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/security/beepsky)
"bVc" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/station/security/beepsky)
"bVd" = (/turf/simulated/floor/plating,/area/station/security/beepsky)
-"bVe" = (/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bVf" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bVg" = (/obj/machinery/disposal,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bVh" = (/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/fore)
-"bVi" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fore)
+"bVe" = (/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bVf" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/storage/closet/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bVg" = (/obj/machinery/disposal,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bVh" = (/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "black"; dir = 4},/area/station/hallway/primary/north)
+"bVi" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/north)
"bVj" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southwest,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bVk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/hangar/main)
"bVl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/storage/closet/fire,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/hangar/main)
"bVm" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/reagent_dispensers/foamtank,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/hangar/main)
-"bVn" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
-"bVo" = (/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/aft)
+"bVn" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
+"bVo" = (/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/hallway/primary/south)
"bVp" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance{name = "Emergency Storage A"; req_access = list(41); req_access_txt = "41"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"bVq" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"bVr" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
@@ -5210,17 +5210,17 @@
"bWj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/beepsky)
"bWk" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/security/beepsky)
"bWl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/security/beepsky)
-"bWm" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bWn" = (/obj/submachine/ATM{pixel_y = 32},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bWo" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/stool/chair,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bWp" = (/obj/table/auto,/obj/item/storage/firstaid/regular,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/wall/fire{dir = 1; icon_state = "minifire"; pixel_y = 32},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bWq" = (/obj/securearea,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
-"bWr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fore)
-"bWs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fore)
-"bWt" = (/obj/machinery/door/airlock/pyro/glass{dir = 4; req_access_txt = "1"},/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/fore)
-"bWu" = (/obj/decal/cleanable/oil,/obj/machinery/vehicle/miniputt/nanoputt{dir = 4},/obj/machinery/r_door_control{id = "bridgetube1"; pixel_y = 24},/turf/simulated/floor/shuttlebay,/area/station/maintenance/fore)
-"bWv" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "bridgetube1"; name = "Podbay Door"},/turf/simulated/floor/shuttlebay,/area/station/maintenance/fore)
-"bWw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay,/area/station/maintenance/fore)
+"bWm" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/north)
+"bWn" = (/obj/submachine/ATM{pixel_y = 32},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bWo" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/stool/chair,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bWp" = (/obj/table/auto,/obj/item/storage/firstaid/regular,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/wall/fire{dir = 1; icon_state = "minifire"; pixel_y = 32},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bWq" = (/obj/securearea,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
+"bWr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/north)
+"bWs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/north)
+"bWt" = (/obj/machinery/door/airlock/pyro/glass{dir = 4; req_access_txt = "1"},/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/north)
+"bWu" = (/obj/decal/cleanable/oil,/obj/machinery/vehicle/miniputt/nanoputt{dir = 4},/obj/machinery/r_door_control{id = "bridgetube1"; pixel_y = 24},/turf/simulated/floor/shuttlebay,/area/station/maintenance/north)
+"bWv" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "bridgetube1"; name = "Podbay Door"},/turf/simulated/floor/shuttlebay,/area/station/maintenance/north)
+"bWw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay,/area/station/maintenance/north)
"bWx" = (/obj/machinery/atmospherics/unary/vent_pump/north,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bWy" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northeast,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bWz" = (/obj/machinery/atmospherics/valve/notify_admins/horizontal{name = "Air Reserve (Pod Bay #2)"},/turf/simulated/floor/plating,/area/station/hangar/main)
@@ -5230,8 +5230,8 @@
"bWD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment/mail/horizontal,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor/plating,/area/station/hangar/main)
"bWE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/hangar/main)
"bWF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/hangar/main)
-"bWG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-4"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/aft)
-"bWH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bWG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-4"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/hallway/primary/south)
+"bWH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor,/area/station/hallway/primary/south)
"bWI" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bWJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bWK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment/mail/bent/south,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -5269,14 +5269,14 @@
"bXq" = (/obj/item/diary,/obj/item/clothing/shoes/black{desc = "You have no idea how a robot with wheels for locomotion could possibly require these."; name = "Beepsky's Shoes"},/obj/item/storage/photo_album/beepsky,/obj/item/clothing/suit/det_suit/beepsky,/obj/item/clothing/head/NTberet{desc = "It's a momento, I guess. An old keepsake. And maybe a reminder of the things we've left behind."; name = "Old Beret"},/obj/storage/crate,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/security/beepsky)
"bXr" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/security/beepsky)
"bXs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/security/beepsky)
-"bXt" = (/obj/plasticflaps{layer = 3},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"bXu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bXv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bXw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon20_to_1_end,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bXx" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bXy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/external{dir = 4; icon_state = "airlock_closed"; name = "NanoPutt Bay"; req_access_txt = "1"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"bXz" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fore)
-"bXA" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fore)
+"bXt" = (/obj/plasticflaps{layer = 3},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"bXu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bXv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bXw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon20_to_1_end,/turf/simulated/floor,/area/station/hallway/primary/north)
+"bXx" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bXy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/external{dir = 4; icon_state = "airlock_closed"; name = "NanoPutt Bay"; req_access_txt = "1"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"bXz" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/north)
+"bXA" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/north)
"bXB" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "fullcaution"},/area/station/hangar/main)
"bXC" = (/obj/machinery/power/apc{areastring = "Aft Primary Hallway"; dir = 2; name = "S APC"; noalerts = 0; operating = 1; pixel_y = -24; start_charge = 90},/obj/cable,/turf/simulated/floor/plating,/area/station/hangar/main)
"bXD" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -5304,19 +5304,19 @@
"bXZ" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "red"; icon_state = "bedsheet-red"},/turf/simulated/floor/plating,/area/station/security/beepsky)
"bYa" = (/obj/machinery/bot/secbot/beepsky,/turf/simulated/floor/plating,/area/station/security/beepsky)
"bYb" = (/obj/machinery/computer/security/wooden_tv,/turf/simulated/floor/plating,/area/station/security/beepsky)
-"bYc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bYd" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bYe" = (/obj/table/auto,/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/emergency,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bYf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"bYg" = (/obj/securearea,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/fore)
-"bYh" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fore)
-"bYi" = (/obj/decal/cleanable/oil,/obj/machinery/vehicle/miniputt/nanoputt{dir = 4},/obj/machinery/r_door_control{id = "bridgetube2"; pixel_y = 24},/turf/simulated/floor/shuttlebay,/area/station/maintenance/fore)
-"bYj" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "bridgetube2"; name = "Podbay Door"},/turf/simulated/floor/shuttlebay,/area/station/maintenance/fore)
+"bYc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bYd" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bYe" = (/obj/table/auto,/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/emergency,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bYf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"bYg" = (/obj/securearea,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/primary/north)
+"bYh" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/north)
+"bYi" = (/obj/decal/cleanable/oil,/obj/machinery/vehicle/miniputt/nanoputt{dir = 4},/obj/machinery/r_door_control{id = "bridgetube2"; pixel_y = 24},/turf/simulated/floor/shuttlebay,/area/station/maintenance/north)
+"bYj" = (/obj/machinery/door/poddoor/pyro{dir = 4; id = "bridgetube2"; name = "Podbay Door"},/turf/simulated/floor/shuttlebay,/area/station/maintenance/north)
"bYk" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating/airless/shuttlebay{name = "landing pad plating"},/area/station/hangar/main)
"bYl" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/hangar/main)
-"bYm" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/primary/aft)
-"bYn" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hallway/primary/aft)
-"bYo" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/primary/aft)
+"bYm" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/primary/south)
+"bYn" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hallway/primary/south)
+"bYo" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/primary/south)
"bYp" = (/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment/mail/bent/north,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bYq" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bYr" = (/obj/machinery/r_door_control/podbay/engineering/new_walls/south,/turf/simulated/floor/shuttlebay,/area/station/hangar/engine)
@@ -5330,13 +5330,13 @@
"bYz" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/yellow_pipe/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/main)
"bYA" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/yellow_pipe/northwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/main)
"bYB" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/security/beepsky)
-"bYC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/primary/fore)
-"bYD" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hallway/primary/fore)
-"bYE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/primary/fore)
-"bYF" = (/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"bYC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/primary/north)
+"bYD" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hallway/primary/north)
+"bYE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/primary/north)
+"bYF" = (/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"bYG" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/hangar/main)
-"bYH" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/aft)
-"bYI" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "aftstarboard"; pixel_x = 32; pixel_y = 0; starts_established = 1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/aft)
+"bYH" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/south)
+"bYI" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "aftstarboard"; pixel_x = 32; pixel_y = 0; starts_established = 1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/south)
"bYJ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bYK" = (/obj/machinery/power/apc/autoname_south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bYL" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/maintcentral)
@@ -5351,10 +5351,10 @@
"bYU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bYV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bYW" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bYX" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/fore)
-"bYY" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "forestarboard"; pixel_x = 32; pixel_y = 0; starts_established = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/fore)
-"bYZ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bZa" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bYX" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/north)
+"bYY" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "forestarboard"; pixel_x = 32; pixel_y = 0; starts_established = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/north)
+"bYZ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bZa" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bZb" = (/obj/machinery/light/small,/obj/disposalpipe/segment/mail/bent/north,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/maintcentral)
"bZc" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/maintcentral)
"bZd" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/maintenance/maintcentral)
@@ -5388,9 +5388,9 @@
"bZF" = (/obj/machinery/door/poddoor/blast/pyro/podbay_autoclose/security_horizontal,/turf/simulated/floor/shuttlebay,/area/station/maintenance/inner)
"bZG" = (/obj/airbridge_controler{id = "forestarboard"; primary_controller = 1; tunnel_width = 2},/turf/space,/area)
"bZH" = (/obj/lattice,/obj/machinery/r_door_control/podbay/engineering/new_walls/north,/turf/space,/area)
-"bZI" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"bZJ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/engine/substation/starboard)
-"bZK" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
+"bZI" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"bZJ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/engine/substation/east)
+"bZK" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
"bZL" = (/obj/lattice{icon_state = "lattice-dir"; dir = 6},/obj/machinery/r_door_control/podbay/security/new_walls/north,/turf/space,/area)
"bZM" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/hangar/main)
"bZN" = (/turf/space,/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/hangar/main)
@@ -5398,13 +5398,13 @@
"bZP" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/tech)
"bZQ" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/tech)
"bZR" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/storage/tech)
-"bZS" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"bZT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"bZU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"bZV" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"bZW" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/southeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"bZX" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/starboard)
-"bZY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/southwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
+"bZS" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"bZT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"bZU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"bZV" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"bZW" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/southeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"bZX" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/east)
+"bZY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/southwest,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
"bZZ" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
"caa" = (/obj/machinery/mass_driver{dir = 1; drive_range = 10; id = "disposals_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "disposals_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"cab" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "disposals_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -5414,18 +5414,18 @@
"caf" = (/obj/machinery/power/data_terminal,/obj/item/device/net_sniffer,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/storage/tech)
"cag" = (/obj/machinery/power/data_terminal,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/storage/tech)
"cah" = (/obj/table/auto,/obj/item/disk/data/cartridge/diagnostics{pixel_x = 4; pixel_y = -2},/obj/item/disk/data/cartridge/atmos{pixel_x = -6; pixel_y = 4},/obj/item/disk/data/cartridge{desc = "A programmable data cartridge for portable microcomputers."; name = "EEPROM Cart"},/obj/item/device/audio_log,/obj/item/peripheral/card_scanner,/obj/item/peripheral/card_scanner,/obj/item/storage/wall/random,/turf/simulated/floor/plating,/area/station/storage/tech)
-"cai" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization/south,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caj" = (/obj/machinery/atmospherics/portables_connector/south,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cak" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cal" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cam" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/power/monitor{name = "Station Power Grid Monitoring"},/obj/cable{icon_state = "4-8"},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"can" = (/obj/item/storage/wall/random,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/autoname_east,/obj/storage/cart/mechcart{desc = "A big rolling supply cart equipped for handling hull breaches."; name = "breach repair cart"; req_access_txt = "40"},/obj/item/sheet/steel{amount = 50},/obj/item/storage/toolbox/mechanical,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/storage/firstaid/oxygen{pixel_y = -4},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/metalfoam,/obj/item/chem_grenade/metalfoam,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cao" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"cap" = (/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/starboard)
-"caq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
-"car" = (/obj/machinery/atmospherics/portables_connector,/obj/item/storage/wall/random,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cas" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cat" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
+"cai" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization/south,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caj" = (/obj/machinery/atmospherics/portables_connector/south,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cak" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cal" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cam" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/power/monitor{name = "Station Power Grid Monitoring"},/obj/cable{icon_state = "4-8"},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"can" = (/obj/item/storage/wall/random,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/autoname_east,/obj/storage/cart/mechcart{desc = "A big rolling supply cart equipped for handling hull breaches."; name = "breach repair cart"; req_access_txt = "40"},/obj/item/sheet/steel{amount = 50},/obj/item/storage/toolbox/mechanical,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/storage/firstaid/oxygen{pixel_y = -4},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/metalfoam,/obj/item/chem_grenade/metalfoam,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cao" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"cap" = (/obj/machinery/door/airlock/pyro/external{req_access_txt = "40"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/east)
+"caq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
+"car" = (/obj/machinery/atmospherics/portables_connector,/obj/item/storage/wall/random,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cas" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cat" = (/obj/machinery/atmospherics/pipe/tank/air_repressurization,/turf/simulated/floor/plating,/area/station/engine/substation/east)
"cau" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "disposals_launcher"; name = "Cargo Door"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/disposal)
"cav" = (/obj/disposalpipe/segment/mail/bent/north,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
"caw" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
@@ -5441,14 +5441,14 @@
"caG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"caH" = (/obj/table/auto,/obj/machinery/computer/security/wooden_tv/small{pixel_y = 8},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"caI" = (/turf/simulated/wall/auto/supernorn,/area/station/storage/tech)
-"caJ" = (/obj/machinery/atmospherics/valve/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caK" = (/obj/machinery/atmospherics/valve/vertical,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/starboard)
-"caL" = (/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caO" = (/obj/disposalpipe/segment,/obj/machinery/light_switch/north,/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caP" = (/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"caQ" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
+"caJ" = (/obj/machinery/atmospherics/valve/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caK" = (/obj/machinery/atmospherics/valve/vertical,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/east)
+"caL" = (/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caO" = (/obj/disposalpipe/segment,/obj/machinery/light_switch/north,/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caP" = (/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/valve/purge/vertical,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"caQ" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/plating,/area/station/engine/substation/east)
"caR" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"caS" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"caT" = (/obj/disposaloutlet{dir = 8; mailgroup = "security"; message = "Brig delivery chute activated."},/obj/disposalpipe/trunk,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -5458,25 +5458,25 @@
"caX" = (/obj/airbridge_controler{id = "aftstarboard"; tunnel_width = 2},/turf/space,/area)
"caY" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/crew_quarters/quarters_star)
"caZ" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters_star)
-"cba" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/asmaint)
-"cbb" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/asmaint)
+"cba" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SEmaint)
+"cbb" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/SEmaint)
"cbc" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"cbd" = (/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"cbe" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"cbf" = (/obj/machinery/light/small{dir = 4; icon_state = "bulb1"; pixel_x = 12},/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
-"cbg" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/overfloor/northeast,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbi" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/starboard)
-"cbj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbm" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/valve/horizontal{name = "mixing valve"},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/east,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cbs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
+"cbg" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/overfloor/northeast,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbi" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/engine/substation/east)
+"cbj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/overfloor/horizontal,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbm" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/valve/horizontal{name = "mixing valve"},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/overfloor/south,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/north,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/overfloor/east,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cbs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
"cbt" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"cbu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
"cbv" = (/obj/disposalpipe/junction{dir = 4},/obj/grille/steel,/obj/window/auto/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -5484,11 +5484,11 @@
"cbx" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
"cby" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"cbz" = (/obj/machinery/mass_driver{drive_range = 15; id = "disposals_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"cbA" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"cbB" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/fsmaint)
-"cbC" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"cbD" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cbE" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
+"cbA" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"cbB" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/NEmaint)
+"cbC" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"cbD" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cbE" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
"cbF" = (/obj/airbridge_controler{id = "forestarboard"; tunnel_width = 2},/turf/space,/area)
"cbG" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/science/teleporter)
"cbH" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/science/teleporter)
@@ -5506,24 +5506,24 @@
"cbT" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "pink"; icon_state = "bedsheet-pink"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_star)
"cbU" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_star)
"cbV" = (/obj/storage/closet/wardrobe/white/research,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_star)
-"cbW" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/asmaint)
-"cbX" = (/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cbW" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/SEmaint)
+"cbX" = (/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cbY" = (/obj/table/auto,/obj/item/peripheral/sound_card,/obj/item/peripheral/printer,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"cbZ" = (/obj/table/auto,/obj/item/peripheral/network/powernet_card,/obj/item/peripheral/network/radio/locked,/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"cca" = (/obj/table/auto,/obj/item/peripheral/drive/cart_reader,/obj/item/peripheral/drive,/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"ccb" = (/obj/machinery/camera{c_tag = "autotag"; dir = 10; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 0; tag = ""},/obj/vehicle/tug{desc = "Pretty much just an airport baggage cart, really."; name = "utility tractor"},/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
"ccc" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "floorgrime_gb2"},/area/station/storage/tech)
-"ccd" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cce" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"ccf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Medbay)"},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"ccg" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"cch" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
+"ccd" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cce" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"ccf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Medbay)"},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"ccg" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"cch" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/east)
"cci" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/quartermaster/refinery)
"ccj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/quartermaster/refinery)
"cck" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/quartermaster/refinery)
"ccl" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/quartermaster/refinery)
-"ccm" = (/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (QM Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
-"ccn" = (/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Escape Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/starboard)
+"ccm" = (/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (QM Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/east)
+"ccn" = (/obj/machinery/atmospherics/valve/notify_admins/vertical{name = "Air Reserve (Escape Hallway)"},/turf/simulated/floor/plating,/area/station/engine/substation/east)
"cco" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"ccp" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"ccq" = (/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/disposal)
@@ -5532,14 +5532,14 @@
"cct" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "disposals_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"ccu" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
"ccv" = (/obj/machinery/mass_driver{drive_range = 15; id = "disposals_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "disposals_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"ccw" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"ccx" = (/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ccy" = (/obj/storage/closet/wardrobe/yellow,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"ccz" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "yellow"; icon_state = "bedsheet-yellow"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"ccA" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"ccB" = (/obj/storage/secure/closet/personal,/obj/machinery/alarm{pixel_y = 20},/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"ccC" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"ccD" = (/obj/storage/secure/closet/personal,/obj/machinery/alarm{pixel_y = 20},/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
+"ccw" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"ccx" = (/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ccy" = (/obj/storage/closet/wardrobe/yellow,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"ccz" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "yellow"; icon_state = "bedsheet-yellow"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"ccA" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"ccB" = (/obj/storage/secure/closet/personal,/obj/machinery/alarm{pixel_y = 20},/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"ccC" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"ccD" = (/obj/storage/secure/closet/personal,/obj/machinery/alarm{pixel_y = 20},/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
"ccE" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/exit)
"ccF" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/secondary/exit)
"ccG" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/exit)
@@ -5562,15 +5562,15 @@
"ccX" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_star)
"ccY" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_star)
"ccZ" = (/obj/table/auto,/obj/random_item_spawner/med_kit,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/crew_quarters/quarters_star)
-"cda" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/turf/space,/area/station/maintenance/asmaint)
-"cdb" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/asmaint)
-"cdc" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cda" = (/obj/lattice{icon_state = "lattice-dir"; dir = 1},/turf/space,/area/station/maintenance/SEmaint)
+"cdb" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SEmaint)
+"cdc" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cdd" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/storage/tech)
"cde" = (/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/storage/tech)
"cdf" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance{name = "Technical Storage"; req_access_txt = "23"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/storage/tech)
"cdg" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/storage/tech)
-"cdh" = (/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/engineering{dir = 2; icon_state = "eng_closed"; name = "Starboard Substation and Air Hookup"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/starboard)
-"cdi" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/starboard)
+"cdh" = (/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/engineering{dir = 2; icon_state = "eng_closed"; name = "Starboard Substation and Air Hookup"},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/east)
+"cdi" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/engine/substation/east)
"cdj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/quartermaster/refinery)
"cdk" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/quartermaster/refinery)
"cdl" = (/obj/decal/cleanable/cobweb,/obj/decal/tile_edge/stripe/big{icon_state = "bigstripe-edge"; dir = 8},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/quartermaster/refinery)
@@ -5590,17 +5590,17 @@
"cdz" = (/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"cdA" = (/turf/simulated/floor/plating,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/disposal)
"cdB" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/space,/area)
-"cdC" = (/obj/disposalpipe/switch_junction/left/east{mail_tag = "janitor"; name = "mail junction (janitor)"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"cdD" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"cdE" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cdF" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdG" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdH" = (/obj/cable{icon_state = "2-4"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdI" = (/obj/stool/chair{dir = 4},/obj/machinery/light/small,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdJ" = (/obj/machinery/power/data_terminal,/obj/machinery/computer3/terminal/zeta{dir = 8; setup_os_string = "ZETA_MAINFRAME"},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdK" = (/obj/table/auto,/obj/shrub/dead{dir = 8; name = "Dead plant"; pixel_y = 10},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdL" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"cdM" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
+"cdC" = (/obj/disposalpipe/switch_junction/left/east{mail_tag = "janitor"; name = "mail junction (janitor)"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"cdD" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"cdE" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cdF" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdG" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdH" = (/obj/cable{icon_state = "2-4"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdI" = (/obj/stool/chair{dir = 4},/obj/machinery/light/small,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdJ" = (/obj/machinery/power/data_terminal,/obj/machinery/computer3/terminal/zeta{dir = 8; setup_os_string = "ZETA_MAINFRAME"},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdK" = (/obj/table/auto,/obj/shrub/dead{dir = 8; name = "Dead plant"; pixel_y = 10},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdL" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"cdM" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
"cdN" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
"cdO" = (/obj/machinery/light/emergency{dir = 1; icon_state = "ebulb1"; pixel_y = 16},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/secondary/exit)
"cdP" = (/obj/machinery/computer/airbr{density = 0; icon = 'icons/obj/airtunnel.dmi'; id = "forestarboard"; pixel_x = 32; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
@@ -5624,10 +5624,10 @@
"ceh" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 1},/area/station/medical/medbay/lobby)
"cei" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/medical/medbay/lobby)
"cej" = (/obj/machinery/door/airlock/pyro/classic,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters_star)
-"cek" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/asmaint)
-"cel" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cem" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/asmaint)
-"cen" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cek" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/SEmaint)
+"cel" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cem" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/SEmaint)
+"cen" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"ceo" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/warehouse)
"cep" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/storage/warehouse)
"ceq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/warehouse)
@@ -5654,20 +5654,20 @@
"ceL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "caution_west"},/area/station/maintenance/disposal)
"ceM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "caution_east"},/area/station/maintenance/disposal)
"ceN" = (/obj/structure/girder,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/disposal)
-"ceO" = (/obj/decal/poster/wallsign/escape_right,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"ceP" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"ceQ" = (/obj/critter/mouse,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/light_switch/north,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
-"ceR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ceS" = (/obj/structure/girder,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
-"ceT" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ceU" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/item/storage/belt/utility,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ceV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"ceW" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"ceX" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"ceY" = (/obj/machinery/door/airlock/pyro/classic,/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ceZ" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"cfa" = (/obj/machinery/door/airlock/pyro/classic,/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cfb" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
+"ceO" = (/obj/decal/poster/wallsign/escape_right,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"ceP" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"ceQ" = (/obj/critter/mouse,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/light_switch/north,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
+"ceR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ceS" = (/obj/structure/girder,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
+"ceT" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ceU" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/obj/item/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/item/storage/belt/utility,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ceV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"ceW" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"ceX" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"ceY" = (/obj/machinery/door/airlock/pyro/classic,/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ceZ" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"cfa" = (/obj/machinery/door/airlock/pyro/classic,/obj/machinery/door/firedoor/pyro,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cfb" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
"cfc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/exit)
"cfd" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/exit)
"cfe" = (/obj/disposalpipe/segment/mail/bent/south,/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 1},/area/station/hallway/secondary/exit)
@@ -5705,15 +5705,15 @@
"cfK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"cfL" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/disposalpipe/junction{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/medical/medbay/lobby)
"cfM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/medical/medbay/lobby)
-"cfN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/storage/closet/fire,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "Starboard Crew Quarters"; dir = 1; name = "N APC"; noalerts = 0; pixel_y = 24; start_charge = 90},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfT" = (/obj/critter/roach,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfU" = (/obj/disposalpipe/junction{dir = 4},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc/autoname_east,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cfN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/storage/closet/fire,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "Starboard Crew Quarters"; dir = 1; name = "N APC"; noalerts = 0; pixel_y = 24; start_charge = 90},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfT" = (/obj/critter/roach,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfU" = (/obj/disposalpipe/junction{dir = 4},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc/autoname_east,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cfW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/storage/warehouse)
"cfX" = (/obj/reagent_dispensers/compostbin,/obj/decal/cleanable/cobweb,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/storage/warehouse)
"cfY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/portable_atmospherics/scrubber,/obj/item/device/t_scanner,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/storage/warehouse)
@@ -5743,16 +5743,16 @@
"cgw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/disposal)
"cgx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/maintenance/disposal)
"cgy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/pyro/classic{icon_state = "old_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/maintenance/disposal)
-"cgz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/maintenance/fsmaint)
-"cgA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgC" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cgI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/storage/closet/fire,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cgz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 8},/area/station/maintenance/NEmaint)
+"cgA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgC" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cgI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/storage/closet/fire,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cgJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hallway/secondary/exit)
"cgK" = (/obj/machinery/vending/fortune,/obj/decal/cleanable/cobweb,/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "arrival"; dir = 9},/area/station/hallway/secondary/exit)
"cgL" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "arrivalcorner"; dir = 1},/area/station/hallway/secondary/exit)
@@ -5794,15 +5794,15 @@
"chv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"chw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/medical/medbay/lobby)
"chx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/medbay/lobby)
-"chy" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-8"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"chy" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-8"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"chH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/storage/warehouse)
"chI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/reagent_dispensers/fueltank,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/storage/warehouse)
"chJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/storage/warehouse)
@@ -5828,22 +5828,22 @@
"cid" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"cie" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_we"},/area/station/maintenance/disposal)
"cif" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"cig" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
-"cih" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/fsmaint)
-"cii" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cij" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cik" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cil" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cim" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cin" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cio" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cip" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ciq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cir" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cis" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cit" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ciu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"civ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cig" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
+"cih" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/NEmaint)
+"cii" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cij" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cik" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cil" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cim" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cin" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cio" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cip" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ciq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cir" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cis" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cit" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ciu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"civ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ciw" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cix" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{dir = 8; icon_state = "arrival"},/area/station/hallway/secondary/exit)
"ciy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor,/area/station/hallway/secondary/exit)
@@ -5878,8 +5878,8 @@
"cjb" = (/obj/landmark/halloween,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"cjc" = (/turf/simulated/floor{icon_state = "bluecorner"},/area/station/medical/medbay/lobby)
"cjd" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "blue"; dir = 6},/area/station/medical/medbay/lobby)
-"cje" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/cable,/obj/machinery/power/apc{areastring = "Medbay Lobby"; dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cjf" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cje" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/cable,/obj/machinery/power/apc{areastring = "Medbay Lobby"; dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cjf" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cjg" = (/turf/simulated/wall/auto/supernorn,/area/station/medical/robotics)
"cjh" = (/obj/cable{icon_state = "1-2"},/turf/simulated/wall/auto/supernorn,/area/station/medical/robotics)
"cji" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/medical/robotics)
@@ -5887,7 +5887,7 @@
"cjk" = (/turf/simulated/wall/auto/supernorn,/area/station/science/bot_storage)
"cjl" = (/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/science/bot_storage)
"cjm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/science/bot_storage)
-"cjn" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cjn" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cjo" = (/turf/simulated/wall/auto/supernorn,/area/station/storage/warehouse)
"cjp" = (/obj/reagent_dispensers/heliumtank,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/storage/warehouse)
"cjq" = (/obj/critter/mouse,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/storage/warehouse)
@@ -5919,16 +5919,16 @@
"cjQ" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/janitor)
"cjR" = (/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/janitor)
"cjS" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/janitor)
-"cjT" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"cjU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold/north,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/fsmaint)
-"cjV" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/pyro,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cjT" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"cjU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold/north,/turf/simulated/wall/auto/supernorn,/area/station/maintenance/NEmaint)
+"cjV" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/pyro,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cjW" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/engine/elect)
"cjX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/wall/auto/supernorn,/area/station/engine/elect)
"cjY" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/engine/elect)
"cjZ" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor/plating,/area/station/engine/elect)
"cka" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/wall/auto/supernorn,/area/station/engine/elect)
-"ckb" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ckc" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"ckb" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ckc" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ckd" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{dir = 10; icon_state = "arrival"},/area/station/hallway/secondary/exit)
"cke" = (/obj/disposalpipe/switch_junction/right/south{mail_tag = "escape checkpoint"; name = "mail junction (escape checkpoint)"},/turf/simulated/floor{icon_state = "arrivalcorner"; dir = 8},/area/station/hallway/secondary/exit)
"ckf" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor,/area/station/hallway/secondary/exit)
@@ -6011,9 +6011,9 @@
"clE" = (/obj/storage/closet/janitor,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor)
"clF" = (/obj/shrub{icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; dir = 4},/obj/disposalpipe/segment,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor)
"clG" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/janitor)
-"clH" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"clI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"clJ" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"clH" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"clI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"clJ" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"clK" = (/turf/simulated/wall/auto/supernorn,/area/station/engine/elect)
"clL" = (/obj/machinery/vending/standard,/turf/simulated/floor/plating,/area/station/engine/elect)
"clM" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/storage/secure/closet/engineering/mechanic,/turf/simulated/floor/plating,/area/station/engine/elect)
@@ -6089,7 +6089,7 @@
"cne" = (/obj/disposalpipe/segment/mail/bent/west,/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor)
"cnf" = (/turf/simulated/floor/carpet{icon_state = "red2"; dir = 9},/area/station/janitor)
"cng" = (/obj/machinery/computer/security/wooden_tv,/obj/disposalpipe/segment,/turf/simulated/floor/carpet{icon_state = "red2"; dir = 5},/area/station/janitor)
-"cnh" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cnh" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cni" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = list(40); req_access_txt = "45"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/engine/elect)
"cnj" = (/turf/simulated/floor/plating,/area/station/engine/elect)
"cnk" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/engine/elect)
@@ -6134,8 +6134,8 @@
"cnX" = (/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/machinery/bot/guardbot,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
"cnY" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/grid{icon_state = "circuit-green"},/area/station/science/bot_storage)
"cnZ" = (/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock{autoeject = 1},/obj/machinery/bot/guardbot/ranger,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4; icon_state = "bulb1"; pixel_x = 12},/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"coa" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cob" = (/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/asmaint)
+"coa" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cob" = (/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"},/area/station/maintenance/SEmaint)
"coc" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/warehouse)
"cod" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"coe" = (/obj/decal/cleanable/oil,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
@@ -6166,8 +6166,8 @@
"coD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "arcade"},/area/station/janitor)
"coE" = (/turf/simulated/floor/carpet{icon_state = "red2"; dir = 8},/area/station/janitor)
"coF" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "pink"; icon_state = "bedsheet-pink"},/obj/disposalpipe/segment,/turf/simulated/floor/carpet{icon_state = "red2"; dir = 4},/area/station/janitor)
-"coG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"coH" = (/obj/disposalpipe/segment,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Mechanic's Lab"; dir = 4; name = "Mechanic's Lab APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"coG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"coH" = (/obj/disposalpipe/segment,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Mechanic's Lab"; dir = 4; name = "Mechanic's Lab APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"coI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor/plating,/area/station/engine/elect)
"coJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_east"},/area/station/engine/elect)
"coK" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/engine/elect)
@@ -6201,11 +6201,11 @@
"cpm" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "caution_north"},/area/station/science/bot_storage)
"cpn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_north"},/area/station/science/bot_storage)
"cpo" = (/obj/plasticflaps,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"cpp" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cpq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cpr" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cps" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cpt" = (/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/storage/crate,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cpp" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cpq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cpr" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cps" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cpt" = (/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/item/chair/folded,/obj/storage/crate,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cpu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/warehouse)
"cpv" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"cpw" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/southeast,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/warehouse)
@@ -6286,8 +6286,8 @@
"cqT" = (/obj/table/reinforced/auto,/obj/machinery/cell_charger,/obj/item/cell/charged,/obj/item/cell/charged,/obj/item/cell/supercell/charged,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor,/area/station/science/bot_storage)
"cqU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/supernorn,/area/station/science/bot_storage)
"cqV" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/science/bot_storage)
-"cqW" = (/obj/reagent_dispensers/foamtank,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cqX" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cqW" = (/obj/reagent_dispensers/foamtank,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cqX" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cqY" = (/obj/item/wirecutters,/obj/item/device/flash,/obj/storage/crate,/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/item/reagent_containers/food/drinks/bottle/hobo_wine,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"cqZ" = (/obj/decal/cleanable/generic,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"cra" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/storage/warehouse)
@@ -6312,7 +6312,7 @@
"crt" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/janitor)
"cru" = (/obj/machinery/bot/cleanbot,/turf/simulated/floor{icon_state = "bot"},/area/station/janitor)
"crv" = (/obj/disposalpipe/trunk{dir = 1},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bot"},/area/station/janitor)
-"crw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"crw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"crx" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/engine/elect)
"cry" = (/obj/machinery/manufacturer/mechanic,/obj/machinery/light,/turf/simulated/floor/plating,/area/station/engine/elect)
"crz" = (/obj/machinery/rkit,/obj/item/electronics/scanner,/turf/simulated/floor/plating,/area/station/engine/elect)
@@ -6357,8 +6357,8 @@
"csm" = (/turf/simulated/floor,/area/station/science/bot_storage)
"csn" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/science/bot_storage)
"cso" = (/obj/decal/poster/wallsign/stencil/right/m{pixel_x = 15},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/science/bot_storage)
-"csp" = (/obj/decal/poster/wallsign/stencil/right/s{pixel_x = 21},/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 8},/obj/decal/poster/wallsign/stencil/left/e,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/asmaint)
-"csq" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = 1},/obj/decal/poster/wallsign/stencil/right/i,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/asmaint)
+"csp" = (/obj/decal/poster/wallsign/stencil/right/s{pixel_x = 21},/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 8},/obj/decal/poster/wallsign/stencil/left/e,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SEmaint)
+"csq" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = 1},/obj/decal/poster/wallsign/stencil/right/i,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/SEmaint)
"csr" = (/obj/machinery/bot/floorbot,/obj/storage/crate,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"css" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"cst" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/market)
@@ -6380,7 +6380,7 @@
"csJ" = (/obj/decal/poster/wallsign/stencil/left/e{pixel_x = 1},/obj/decal/poster/wallsign/stencil/right/s{pixel_x = 14},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor)
"csK" = (/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -6},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 7},/obj/decal/poster/wallsign/stencil/right/p{pixel_x = 18},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor)
"csL" = (/obj/decal/poster/wallsign/stencil/left/e{pixel_x = -1},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/janitor)
-"csM" = (/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"csM" = (/obj/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"csN" = (/obj/table/auto,/obj/item/storage/toolbox/emergency,/obj/item/electronics/soldering,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/disk/data/cartridge/diagnostics,/obj/item/storage/wall/random,/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/engine/elect)
"csO" = (/obj/table/auto,/obj/item/storage/toolbox/mechanical,/obj/item/storage/box/lightbox/tubes,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/deconstructor,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/engine/elect)
"csP" = (/obj/shrub,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/engine/elect)
@@ -6890,9 +6890,9 @@
"cCz" = (/obj/table/reinforced/auto,/obj/item/device/radio/intercom/cargo{pixel_y = 0},/obj/machinery/door/firedoor/pyro,/turf/simulated/floor/carpet{icon_state = "red2"; dir = 4},/area/station/quartermaster/office)
"cCA" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/quartermaster/office)
"cCB" = (/turf/simulated/wall/auto/supernorn{icon_state = "11"},/area/station/quartermaster/office)
-"cCC" = (/obj/machinery/mass_driver{dir = 1; drive_range = 8; id = "market_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cCD" = (/turf/simulated/wall/auto/supernorn{icon_state = "3"},/area/station/maintenance/fsmaint)
-"cCE" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cCC" = (/obj/machinery/mass_driver{dir = 1; drive_range = 8; id = "market_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cCD" = (/turf/simulated/wall/auto/supernorn{icon_state = "3"},/area/station/maintenance/NEmaint)
+"cCE" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cCF" = (/obj/cable{icon_state = "1-2"},/turf/simulated/wall/auto/supernorn,/area/station/hallway/secondary/exit)
"cCG" = (/turf/simulated/wall/auto/supernorn,/area/station/mining)
"cCH" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/engineering{name = "Mining"; req_access = list(50); req_access_txt = null},/turf/simulated/floor{icon_state = "delivery"},/area/station/mining)
@@ -6967,8 +6967,8 @@
"cDY" = (/turf/simulated/floor/plating,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/quartermaster/office)
"cDZ" = (/obj/machinery/portable_reclaimer,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/quartermaster/office)
"cEa" = (/turf/simulated/wall/auto/supernorn{icon_state = "3"},/area/station/quartermaster/office)
-"cEb" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cEc" = (/obj/storage/closet/fire,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cEb" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cEc" = (/obj/storage/closet/fire,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cEd" = (/obj/storage/secure/closet/engineering/mining,/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/mining)
"cEe" = (/obj/storage/secure/closet/engineering/mining,/obj/decal/poster/wallsign/poster_nt{pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/mining)
"cEf" = (/obj/storage/secure/closet/engineering/mining,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/mining)
@@ -7023,9 +7023,9 @@
"cFc" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/cloner)
"cFd" = (/obj/monkeyplant,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 5},/area/station/medical/medbay/cloner)
"cFe" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/medical/medbay/cloner)
-"cFf" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/starboard)
-"cFg" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 17},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/starboard)
-"cFh" = (/obj/decal/poster/wallsign/stencil/right/o{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/g,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/starboard)
+"cFf" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/east)
+"cFg" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 17},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/east)
+"cFh" = (/obj/decal/poster/wallsign/stencil/right/o{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/g,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/east)
"cFi" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"cFj" = (/obj/decal/cleanable/rust,/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/crew_quarters/market)
"cFk" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/quartermaster/office)
@@ -7043,10 +7043,10 @@
"cFw" = (/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/office)
"cFx" = (/obj/machinery/light/small{dir = 8; icon_state = "bulb1"; pixel_x = -12},/turf/simulated/floor/plating,/area/station/quartermaster/office)
"cFy" = (/obj/storage/crate,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/quartermaster/office)
-"cFz" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cFA" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cFB" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cFC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cFz" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cFA" = (/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cFB" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cFC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cFD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/mining)
"cFE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/mining)
"cFF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/mining)
@@ -7103,12 +7103,12 @@
"cGE" = (/obj/machinery/computer/cloning,/obj/item/paper/Cloning,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; pixel_y = 20; tag = ""},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "bot"},/area/station/medical/medbay/cloner)
"cGF" = (/obj/machinery/clonegrinder,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor{icon_state = "bot"},/area/station/medical/medbay/cloner)
"cGG" = (/turf/simulated/wall/auto/supernorn,/area/station/medical/medbay/cloner)
-"cGH" = (/obj/decal/cleanable/cobweb,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Cloning"; dir = 8; name = "Cloning APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cGI" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cGJ" = (/obj/machinery/power/apc/autoname_north,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cGK" = (/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cGL" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/starboard)
-"cGM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cGH" = (/obj/decal/cleanable/cobweb,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Cloning"; dir = 8; name = "Cloning APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cGI" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cGJ" = (/obj/machinery/power/apc/autoname_north,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cGK" = (/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cGL" = (/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/east)
+"cGM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cGN" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Public Market"; dir = 4; name = "Public Market APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/crew_quarters/market)
"cGO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/quartermaster/office)
"cGP" = (/turf/simulated/floor,/area/station/quartermaster/office)
@@ -7119,7 +7119,7 @@
"cGU" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cGV" = (/turf/simulated/floor/plating,/area/station/quartermaster/office)
"cGW" = (/obj/storage/crate,/turf/simulated/floor/plating,/area/station/quartermaster/office)
-"cGX" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cGX" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cGY" = (/obj/rack,/obj/item/clothing/mask/breath,/obj/item/tank/jetpack,/obj/item/clothing/suit/space/engineer,/obj/item/clothing/head/helmet/space/engineer,/obj/item/device/gps,/obj/item/storage/belt/mining,/turf/simulated/floor{icon_state = "delivery"},/area/station/mining)
"cGZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/mining)
"cHa" = (/obj/machinery/loom,/turf/simulated/floor/plating,/area/station/mining)
@@ -7169,13 +7169,13 @@
"cHS" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/cloner)
"cHT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "bluewhite"; dir = 5},/area/station/medical/medbay/cloner)
"cHU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/auto/supernorn,/area/station/medical/medbay/cloner)
-"cHV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cHW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cHX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cHY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cHZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/starboard)
-"cIa" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cIb" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/storage/closet/emergency,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/starboard)
+"cHV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cHW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cHX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cHY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cHZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/east)
+"cIa" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cIb" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/storage/closet/emergency,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/east)
"cIc" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/plasticflaps,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/office)
"cId" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/light,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/office)
"cIe" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/office)
@@ -7184,10 +7184,10 @@
"cIh" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/office)
"cIi" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/disposaloutlet{dir = 8; mailgroup = "cargo"; mailgroup2 = "mining"; message = "Ore delivery chute (cargo) activated."; name = "ore chute outlet (cargo)"},/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/office)
"cIj" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/quartermaster/office)
-"cIk" = (/obj/machinery/mass_driver{drive_range = 8; id = "cargo_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cIl" = (/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 17},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"cIm" = (/obj/decal/poster/wallsign/stencil/left/o{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"cIn" = (/obj/decal/poster/wallsign/stencil/left/k{pixel_x = -10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
+"cIk" = (/obj/machinery/mass_driver{drive_range = 8; id = "cargo_down"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cIl" = (/obj/decal/poster/wallsign/stencil/right/d{pixel_x = 17},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"cIm" = (/obj/decal/poster/wallsign/stencil/left/o{pixel_x = -2},/obj/decal/poster/wallsign/stencil/right/c{pixel_x = 10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"cIn" = (/obj/decal/poster/wallsign/stencil/left/k{pixel_x = -10},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
"cIo" = (/obj/table/reinforced/auto,/obj/machinery/recharger,/obj/item/hand_labeler,/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/mining)
"cIp" = (/obj/stool/chair/yellow{dir = 8},/obj/landmark/start{name = "Miner"},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"},/area/station/mining)
"cIq" = (/obj/stool/chair/yellow{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Miner"},/turf/simulated/floor{icon_state = "yellowcorner"},/area/station/mining)
@@ -7247,10 +7247,10 @@
"cJs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/cloner)
"cJt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbay/cloner)
"cJu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = null; req_access_txt = "5"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/medical/medbay/cloner)
-"cJv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cJw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cJx" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/starboard)
-"cJy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cJv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cJw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cJx" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/east)
+"cJy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cJz" = (/obj/machinery/manufacturer/medical,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cJA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/manufacturer/robotics,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cJB" = (/obj/machinery/manufacturer/hangar,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
@@ -7261,12 +7261,12 @@
"cJG" = (/obj/machinery/manufacturer/general,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cJH" = (/obj/machinery/manufacturer/gas,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cJI" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/supernorn,/area/station/quartermaster/office)
-"cJJ" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "cargo_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cJK" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn{icon_state = "13"},/area/station/maintenance/fsmaint)
-"cJL" = (/obj/machinery/mass_driver{drive_range = 8; id = "cargo_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "cargo_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cJM" = (/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/obj/storage/crate,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cJN" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cJO" = (/turf/simulated/floor/plating,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/fsmaint)
+"cJJ" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "cargo_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cJK" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn{icon_state = "13"},/area/station/maintenance/NEmaint)
+"cJL" = (/obj/machinery/mass_driver{drive_range = 8; id = "cargo_down"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "cargo_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cJM" = (/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/obj/storage/crate,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cJN" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cJO" = (/turf/simulated/floor/plating,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/NEmaint)
"cJP" = (/obj/workbench,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/mining)
"cJQ" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/computer/security/wooden_tv/small{pixel_y = 8},/turf/simulated/floor,/area/station/mining)
"cJR" = (/turf/simulated/floor/plating,/area/station/mining)
@@ -7320,12 +7320,12 @@
"cKN" = (/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/cloner)
"cKO" = (/obj/machinery/clonepod,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/cloner)
"cKP" = (/obj/table/auto,/obj/item/storage/firstaid/brain,/obj/item/hand_labeler,/turf/simulated/floor{icon_state = "bluewhite"; dir = 6},/area/station/medical/medbay/cloner)
-"cKQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cKR" = (/obj/structure/girder,/obj/item/storage/pill_bottle/cyberpunk{layer = 2.4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cKS" = (/obj/decal/cleanable/gangtag{icon_state = "gangtag19"; layer = 4; pixel_x = 0; pixel_y = 32},/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/starboard)
-"cKT" = (/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/decal/cleanable/dirt,/obj/item/reagent_containers/syringe/krokodil,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cKU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cKV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cKQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cKR" = (/obj/structure/girder,/obj/item/storage/pill_bottle/cyberpunk{layer = 2.4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cKS" = (/obj/decal/cleanable/gangtag{icon_state = "gangtag19"; layer = 4; pixel_x = 0; pixel_y = 32},/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/east)
+"cKT" = (/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/decal/cleanable/dirt,/obj/item/reagent_containers/syringe/krokodil,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cKU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cKV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cKW" = (/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access_txt = "31"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cKX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/quartermaster/office)
"cKY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/quartermaster/office)
@@ -7342,12 +7342,12 @@
"cLj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/wall/medical{dir = 1; icon_state = "minimed"; pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/quartermaster/office)
"cLk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/wall/fire{dir = 1; icon_state = "minifire"; pixel_y = 32},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/station/quartermaster/office)
"cLl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/pyro/glass{dir = 4; name = "Cargo Bay"; req_access_txt = "31"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
-"cLm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/fsmaint)
-"cLn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/fsmaint)
-"cLo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/fsmaint)
-"cLp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cLq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cLr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cLm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/NEmaint)
+"cLn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/NEmaint)
+"cLo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/maintenance/NEmaint)
+"cLp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cLq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cLr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cLs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/engineering{dir = 4; icon_state = "eng_closed"; name = "Mining"; req_access = list(50); req_access_txt = null},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/mining)
"cLt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/station/mining)
"cLu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/station/mining)
@@ -7404,11 +7404,11 @@
"cMt" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/wall/auto/supernorn,/area/station/medical/research{name = "Genetic Research"})
"cMu" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/medical/research{name = "Genetic Research"})
"cMv" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/medical/research{name = "Genetic Research"})
-"cMw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cMx" = (/obj/decal/cleanable/dirt,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/starboard)
-"cMy" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cMz" = (/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/landmark/halloween,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cMA" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cMw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cMx" = (/obj/decal/cleanable/dirt,/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/east)
+"cMy" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cMz" = (/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/landmark/halloween,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cMA" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cMB" = (/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access_txt = "31"},/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
"cMC" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/quartermaster/office)
"cMD" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/quartermaster/office)
@@ -7420,9 +7420,9 @@
"cMJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/quartermaster/office)
"cMK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/quartermaster/office)
"cML" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/quartermaster/office)
-"cMM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/fsmaint)
-"cMN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cMO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/rack,/obj/rack,/obj/item/storage/box/mousetraps,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cMM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/maintenance/NEmaint)
+"cMN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cMO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/rack,/obj/rack,/obj/item/storage/box/mousetraps,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cMP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{dir = 10; icon_state = "yellow"},/area/station/mining)
"cMQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "yellow"},/area/station/mining)
"cMR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 6; icon_state = "yellow"},/area/station/mining)
@@ -7449,9 +7449,9 @@
"cNm" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/science)
"cNn" = (/obj/submachine/chef_sink/chem_sink{dir = 4; pixel_x = -8},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/chemistry)
"cNo" = (/obj/machinery/shower{dir = 4; icon_state = "showerhead"; pixel_x = 8},/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/chemistry)
-"cNp" = (/turf/simulated/wall/auto/supernorn,/area/station/artifact)
-"cNq" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{req_access = list(33); req_access_txt = null},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"cNr" = (/obj/window/auto/reinforced,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "chemistry"; name = "Chemistry Privacy Shutters"; opacity = 0},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/artifact)
+"cNp" = (/turf/simulated/wall/auto/supernorn,/area/station/science/artifact)
+"cNq" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{req_access = list(33); req_access_txt = null},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"cNr" = (/obj/window/auto/reinforced,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "chemistry"; name = "Chemistry Privacy Shutters"; opacity = 0},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/science/artifact)
"cNs" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/medical/medbay)
"cNt" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "delivery"},/area/station/medical/medbay)
"cNu" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/medical/medbay)
@@ -7481,12 +7481,12 @@
"cNS" = (/obj/disposalpipe/trunk/mail/west,/obj/machinery/disposal/mail/autoname/medbay/genetics,/turf/simulated/floor{icon_state = "redwhite"; dir = 1},/area/station/medical/research{name = "Genetic Research"})
"cNT" = (/obj/machinery/power/data_terminal,/obj/table/auto,/obj/cable,/obj/machinery/networked/printer{name = "Printer - Genetics"; pixel_y = 5; print_id = "Genetics"},/turf/simulated/floor{icon_state = "redwhite"; dir = 1},/area/station/medical/research{name = "Genetic Research"})
"cNU" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/obj/item/storage/wall/medical{dir = 1; icon_state = "minimed"; pixel_y = 32},/turf/simulated/floor{icon_state = "redwhite"; dir = 5},/area/station/medical/research{name = "Genetic Research"})
-"cNV" = (/obj/machinery/power/apc{areastring = "Genetic Research"; dir = 8; name = "Genetic Research APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cNW" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cNX" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/starboard)
-"cNY" = (/obj/table/auto,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cNZ" = (/obj/machinery/power/apc{areastring = "Auxillary Storage"; dir = 8; name = "Auxillary Storage APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cOa" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cNV" = (/obj/machinery/power/apc{areastring = "Genetic Research"; dir = 8; name = "Genetic Research APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cNW" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cNX" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/east)
+"cNY" = (/obj/table/auto,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cNZ" = (/obj/machinery/power/apc{areastring = "Auxillary Storage"; dir = 8; name = "Auxillary Storage APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cOa" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cOb" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/quartermaster/office)
"cOc" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor{dir = 10; icon_state = "yellow"},/area/station/quartermaster/office)
"cOd" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor{icon_state = "yellow"},/area/station/quartermaster/office)
@@ -7503,8 +7503,8 @@
"cOo" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"},/area/station/quartermaster/office)
"cOp" = (/obj/machinery/navbeacon/mule/QM2_north/west,/obj/decal/mule/beacon,/turf/simulated/floor{icon_state = "yellow"},/area/station/quartermaster/office)
"cOq" = (/obj/storage/cart,/obj/machinery/firealarm{dir = 4; pixel_x = 26; pixel_y = 1},/turf/simulated/floor{dir = 6; icon_state = "yellow"},/area/station/quartermaster/office)
-"cOr" = (/obj/machinery/mass_driver{dir = 1; drive_range = 8; id = "cargo_up"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "cargo_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cOs" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "cargo_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cOr" = (/obj/machinery/mass_driver{dir = 1; drive_range = 8; id = "cargo_up"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "cargo_up"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cOs" = (/obj/machinery/launcher_loader/south,/obj/machinery/door/poddoor/pyro{id = "cargo_down"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cOt" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/mining)
"cOu" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 5; icon_state = "pdoor0"; id = "mining_shutters"; name = "Mining Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/station/mining)
"cOv" = (/obj/table/reinforced/auto,/obj/machinery/recharger,/turf/simulated/floor{icon_state = "fullyellow"},/area/station/mining)
@@ -7527,11 +7527,11 @@
"cOM" = (/obj/table/reinforced/auto,/obj/machinery/sparker{id = "chem"; layer = 7; name = "Mounted Igniter"; pixel_x = -24; pixel_y = 0},/obj/item/storage/box/beakerbox,/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/chemistry)
"cON" = (/obj/table/reinforced/auto,/obj/machinery/light/lamp,/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/chemistry)
"cOO" = (/obj/table/reinforced/auto,/obj/item/clothing/mask/gas,/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/chemistry)
-"cOP" = (/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/item/device/radio/intercom/science,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/artifact)
-"cOQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"cOR" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"cOS" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 5},/area/station/artifact)
-"cOT" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/artifact_console{desc = "It just sorta showed up in a giant box of test equipment."; name = "giant mystery science doodad"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
+"cOP" = (/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/item/device/radio/intercom/science,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/science/artifact)
+"cOQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"cOR" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"cOS" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 5},/area/station/science/artifact)
+"cOT" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/artifact_console{desc = "It just sorta showed up in a giant box of test equipment."; name = "giant mystery science doodad"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
"cOU" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 8},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
"cOV" = (/obj/stool/chair/couch{icon_state = "chair_couch-brown"; dir = 4},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 9},/area/station/medical/medbay)
"cOW" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay)
@@ -7564,8 +7564,8 @@
"cPx" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
"cPy" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
"cPz" = (/obj/machinery/door/firedoor/pyro,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/pyro/maintenance{req_access_txt = "31"},/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
-"cPA" = (/obj/machinery/mass_driver{dir = 1; drive_range = 8; id = "cargo_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cPB" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/fsmaint)
+"cPA" = (/obj/machinery/mass_driver{dir = 1; drive_range = 8; id = "cargo_up"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cPB" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/NEmaint)
"cPC" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 10; icon_state = "pdoor0"; id = "mining_shutters"; name = "Mining Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/station/mining)
"cPD" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; icon_state = "pdoor0"; id = "mining_shutters"; name = "Mining Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/station/mining)
"cPE" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 6; icon_state = "pdoor0"; id = "mining_shutters"; name = "Mining Blast Shutters"; opacity = 0},/turf/simulated/floor,/area/station/mining)
@@ -7580,11 +7580,11 @@
"cPN" = (/turf/simulated/floor/plating,/area/station/science/storage)
"cPO" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/science/storage)
"cPP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/landmark/halloween,/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/science)
-"cPQ" = (/obj/machinery/computer/material{dir = 4},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/artifact)
-"cPR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cPS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cPT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/artifact)
-"cPU" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "delivery"},/area/station/artifact)
+"cPQ" = (/obj/machinery/computer/material{dir = 4},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/science/artifact)
+"cPR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cPS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cPT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/science/artifact)
+"cPU" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "delivery"},/area/station/science/artifact)
"cPV" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/light/emergency{dir = 4; icon_state = "ebulb1"; pixel_x = 16},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbay)
"cPW" = (/obj/machinery/light/emergency{dir = 8; icon_state = "ebulb1"; pixel_x = -16},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "redwhite"; dir = 8},/area/station/medical/medbay/surgery)
"cPX" = (/obj/iv_stand,/obj/item/reagent_containers/iv_drip/saline,/turf/simulated/floor{icon_state = "bot_white"},/area/station/medical/medbay/surgery)
@@ -7603,8 +7603,8 @@
"cQk" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 1},/area/station/medical/research{name = "Genetic Research"})
"cQl" = (/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 5},/area/station/medical/research{name = "Genetic Research"})
"cQm" = (/obj/stool/chair{dir = 8},/obj/landmark/start{name = "Geneticist"},/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "redwhite"; dir = 4},/area/station/medical/research{name = "Genetic Research"})
-"cQn" = (/obj/table/auto,/obj/item/pen,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/obj/item/clothing/head/helmet/hardhat,/obj/item/staple_gun,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cQo" = (/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/decal/cleanable/cobweb,/obj/machinery/computer3/terminal/zeta,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
+"cQn" = (/obj/table/auto,/obj/item/pen,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/obj/item/clothing/head/helmet/hardhat,/obj/item/staple_gun,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cQo" = (/obj/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/decal/cleanable/cobweb,/obj/machinery/computer3/terminal/zeta,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
"cQp" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cQq" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "Stairs_alone"; dir = 2},/area/station/storage/auxillary)
"cQr" = (/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/storage/crate,/obj/item/storage/wall/random,/obj/machinery/light_switch/east,/turf/simulated/floor{icon_state = "floorscorched2"},/area/station/storage/auxillary)
@@ -7619,14 +7619,14 @@
"cQA" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/hangar/qm)
"cQB" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external{req_access_txt = "31"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hangar/qm)
"cQC" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor/pyro{id = "cargodock_out"; layer = 4; name = "Cargo Routing Door"},/obj/plasticflaps{layer = 3},/turf/simulated/floor/plating,/area/station/hangar/qm)
-"cQD" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Cargo Dock"; dir = 8; name = "Cargo Dock APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
-"cQE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
-"cQF" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cQG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cQH" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cQI" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/fsmaint)
-"cQJ" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/fsmaint)
-"cQK" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/fsmaint)
+"cQD" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Cargo Dock"; dir = 8; name = "Cargo Dock APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
+"cQE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
+"cQF" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cQG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cQH" = (/obj/machinery/light{dir = 1; icon_state = "tube1"; layer = 9.1; pixel_y = 21},/obj/machinery/light_switch/north,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cQI" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/NEmaint)
+"cQJ" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/NEmaint)
+"cQK" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/NEmaint)
"cQL" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 9; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/mining/magnet)
"cQM" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/mining/magnet)
"cQN" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 5; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/mining/magnet)
@@ -7649,14 +7649,14 @@
"cRe" = (/obj/machinery/light_switch/west,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/science)
"cRf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "purplecorner"; dir = 8},/area/station/science)
"cRg" = (/obj/storage/closet/office,/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "purple"; dir = 5},/area/station/science)
-"cRh" = (/obj/shrub,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/landmark{name = "kudzustart"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/artifact)
-"cRi" = (/obj/machinery/matscanner,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"cRj" = (/obj/table/reinforced/auto,/obj/deskclutter,/obj/item/storage/toolbox/emergency,/obj/machinery/light_switch/north,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"cRk" = (/obj/machinery/computer3/terminal/zeta{dir = 4; setup_os_string = "ZETA_MAINFRAME"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "purplewhitecorner"; dir = 1},/area/station/artifact)
-"cRl" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cRm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cRn" = (/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/artifact)
-"cRo" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/submachine/cargopad/artlab,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
+"cRh" = (/obj/shrub,/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/obj/landmark{name = "kudzustart"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/science/artifact)
+"cRi" = (/obj/machinery/matscanner,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"cRj" = (/obj/table/reinforced/auto,/obj/deskclutter,/obj/item/storage/toolbox/emergency,/obj/machinery/light_switch/north,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"cRk" = (/obj/machinery/computer3/terminal/zeta{dir = 4; setup_os_string = "ZETA_MAINFRAME"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "purplewhitecorner"; dir = 1},/area/station/science/artifact)
+"cRl" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cRm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cRn" = (/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/science/artifact)
+"cRo" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/obj/submachine/cargopad/artlab,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
"cRp" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
"cRq" = (/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 2},/area/station/medical/medbay)
"cRr" = (/obj/machinery/atmospherics/pipe/manifold/west,/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 4},/area/station/medical/medbay)
@@ -7683,7 +7683,7 @@
"cRM" = (/obj/table/auto,/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/storage/pill_bottle/mutadone,/obj/item/hand_labeler,/obj/item/storage/firstaid/brain,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 2},/area/station/medical/research{name = "Genetic Research"})
"cRN" = (/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 4},/area/station/medical/research{name = "Genetic Research"})
"cRO" = (/obj/machinery/genetics_scanner,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor{icon_state = "redwhite"; dir = 4},/area/station/medical/research{name = "Genetic Research"})
-"cRP" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
+"cRP" = (/obj/stool/chair{icon_state = "chair"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
"cRQ" = (/obj/storage/cart,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cRR" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cRS" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
@@ -7694,8 +7694,8 @@
"cRX" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/hangar/qm)
"cRY" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor{icon_state = "caution_we"},/area/station/hangar/qm)
"cRZ" = (/obj/machinery/cargo_router{default_direction = 2; destinations = list("Arrivals" = 4, "Catering" = 4, "Disposals" = 4, "Engine" = 4, "Escape" = 4, "MedSci" = 4, "Security" = 4, "QM" = 2)},/turf/simulated/floor/plating,/area/station/hangar/qm)
-"cSa" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cSb" = (/obj/machinery/cargo_router{default_direction = 4; destinations = list("QM" = 2, "Export" = 2, "MedSci" = 2, "Escape" = 2)},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cSa" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cSb" = (/obj/machinery/cargo_router{default_direction = 4; destinations = list("QM" = 2, "Export" = 2, "MedSci" = 2, "Escape" = 2)},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cSc" = (/turf/space,/area/shuttle/mining/station)
"cSd" = (/turf/space,/obj/grille/catwalk,/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/turf/simulated/floor/plating/airless/catwalk,/area/mining/magnet)
"cSe" = (/turf/space,/area/mining/magnet)
@@ -7714,11 +7714,11 @@
"cSr" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/obj/disposalpipe/segment/mail/vertical,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/station/science)
"cSs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/horizontal,/turf/simulated/floor,/area/station/science)
"cSt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/northwest,/turf/simulated/floor{icon_state = "purple"; dir = 4},/area/station/science)
-"cSu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/medical{dir = 4; icon_state = "research_closed"; name = "Artifact Lab"; req_access_txt = "24"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"cSv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/artifact)
-"cSw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cSx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cSy" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "delivery"},/area/station/artifact)
+"cSu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/medical{dir = 4; icon_state = "research_closed"; name = "Artifact Lab"; req_access_txt = "24"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"cSv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/science/artifact)
+"cSw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cSx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cSy" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "delivery"},/area/station/science/artifact)
"cSz" = (/obj/machinery/atmospherics/unary/cryo_cell{dir = 2; pipe_direction = 8},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
"cSA" = (/obj/machinery/atmospherics/pipe/simple/color_pipe/cyan_pipe/vertical,/turf/simulated/floor{icon_state = "bluewhite"; dir = 8},/area/station/medical/medbay)
"cSB" = (/obj/machinery/light/emergency{dir = 4; icon_state = "ebulb1"; pixel_x = 16},/obj/submachine/chef_sink/chem_sink{dir = 8; pixel_x = 8},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbay)
@@ -7738,16 +7738,16 @@
"cSP" = (/obj/item/storage/firstaid/toxin,/obj/item/storage/toolbox/emergency,/obj/item/hand_labeler,/obj/table/auto,/obj/machinery/light/lamp,/obj/item/clothing/glasses/spectro,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/carpet{icon_state = "blue1"; dir = 2},/area/station/medical/research{name = "Genetic Research"})
"cSQ" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 4},/obj/landmark/start{name = "Geneticist"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research{name = "Genetic Research"})
"cSR" = (/obj/machinery/computer/genetics{dir = 8},/turf/simulated/floor{icon_state = "redwhite"; dir = 4},/area/station/medical/research{name = "Genetic Research"})
-"cSS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cST" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cSU" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cSS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cST" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cSU" = (/obj/machinery/light/small{dir = 4; pixel_x = 12},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cSV" = (/obj/machinery/light/small{dir = 8; pixel_x = -12},/obj/storage/crate,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/glowstick,/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cSW" = (/turf/simulated/floor/shuttlebay,/area/station/hangar/qm)
"cSX" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/hangar/qm)
"cSY" = (/turf/simulated/floor/plating,/area/station/hangar/qm)
"cSZ" = (/turf/simulated/floor{icon_state = "caution_we"},/area/station/hangar/qm)
"cTa" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/simulated/floor/plating,/area/station/hangar/qm)
-"cTb" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
+"cTb" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
"cTc" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/obj/machinery/light/small,/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/mining/magnet)
"cTd" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/obj/lattice{icon_state = "lattice-dir"; dir = 10},/obj/machinery/light/runway_light/delay3,/turf/space,/area)
"cTe" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/obj/machinery/meter,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/science/storage)
@@ -7756,12 +7756,12 @@
"cTh" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "purple"; dir = 10},/area/station/science)
"cTi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "purple"},/area/station/science)
"cTj" = (/obj/shrub{icon_state = "shrub"; dir = 1},/turf/simulated/floor{icon_state = "purple"; dir = 6},/area/station/science)
-"cTk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/artifact)
-"cTl" = (/turf/simulated/floor{dir = 2; icon_state = "purplewhite"},/area/station/artifact)
-"cTm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "purplewhite"},/area/station/artifact)
-"cTn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 2; icon_state = "purplewhite"},/area/station/artifact)
-"cTo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/artifact)
-"cTp" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
+"cTk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -1},/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/science/artifact)
+"cTl" = (/turf/simulated/floor{dir = 2; icon_state = "purplewhite"},/area/station/science/artifact)
+"cTm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "purplewhite"},/area/station/science/artifact)
+"cTn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 2; icon_state = "purplewhite"},/area/station/science/artifact)
+"cTo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/science/artifact)
+"cTp" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
"cTq" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 5},/obj/table/auto,/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 4; pixel_y = 5},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
"cTr" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 10},/area/station/medical/medbay)
"cTs" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor{icon_state = "bluewhite"; dir = 6},/area/station/medical/medbay)
@@ -7782,8 +7782,8 @@
"cTH" = (/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 2},/area/station/medical/research{name = "Genetic Research"})
"cTI" = (/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 6},/area/station/medical/research{name = "Genetic Research"})
"cTJ" = (/obj/table/auto,/obj/item/clipboard,/obj/item/storage/pill_bottle/mutadone,/obj/machinery/light{dir = 4; icon_state = "tube1"; layer = 9.1; pixel_x = 10},/turf/simulated/floor{icon_state = "redwhite"; dir = 4},/area/station/medical/research{name = "Genetic Research"})
-"cTK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cTL" = (/obj/table/auto,/obj/random_item_spawner/med_tool,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/starboard)
+"cTK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cTL" = (/obj/table/auto,/obj/random_item_spawner/med_tool,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/east)
"cTM" = (/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cTN" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cTO" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
@@ -7795,9 +7795,9 @@
"cTU" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor{icon_state = "caution_we"},/area/station/hangar/qm)
"cTV" = (/obj/machinery/cargo_router{default_direction = 2; destinations = list("QM" = 8)},/turf/simulated/floor/plating,/area/station/hangar/qm)
"cTW" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/plasticflaps,/turf/simulated/floor/plating,/area/station/hangar/qm)
-"cTX" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cTY" = (/obj/machinery/cargo_router{destinations = list("QM" = 8, "Export" = 8)},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cTZ" = (/obj/machinery/cargo_router{default_direction = 8; destinations = list("MedSci" = 2, "Escape" = 2)},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"cTX" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cTY" = (/obj/machinery/cargo_router{destinations = list("QM" = 8, "Export" = 8)},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cTZ" = (/obj/machinery/cargo_router{default_direction = 8; destinations = list("MedSci" = 2, "Escape" = 2)},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"cUa" = (/turf/space,/obj/grille/catwalk,/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; icon_state = "magwarning"; name = "Magnet Area Boundary"},/turf/simulated/floor/plating/airless/catwalk,/area/mining/magnet)
"cUb" = (/obj/lattice,/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; pixel_x = 10; tag = ""},/turf/space,/area)
"cUc" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/station/mining/magnet)
@@ -7805,12 +7805,12 @@
"cUe" = (/turf/space,/area/shuttle/merchant_shuttle/right_station)
"cUf" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/glass{name = "Research Sector"; req_access_txt = "24"},/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
"cUg" = (/obj/machinery/door/firedoor/pyro,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/door/airlock/pyro/glass{name = "Research Sector"; req_access_txt = "24"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
-"cUh" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/artifact)
-"cUi" = (/turf/simulated/floor{icon_state = "caution_ns"},/area/station/artifact)
-"cUj" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/artifact)
-"cUk" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable,/obj/landmark/artifact,/turf/simulated/floor{icon_state = "delivery"},/area/station/artifact)
-"cUl" = (/obj/table/reinforced/auto,/obj/item/device/matanalyzer,/obj/item/device/matanalyzer,/obj/machinery/light,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"cUm" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor{icon_state = "delivery"},/area/station/artifact)
+"cUh" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor{icon_state = "delivery"},/area/station/science/artifact)
+"cUi" = (/turf/simulated/floor{icon_state = "caution_ns"},/area/station/science/artifact)
+"cUj" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/science/artifact)
+"cUk" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable,/obj/landmark/artifact,/turf/simulated/floor{icon_state = "delivery"},/area/station/science/artifact)
+"cUl" = (/obj/table/reinforced/auto,/obj/item/device/matanalyzer,/obj/item/device/matanalyzer,/obj/machinery/light,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"cUm" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor{icon_state = "delivery"},/area/station/science/artifact)
"cUn" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
"cUo" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
"cUp" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/obj/machinery/light,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
@@ -7837,14 +7837,14 @@
"cUK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/obj/disposalpipe/segment/mail/vertical,/turf/simulated/floor{icon_state = "redwhite"},/area/station/medical/research{name = "Genetic Research"})
"cUL" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "redwhite"},/area/station/medical/research{name = "Genetic Research"})
"cUM" = (/obj/disposalpipe/trunk,/obj/machinery/disposal{name = "monkeydome chute"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "redwhite"; dir = 6},/area/station/medical/research{name = "Genetic Research"})
-"cUN" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
-"cUO" = (/obj/table/auto,/obj/random_item_spawner/medicine,/obj/random_item_spawner/medicine,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
+"cUN" = (/obj/stool/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
+"cUO" = (/obj/table/auto,/obj/random_item_spawner/medicine,/obj/random_item_spawner/medicine,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
"cUP" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cUQ" = (/obj/machinery/door/airlock/pyro/external{dir = 4; icon_state = "airlock_closed"; name = "cargo hangar"; req_access = list(30); req_access_txt = null},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hangar/qm)
"cUR" = (/obj/machinery/door_control/podbay/qm/new_walls/east,/turf/simulated/floor/shuttlebay,/area/station/hangar/qm)
"cUS" = (/obj/table/reinforced/auto,/obj/machinery/door_control{id = "qm_dock"; name = "Outer Door Toggle"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hangar/qm)
"cUT" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/hangar/qm)
-"cUU" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/fsmaint)
+"cUU" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/NEmaint)
"cUV" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/mining/magnet)
"cUW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/mining/magnet)
"cUX" = (/obj/table/reinforced/auto,/obj/item/storage/toolbox/emergency,/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/station/mining/magnet)
@@ -7883,9 +7883,9 @@
"cVE" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "caution_south"},/area/station/hangar/qm)
"cVF" = (/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hangar/qm)
"cVG" = (/obj/machinery/mass_driver{dir = 2; id = "qm_dock_out"},/turf/simulated/floor/plating,/area/station/hangar/qm)
-"cVH" = (/obj/machinery/mass_driver{drive_range = 5; id = "cargo_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cVI" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/fsmaint)
-"cVJ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/fsmaint)
+"cVH" = (/obj/machinery/mass_driver{drive_range = 5; id = "cargo_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cVI" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/station/maintenance/NEmaint)
+"cVJ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/station/maintenance/NEmaint)
"cVK" = (/turf/space,/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/mining/magnet)
"cVL" = (/obj/machinery/computer/magnet{dir = 8; icon_state = "QMreq"},/turf/simulated/floor/plating/airless,/area/station/mining/magnet)
"cVM" = (/obj/machinery/door/airlock/pyro/external{icon_state = "airlock_closed"; dir = 4},/turf/simulated/floor{icon_state = "caution_we"},/area/station/hangar/science)
@@ -7905,11 +7905,11 @@
"cWa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "floorgrime_gb1"},/area/station/hangar/science)
"cWb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_x = 1; pixel_y = 26; text = "NF"},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "Stairs_wide"; dir = 4},/area/station/hangar/science)
"cWc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/hangar/science)
-"cWd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cWe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cWf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cWg" = (/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cWh" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Medbay"; dir = 1; name = "Medbay APC"; pixel_y = 24},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"cWd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cWe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1; pixel_y = 21},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cWf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cWg" = (/obj/item/storage/wall/emergency{dir = 1; icon_state = "miniO2"; pixel_y = 32},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cWh" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Medbay"; dir = 1; name = "Medbay APC"; pixel_y = 24},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cWi" = (/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = null; req_access_txt = "5"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "delivery"},/area/station/medical/medbay)
"cWj" = (/obj/machinery/navbeacon/guardbotsecbot_circularpatrol/beacon12,/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "bluewhite"; dir = 8},/area/station/medical/medbay)
"cWk" = (/obj/disposalpipe/segment/mail/horizontal,/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 8},/area/station/medical/medbay)
@@ -7939,18 +7939,18 @@
"cWI" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal{name = "Test Chamber Chute"},/obj/item/storage/wall/random,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cWJ" = (/obj/disposalpipe/segment,/obj/machinery/alarm{pixel_y = 20},/obj/machinery/vending/monkey,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cWK" = (/turf/simulated/wall/auto/supernorn,/area/station/medical/dome)
-"cWL" = (/obj/machinery/power/apc{areastring = "Monkey Dome"; dir = 8; name = "Monkey Dome APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cWL" = (/obj/machinery/power/apc{areastring = "Monkey Dome"; dir = 8; name = "Monkey Dome APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cWM" = (/obj/machinery/door/airlock/pyro/external,/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "floorgrime"; dir = 8},/area/station/storage/auxillary)
"cWN" = (/obj/securearea{name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/qm)
"cWO" = (/obj/machinery/door/poddoor/pyro/podbay_autoclose/qm_horizontal,/turf/simulated/floor/shuttlebay,/area/station/hangar/qm)
"cWP" = (/obj/machinery/r_door_control/podbay/qm,/turf/simulated/wall/auto/reinforced/supernorn,/area/station/hangar/qm)
"cWQ" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "qm_dock"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/hangar/qm)
"cWR" = (/obj/machinery/mass_driver{dir = 2; id = "qm_dock_out"},/obj/machinery/door/poddoor/pyro{id = "qm_dock_out"; name = "Cargo Routing Door"},/turf/simulated/floor/engine/vacuum,/area/station/hangar/qm)
-"cWS" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "cargo_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cWT" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/maintenance/fsmaint)
-"cWU" = (/obj/machinery/mass_driver{drive_range = 5; id = "cargo_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "cargo_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"cWV" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 17},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fsmaint)
-"cWW" = (/obj/decal/poster/wallsign/stencil/right/o{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/g,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/fsmaint)
+"cWS" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "cargo_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cWT" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn{icon_state = "12"},/area/station/maintenance/NEmaint)
+"cWU" = (/obj/machinery/mass_driver{drive_range = 5; id = "cargo_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "cargo_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"cWV" = (/obj/decal/poster/wallsign/stencil/right/r{pixel_x = 17},/obj/decal/poster/wallsign/stencil/right/a{pixel_x = 5},/obj/decal/poster/wallsign/stencil/left/c{pixel_x = -7},/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/NEmaint)
+"cWW" = (/obj/decal/poster/wallsign/stencil/right/o{pixel_x = 9},/obj/decal/poster/wallsign/stencil/left/g,/turf/simulated/wall/auto/reinforced/supernorn{icon_state = "R12"},/area/station/maintenance/NEmaint)
"cWX" = (/turf/space,/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/mining/magnet)
"cWY" = (/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/mining/magnet)
"cWZ" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/mining/magnet)
@@ -7968,10 +7968,10 @@
"cXl" = (/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/west,/turf/simulated/floor{icon_state = "floorgrime_gb1"},/area/station/hangar/science)
"cXm" = (/turf/simulated/floor{icon_state = "Stairs2_wide"; dir = 4},/area/station/hangar/science)
"cXn" = (/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/hangar/science)
-"cXo" = (/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cXp" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cXq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cXr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"cXo" = (/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cXp" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cXq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cXr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cXs" = (/obj/machinery/door/airlock/pyro/maintenance{dir = 4; icon_state = "maint_closed"; req_access = null; req_access_txt = "5"},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"},/area/station/medical/medbay)
"cXt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bluewhite"; dir = 8},/area/station/medical/medbay)
"cXu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -7985,7 +7985,7 @@
"cXC" = (/obj/submachine/chef_sink/chem_sink{dir = 4; pixel_x = -8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cXD" = (/obj/machinery/camera/television{c_tag = "monkeydome"; dir = 2; name = "camera - monkeydome"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cXE" = (/obj/disposalpipe/segment,/obj/machinery/light_switch/east,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
-"cXF" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/starboard)
+"cXF" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/east)
"cXG" = (/obj/lattice{tag = "icon-lattice-dir-b (NORTHWEST)"; icon_state = "lattice-dir-b"; dir = 9},/turf/space,/area)
"cXH" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/storage/auxillary)
"cXI" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/auxillary)
@@ -8001,9 +8001,9 @@
"cXS" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor{icon_state = "floorgrime_gb1"},/area/station/hangar/science)
"cXT" = (/obj/stool,/turf/simulated/floor{icon_state = "floorgrime_gb1"},/area/station/hangar/science)
"cXU" = (/obj/machinery/computer/barcode{destinations = list("Arrivals","Catering","Disposals","Engine","Escape","Export","MedSci","Security","QM")},/turf/simulated/floor/plating,/area/station/hangar/science)
-"cXV" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/starboardsolar)
-"cXW" = (/obj/machinery/door/airlock/pyro/external,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/starboardsolar)
-"cXX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"cXV" = (/turf/simulated/wall/auto/reinforced/supernorn,/area/station/maintenance/eastsolar)
+"cXW" = (/obj/machinery/door/airlock/pyro/external,/obj/machinery/door/firedoor/pyro,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/eastsolar)
+"cXX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cXY" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; layer = 9.1; pixel_x = -10},/turf/simulated/floor{icon_state = "bluewhite"; dir = 8},/area/station/medical/medbay)
"cXZ" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"cYa" = (/obj/table/auto,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/turf/simulated/floor{icon_state = "bot_white"},/area/station/medical/medbay)
@@ -8029,10 +8029,10 @@
"cYu" = (/obj/machinery/door_control/podbay/medsci/new_walls/east,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
"cYv" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/hangar/science)
"cYw" = (/turf/simulated/wall/auto/supernorn{icon_state = "2"},/area/station/hangar/science)
-"cYx" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cYy" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/starboardsolar)
-"cYz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cYA" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/starboardsolar)
+"cYx" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cYy" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/eastsolar)
+"cYz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cYA" = (/turf/simulated/wall/auto/supernorn,/area/station/maintenance/eastsolar)
"cYB" = (/obj/table/auto,/obj/bedsheetbin,/obj/item/sponge,/turf/simulated/floor{icon_state = "bluewhite"; dir = 10},/area/station/medical/medbay)
"cYC" = (/obj/table/auto,/obj/item/storage/box/stma_kit,/obj/item/clothing/gloves/latex,/obj/item/clothing/gloves/latex,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay)
"cYD" = (/obj/machinery/sleeper,/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay)
@@ -8051,7 +8051,7 @@
"cYQ" = (/obj/shrub{icon_state = "shrub"; dir = 6},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/item/device/radio/beacon,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cYR" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/obj/landmark{name = "monkeyspawn_normal"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cYS" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/medical/dome)
-"cYT" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/starboard)
+"cYT" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/east)
"cYU" = (/turf/space,/obj/machinery/light/small{dir = 1},/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/storage/auxillary)
"cYV" = (/turf/space,/obj/cable{icon_state = "1-4"},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/storage/auxillary)
"cYW" = (/turf/space,/obj/cable{icon_state = "4-8"},/obj/grille/catwalk{icon_state = "catwalk_cross"; dir = 6},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/storage/auxillary)
@@ -8061,9 +8061,9 @@
"cZa" = (/obj/machinery/light/small,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
"cZb" = (/turf/simulated/wall/auto/supernorn{icon_state = "3"},/area/station/hangar/science)
"cZc" = (/obj/machinery/mass_driver{drive_range = 3; id = "medsci_out"; name = "cargo driver"},/turf/simulated/floor/plating,/area/station/hangar/science)
-"cZd" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/starboardsolar)
-"cZe" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cZf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"cZd" = (/obj/machinery/door/airlock/pyro/external,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/maintenance/eastsolar)
+"cZe" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; pixel_x = -10; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cZf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cZg" = (/obj/machinery/computer3/generic/med_data{dir = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay)
"cZh" = (/obj/stool/chair/office{icon_state = "office_chair"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay)
"cZi" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay)
@@ -8081,13 +8081,13 @@
"cZu" = (/obj/machinery/launcher_loader/north,/obj/machinery/door/poddoor/pyro{id = "medsci_in"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/hangar/science)
"cZv" = (/obj/decal/poster/wallsign/hazard_caution,/turf/simulated/wall/auto/supernorn{icon_state = "13"},/area/station/hangar/science)
"cZw" = (/obj/machinery/mass_driver{drive_range = 3; id = "medsci_out"; name = "cargo driver"},/obj/machinery/door/poddoor/pyro{id = "medsci_out"; name = "Cargo Door"},/turf/simulated/floor/plating,/area/station/hangar/science)
-"cZx" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/starboard)
-"cZy" = (/turf/space,/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cZz" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cZA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cZB" = (/obj/rack,/obj/item/wrench,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/reagent_containers/food/drinks/fueltank,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboardsolar)
-"cZC" = (/obj/table/auto,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cZD" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/starboardsolar)
+"cZx" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/east)
+"cZy" = (/turf/space,/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cZz" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cZA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cZB" = (/obj/rack,/obj/item/wrench,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/reagent_containers/food/drinks/fueltank,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/eastsolar)
+"cZC" = (/obj/table/auto,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cZD" = (/obj/table/auto,/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/station/maintenance/eastsolar)
"cZE" = (/obj/rack,/obj/item/clothing/gloves/latex,/obj/item/clothing/gloves/latex,/obj/item/storage/box/gl_kit,/obj/item/spraybottle/cleaner,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/staple_gun,/obj/item/device/radio/headset/medical,/obj/item/storage/box/health_upgrade_kit,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/medical/medbay)
"cZF" = (/obj/reagent_dispensers/watertank/fountain,/obj/machinery/light,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/medical/medbay)
"cZG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/medical/medbay)
@@ -8100,45 +8100,45 @@
"cZN" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cZO" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/obj/machinery/light,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
"cZP" = (/obj/shrub{icon_state = "shrub"; dir = 10},/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/landmark{name = "kudzustart"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"},/area/station/medical/dome)
-"cZQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cZR" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cZS" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/starboard)
-"cZT" = (/turf/space,/obj/grille/catwalk{dir = 5},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cZU" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cZV" = (/obj/machinery/power/terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cZW" = (/obj/storage/closet/fire,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cZX" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cZY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cZZ" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/starboard)
+"cZQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cZR" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cZS" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/east)
+"cZT" = (/turf/space,/obj/grille/catwalk{dir = 5},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cZU" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cZV" = (/obj/machinery/power/terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cZW" = (/obj/storage/closet/fire,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cZX" = (/obj/storage/closet/fire,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cZY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cZZ" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/station/maintenance/east)
"daa" = (/obj/machinery/door/firedoor/pyro,/obj/machinery/door/airlock/pyro/maintenance{req_access = null; req_access_txt = "5"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/medical/medbay)
"dab" = (/obj/window/auto/reinforced,/obj/grille/steel,/obj/machinery/door/poddoor/pyro{density = 0; dir = 2; icon_state = "pdoor0"; id = "pathology_lockdown"; name = "Pathology Quarantine Shutters"; opacity = 0},/obj/decal/poster/wallsign/hazard_bio,/turf/simulated/floor/plating,/area/station/medical/cdc)
"dac" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/medical/dome)
"dad" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/machinery/light/runway_light/delay4,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"dae" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/machinery/light/runway_light/delay4,/turf/space,/area)
-"daf" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
-"dag" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/starboardsolar)
-"dah" = (/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"dai" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"daj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"dak" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"dal" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"dam" = (/obj/machinery/power/apc{areastring = "Pathology Research"; dir = 1; name = "Pathology APC"; pixel_x = 0; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"dan" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"daf" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
+"dag" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/eastsolar)
+"dah" = (/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"dai" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"daj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"dak" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/pyro/maintenance{icon_state = "maint_closed"; dir = 4},/obj/machinery/door/firedoor/pyro{icon_state = "fdoor0"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"dal" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"dam" = (/obj/machinery/power/apc{areastring = "Pathology Research"; dir = 1; name = "Pathology APC"; pixel_x = 0; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"dan" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/plating,/area/station/maintenance/east)
"dao" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "cargo_in"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
"dap" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "medsci_in"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
-"daq" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
-"dar" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/starboardsolar)
-"das" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control/starboard{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"dat" = (/obj/stool/chair/yellow{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"dau" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"dav" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"daq" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
+"dar" = (/obj/window/auto/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/steel,/turf/simulated/floor,/area/station/maintenance/eastsolar)
+"das" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control/starboard{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"dat" = (/obj/stool/chair/yellow{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"dau" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"dav" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"daw" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/machinery/light/runway_light/delay3,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"dax" = (/obj/lattice{icon_state = "lattice-dir"; dir = 2},/obj/machinery/light/runway_light/delay3,/turf/space,/area)
"day" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 8; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 10; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/mining/magnet)
"daz" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 8; icon_state = "magwarning"; name = "Magnet Area Boundary"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/mining/magnet)
"daA" = (/turf/space,/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 8; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 6; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/mining/magnet)
"daB" = (/obj/machinery/mass_driver{dir = 1; drive_range = 5; id = "escape_in"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
-"daC" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"daC" = (/obj/window/auto/reinforced,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/east)
"daD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"daE" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating/airless,/area)
"daF" = (/obj/machinery/mass_driver{dir = 4; drive_range = 65; id = "medsci_relay"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
@@ -8148,19 +8148,19 @@
"daJ" = (/obj/machinery/cargo_router{default_direction = 2; destinations = list("Escape" = 4)},/turf/simulated/floor/plating/airless,/area)
"daK" = (/obj/machinery/mass_driver{dir = 4; drive_range = 27; id = "cargo_relayE"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
"daL" = (/turf/space,/obj/grille/catwalk{icon_state = "catwalk"; dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area)
-"daM" = (/obj/grille/catwalk{dir = 5},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area/station/solar/starboard)
-"daN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
-"daO" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area/station/solar/starboard)
+"daM" = (/obj/grille/catwalk{dir = 5},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area/station/solar/east)
+"daN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
+"daO" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area/station/solar/east)
"daP" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/supernorn,/area)
"daQ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar/small_backup1,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/small_backup1)
"daR" = (/obj/lattice{icon_state = "lattice-dir"; dir = 8},/turf/space,/area/station/solar/small_backup1)
"daS" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/small_backup1)
"daT" = (/turf/space,/obj/grille/catwalk{icon_state = "catwalk_cross"; dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area)
-"daU" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"daV" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"daW" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"daX" = (/obj/grille/catwalk{dir = 10},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"daY" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
+"daU" = (/turf/space,/obj/grille/catwalk{dir = 9},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"daV" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"daW" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"daX" = (/obj/grille/catwalk{dir = 10},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"daY" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
"daZ" = (/obj/lattice{icon_state = "lattice-dir"},/obj/machinery/light/runway_light/delay5,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"dba" = (/obj/lattice{icon_state = "lattice-dir"},/obj/machinery/light/runway_light/delay5,/turf/space,/area)
"dbb" = (/obj/machinery/cargo_router{destinations = list("MedSci" = 2)},/turf/simulated/floor/plating/airless,/area)
@@ -8170,19 +8170,19 @@
"dbf" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/small_backup1)
"dbg" = (/turf/space,/obj/grille/catwalk{icon_state = "catwalk_cross"; dir = 6},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/small_backup1)
"dbh" = (/obj/machinery/mass_driver{dir = 8; drive_range = 27; id = "escape_relay"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
-"dbi" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
-"dbj" = (/obj/cable,/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
+"dbi" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
+"dbj" = (/obj/cable,/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
"dbk" = (/obj/cable,/obj/machinery/power/solar/small_backup1,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/small_backup1)
-"dbl" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"},/turf/space,/area/station/solar/starboard)
-"dbm" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area/station/solar/starboard)
+"dbl" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"},/turf/space,/area/station/solar/east)
+"dbm" = (/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area/station/solar/east)
"dbn" = (/obj/lattice{icon_state = "lattice-dir"},/obj/machinery/light/runway_light/delay4,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"dbo" = (/obj/machinery/mass_driver{dir = 8; id = "cargo_relayW"; name = "cargo driver"},/turf/simulated/floor/plating/airless,/area)
-"dbp" = (/obj/cable,/obj/machinery/power/tracker/starboard,/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"dbp" = (/obj/cable,/obj/machinery/power/tracker/starboard,/turf/simulated/floor/plating/airless,/area/station/solar/east)
"dbq" = (/obj/lattice{icon_state = "lattice-dir"; dir = 5},/obj/lattice{icon_state = "lattice-dir"; dir = 4},/turf/space,/area)
"dbr" = (/obj/lattice{icon_state = "lattice-dir"; dir = 4},/obj/lattice{icon_state = "lattice-dir"; dir = 4},/turf/space,/area)
"dbs" = (/turf/space,/obj/grille/catwalk{dir = 6},/obj/machinery/power/tracker/small_backup1,/obj/cable,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/small_backup1)
-"dbt" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/starboard)
-"dbu" = (/turf/space,/obj/grille/catwalk{dir = 6},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
+"dbt" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/east)
+"dbu" = (/turf/space,/obj/grille/catwalk{dir = 6},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
"dbv" = (/obj/lattice{icon_state = "lattice-dir"},/obj/machinery/light/runway_light/delay3,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"dbw" = (/obj/cable{icon_state = "1-4"},/obj/lattice{icon_state = "lattice-dir"; dir = 6},/turf/space,/area)
"dbx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/lattice{icon_state = "lattice-dir"; dir = 4},/turf/space,/area)
diff --git a/maps/cogmap_300x300revisionWIP.dmm b/maps/cogmap_300x300revisionWIP.dmm
index 219d3d3..6420c2f 100644
--- a/maps/cogmap_300x300revisionWIP.dmm
+++ b/maps/cogmap_300x300revisionWIP.dmm
@@ -165,16 +165,16 @@
"adi" = (/turf/simulated/shuttle/wall/cockpit/window{tag = "icon-wall_space (EAST)"; name = "window"; icon_state = "wall_space"; dir = 4},/area/shuttle/arrival/station)
"adj" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
"adk" = (/obj/stool/chair,/obj/landmark{name = "JoinLate"},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
-"adl" = (/obj/machinery/power/solar,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
-"adm" = (/obj/lattice,/turf/space,/area/station/solar/port)
+"adl" = (/obj/machinery/power/solar,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
+"adm" = (/obj/lattice,/turf/space,/area/station/solar/west)
"adn" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/overlay{anchored = 1; density = 1; desc = "A device for scanning deep space."; icon = 'icons/mob/hivebot.dmi'; icon_state = "def_radar"; name = "radio telescope"},/obj/lattice{tag = "icon-lattice-dir (WEST)"; icon_state = "lattice-dir"; dir = 8},/turf/space,/area)
"ado" = (/obj/item/device/radio/beacon,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
"adp" = (/obj/stool/chair,/obj/landmark{name = "JoinLate"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
-"adq" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"adr" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"ads" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"adt" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"adu" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
+"adq" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"adr" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"ads" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"adt" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"adu" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
"adv" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"adw" = (/obj/grille,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"adx" = (/obj/grille,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
@@ -184,8 +184,8 @@
"adB" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"adC" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"adD" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"adE" = (/obj/machinery/power/solar,/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
-"adF" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/port)
+"adE" = (/obj/machinery/power/solar,/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
+"adF" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/west)
"adG" = (/obj/grille,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"adH" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/observatory)
"adI" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/computerframe{anchored = 1; desc = "It is highly unlikely that this still works."; icon = 'computer.dmi'; icon_state = "datamedb"; name = "telescope controls"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/observatory)
@@ -223,23 +223,23 @@
"aeo" = (/turf/simulated/floor{tag = "icon-corner_west"; icon_state = "corner_west"; dir = 2},/area/station/hallway/secondary/entry)
"aep" = (/turf/simulated/floor{tag = "icon-corner_east (WEST)"; icon_state = "corner_east"; dir = 8},/area/station/hallway/secondary/entry)
"aeq" = (/turf/simulated/shuttle/wall/cockpit/window{name = "window"},/area/shuttle/arrival/station)
-"aer" = (/turf/space,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/port)
-"aes" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"aet" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"aeu" = (/obj/machinery/power/tracker,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/port)
+"aer" = (/turf/space,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/station/solar/west)
+"aes" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"aet" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"aeu" = (/obj/machinery/power/tracker,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/west)
"aev" = (/obj/machinery/door/airlock/syndicate{aiControlDisabled = 1; desc = "This looks like a perfectly innocent weather satellite. It's locked up pretty tight to keep bath salts junkies from breaking in to steal the equipment."; name = "Weather Satellite"},/turf/simulated/shuttle/floor{icon_state = "floor4"},/area)
"aew" = (/obj/submachine/syndicate_teleporter,/turf/simulated/shuttle/floor{icon_state = "floor4"},/area)
"aex" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"aey" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/observatory)
-"aez" = (/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
+"aez" = (/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
"aeA" = (/turf/simulated/shuttle/wall/cockpit{tag = "icon-shuttlecock (NORTH)"; icon_state = "shuttlecock"; dir = 1},/area/shuttle/arrival/station)
"aeB" = (/obj/machinery/light,/turf/simulated/shuttle/floor{icon_state = "floor4"},/area)
-"aeC" = (/turf/simulated/wall,/area/station/maintenance/fpmaint)
+"aeC" = (/turf/simulated/wall,/area/station/maintenance/NWmaint)
"aeD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Observatory"},/turf/simulated/floor,/area/station/crew_quarters/observatory)
-"aeE" = (/obj/machinery/atmospherics/portables_connector{name = "Crew Quarters Repressurization Port"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeF" = (/obj/machinery/atmospherics/portables_connector{name = "Central Primary Hallway Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeG" = (/obj/machinery/atmospherics/portables_connector{name = "Cafeterial Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aeE" = (/obj/machinery/atmospherics/portables_connector{name = "Crew Quarters Repressurization Port"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeF" = (/obj/machinery/atmospherics/portables_connector{name = "Central Primary Hallway Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeG" = (/obj/machinery/atmospherics/portables_connector{name = "Cafeterial Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aeI" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"aeJ" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/secondary/entry)
"aeK" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/secondary/entry)
@@ -256,18 +256,18 @@
"aeV" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"aeW" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 8},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"aeX" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_x = 0; tag = "icon-shock"},/turf/simulated/wall/r_wall,/area/station/security/armory)
-"aeY" = (/obj/table,/obj/item/storage/lightbox/tubes,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aeZ" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afa" = (/obj/rack,/obj/item/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aeY" = (/obj/table,/obj/item/storage/lightbox/tubes,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aeZ" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afa" = (/obj/rack,/obj/item/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"afb" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"afc" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"afd" = (/turf/simulated/floor,/area/station/crew_quarters/quarters)
"afe" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
-"aff" = (/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afg" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afh" = (/obj/machinery/atmospherics/valve{name = "Crew Quarters"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afi" = (/obj/machinery/atmospherics/valve{name = "Central Primary Hallway"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afj" = (/obj/machinery/atmospherics/valve{name = "Cafeteria"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aff" = (/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afg" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afh" = (/obj/machinery/atmospherics/valve{name = "Crew Quarters"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afi" = (/obj/machinery/atmospherics/valve{name = "Central Primary Hallway"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afj" = (/obj/machinery/atmospherics/valve{name = "Cafeteria"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"afk" = (/turf/simulated/wall/false_wall,/area/station/hallway/secondary/construction2)
"afl" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/construction2)
"afm" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/construction2)
@@ -287,17 +287,17 @@
"afA" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 2},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"afB" = (/turf/simulated/wall/r_wall,/area/station/security/armory)
"afC" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/station/security/armory)
-"afD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"afD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"afH" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"afI" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"afJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"afK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
-"afL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afM" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afN" = (/obj/machinery/atmospherics/pipe/simple,/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"afL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afM" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afN" = (/obj/machinery/atmospherics/pipe/simple,/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"afO" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/rods,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction2)
"afP" = (/obj/submachine/slot_machine,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction2)
"afQ" = (/obj/machinery/light/small{dir = 1; status = 2},/obj/table,/obj/item/storage/toolbox/emergency,/obj/item/device/pda_module/flashlight/high_power,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction2)
@@ -315,23 +315,23 @@
"agc" = (/obj/machinery/sleep_console,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
"agd" = (/turf/simulated/floor/plating,/obj/table,/obj/item/device/infra_sensor,/obj/item/device/infra,/obj/item/device/infra,/obj/item/device/infra,/obj/item/clothing/head/helmet/hardhat,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
"age" = (/obj/item/clothing/under/jersey/red,/obj/item/clothing/under/jersey/purple,/obj/item/clothing/under/jersey/green,/obj/item/clothing/under/jersey/black,/obj/item/clothing/under/jersey,/obj/item/basketball,/obj/crate,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
-"agf" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"agg" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/station/solar/port)
+"agf" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"agg" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/station/solar/west)
"agh" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"agi" = (/obj/secure_closet/armory{req_access_txt = "37"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/security/armory)
"agj" = (/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/security/armory)
"agk" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/communications,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/security/armory)
"agl" = (/obj/secure_closet/armory{req_access_txt = "37"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/security/armory)
"agm" = (/obj/grille,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/security/armory)
-"agn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ago" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"agn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ago" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"agp" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersA)
"agq" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/quarters)
"agr" = (/turf/simulated/wall,/area/station/crew_quarters/quarters)
"ags" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"agt" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
-"agu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"agv" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"agu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"agv" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"agw" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/crew_quarters/clown)
"agx" = (/turf/simulated/wall,/area/station/crew_quarters/clown)
"agy" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/clown)
@@ -354,13 +354,13 @@
"agP" = (/obj/fireworksbox,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
"agQ" = (/obj/machinery/bot/floorbot,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
"agR" = (/turf/simulated/wall/r_wall,/area/station/hallway/secondary/construction)
-"agS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"agT" = (/turf/simulated/wall/r_wall,/area/station/maintenance/portsolar)
-"agU" = (/turf/simulated/wall,/area/station/maintenance/portsolar)
-"agV" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"agW" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"agX" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
-"agY" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/port)
+"agS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"agT" = (/turf/simulated/wall/r_wall,/area/station/maintenance/westsolar)
+"agU" = (/turf/simulated/wall,/area/station/maintenance/westsolar)
+"agV" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"agW" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"agX" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
+"agY" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/west)
"agZ" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/security/armory)
"aha" = (/turf/simulated/wall,/area/station/crew_quarters/quartersA)
"ahb" = (/obj/machinery/vending/coffee,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/crew_quarters/quarters)
@@ -371,7 +371,7 @@
"ahg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/obj/closet/office,/turf/simulated/floor{dir = 4; icon_state = "bluecorner"},/area/station/crew_quarters/quarters)
"ahh" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table,/obj/machinery/networked/printer{print_id = "Lounge"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-blue (NORTHEAST)"; icon_state = "blue"; dir = 5},/area/station/crew_quarters/quarters)
"ahi" = (/turf/simulated/wall,/area/station/crew_quarters/quartersB)
-"ahj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ahj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ahk" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall/false_wall,/area/station/crew_quarters/clown)
"ahl" = (/obj/decal/cleanable/cobweb,/obj/machinery/space_heater,/obj/decal/cleanable/dirt,/obj/decal/cleanable/oil,/turf/simulated/floor/plating,/area/station/crew_quarters/clown)
"ahm" = (/obj/stool/bed,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/crew_quarters/clown)
@@ -388,11 +388,11 @@
"ahx" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
"ahy" = (/obj/item/tile,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
"ahz" = (/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
-"ahA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/airless,/area/station/maintenance/portsolar)
-"ahB" = (/obj/machinery/power/solar_control,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahD" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ahE" = (/obj/machinery/power/smes{chargelevel = 15000; chargemode = 1; online = 0; output = 10000; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"ahA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/airless,/area/station/maintenance/westsolar)
+"ahB" = (/obj/machinery/power/solar_control,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahD" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ahE" = (/obj/machinery/power/smes{chargelevel = 15000; chargemode = 1; online = 0; output = 10000; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"ahF" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/gun/kinetic/dart_rifle,/obj/item/ammo/bullets/tranq_darts,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/security/armory)
"ahG" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/security/armory)
"ahH" = (/obj/crate,/obj/item/clothing/under/gimmick/princess,/obj/window/cubicle{dir = 4},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
@@ -430,10 +430,10 @@
"ain" = (/obj/machinery/light/small,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
"aio" = (/obj/item/sheet/r_metal{amount = 50},/obj/item/clothing/ears/earmuffs,/obj/item/storage/beakerbox,/turf/simulated/floor/plating,/area/station/hallway/secondary/construction)
"aip" = (/turf/simulated/floor/plating,/obj/item/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/item/clothing/glasses/eyepatch,/obj/crate,/obj/item/reagent_containers/fueltank,/obj/item/reagent_containers/fueltank,/obj/item/reagent_containers/fueltank,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/hallway/secondary/construction)
-"aiq" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/portsolar)
-"air" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ais" = (/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ait" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"aiq" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/westsolar)
+"air" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ais" = (/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ait" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"aiu" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"aiv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/armory)
"aiw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/device/radio/electropack,/obj/item/device/radio/electropack,/obj/item/device/radio/signaler,/obj/item/device/radio/signaler,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/security/armory)
@@ -462,11 +462,11 @@
"aiT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"aiU" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/hallway/secondary/construction)
"aiV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction)
-"aiW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aiX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aiY" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aiZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aja" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/table,/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"aiW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aiX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aiY" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aiZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aja" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/table,/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"ajb" = (/turf/simulated/wall/r_wall,/area/station/hangar/catering{name = "Catering Hangar"})
"ajc" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "cateringdock_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"ajd" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/hangar/catering{name = "Catering Hangar"})
@@ -474,8 +474,8 @@
"ajf" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/networked/secdetector{area_access = 99; detector_id = "AI Core"; dir = 1},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area/station/security/armory)
"ajg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Armory"; req_access_txt = "37"},/turf/simulated/floor,/area/station/security/armory)
"ajh" = (/obj/securearea,/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/station/security/armory)
-"aji" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajj" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aji" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajj" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ajk" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersA)
"ajl" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quarters)
"ajm" = (/obj/stool/chair{dir = 4},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -486,20 +486,20 @@
"ajr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/classic{aiControlDisabled = 0; locked = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/clown)
"ajs" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/hallway/secondary/construction2)
"ajt" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/secondary/construction2)
-"aju" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajv" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aju" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajv" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ajw" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/secondary/entry)
"ajx" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/secondary/entry)
"ajy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-stairs_middle"; icon_state = "stairs_middle"},/area/station/hallway/secondary/entry)
"ajz" = (/turf/simulated/floor{tag = "icon-stairs_middle"; icon_state = "stairs_middle"},/area/station/hallway/secondary/entry)
"ajA" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/secondary/entry)
-"ajB" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajC" = (/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajE" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"ajF" = (/turf/simulated/wall/r_wall,/area/station/maintenance/apmaint)
-"ajG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ajH" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall,/area/station/maintenance/portsolar)
+"ajB" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajC" = (/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajE" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"ajF" = (/turf/simulated/wall/r_wall,/area/station/maintenance/SWmaint)
+"ajG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ajH" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall,/area/station/maintenance/westsolar)
"ajI" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"ajJ" = (/obj/machinery/mass_driver{dir = 1; drive_range = 23; id = "cateringdock_out"},/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"ajK" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_x = 0; tag = "icon-shock"},/turf/simulated/wall/r_wall,/area/station/security/armory)
@@ -512,9 +512,9 @@
"ajR" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "sec_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/security)
"ajS" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/routingdepot/security)
"ajT" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"},/obj/machinery/door/poddoor{id = "sec_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/security)
-"ajU" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/crate{desc = "Whoa! What will they think of next?"; name = "Boxes in a Box"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajV" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ajW" = (/obj/closet/firecloset,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ajU" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/crate{desc = "Whoa! What will they think of next?"; name = "Boxes in a Box"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajV" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ajW" = (/obj/closet/firecloset,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ajX" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/window/cubicle{tag = "icon-cubicle"; icon_state = "cubicle"; dir = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"ajY" = (/obj/window/cubicle{tag = "icon-cubicle"; icon_state = "cubicle"; dir = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"ajZ" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
@@ -522,16 +522,16 @@
"akb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec"; location = "crew"; name = "bot navigation beacon"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"akc" = (/obj/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"akd" = (/obj/shrub,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/crew_quarters/quarters)
-"ake" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akf" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akg" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akh" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aki" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akj" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akk" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akl" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akn" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ake" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akf" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akg" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akh" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aki" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akj" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akk" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akl" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akn" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ako" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"akp" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/station/hallway/secondary/entry)
"akq" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/entry)
@@ -539,15 +539,15 @@
"aks" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"akt" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/secondary/entry)
"aku" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"akv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/switch_junction/biofilter{dir = 8; icon_state = "pipe-sj2"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aky" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akA" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akC" = (/obj/rack,/obj/item/crowbar,/obj/item/crowbar,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/decal/cleanable/cobweb2,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"akD" = (/turf/simulated/wall,/area/station/maintenance/apmaint)
+"akv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/switch_junction/biofilter{dir = 8; icon_state = "pipe-sj2"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aky" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akA" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akC" = (/obj/rack,/obj/item/crowbar,/obj/item/crowbar,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/decal/cleanable/cobweb2,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"akD" = (/turf/simulated/wall,/area/station/maintenance/SWmaint)
"akE" = (/obj/machinery/computer/barcode,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/hangar/catering{name = "Catering Hangar"})
"akF" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"akG" = (/turf/simulated/wall,/area/station/security/brig)
@@ -556,9 +556,9 @@
"akJ" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-Stairs_wide (NORTH)"; icon_state = "Stairs_wide"; dir = 1},/area/station/security/brig)
"akK" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot/security)
"akL" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"},/turf/simulated/floor/plating,/area/station/routingdepot/security)
-"akM" = (/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/grille,/turf/simulated/floor/plating/airless,/area/station/maintenance/fpmaint)
-"akN" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/toolbox/mechanical,/obj/item/reagent_containers/fueltank,/obj/item/reagent_containers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akO" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"akM" = (/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/grille,/turf/simulated/floor/plating/airless,/area/station/maintenance/NWmaint)
+"akN" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/toolbox/mechanical,/obj/item/reagent_containers/fueltank,/obj/item/reagent_containers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akO" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"akP" = (/obj/window/cubicle{dir = 4},/obj/closet/wardrobe/pink,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"akQ" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/storage/firstaid/regular,/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/crew_quarters/quarters)
"akR" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/storage/cutlery,/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -568,15 +568,15 @@
"akV" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/crew_quarters/quarters)
"akW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"akX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quartersB)
-"akY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akZ" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ala" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"akY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akZ" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ala" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alb" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/crew_quarters/showers)
-"alc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ald" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"alc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ald" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ale" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
-"alf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{tag = "icon-pipe-j1 (WEST)"; icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"alf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{tag = "icon-pipe-j1 (WEST)"; icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alh" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"ali" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (SOUTHWEST)"; icon_state = "red"; dir = 10},/area/station/hallway/secondary/entry)
"alj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/station/hallway/secondary/entry)
@@ -584,16 +584,16 @@
"all" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTH)"},/area/station/hallway/secondary/entry)
"alm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/secondary/entry)
"aln" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"alo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"alp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"alo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"alp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"alq" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
"alr" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"als" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"alt" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"alu" = (/turf/simulated/wall,/area/station/crew_quarters/kitchen)
"alv" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
-"alw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"alx" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"alw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"alx" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aly" = (/obj/table,/obj/item/hand_labeler,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"alz" = (/turf/simulated/floor{tag = "icon-corner_nwest (WEST)"; icon_state = "corner_nwest"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
"alA" = (/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -616,8 +616,8 @@
"alR" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating,/area/station/routingdepot/security)
"alS" = (/obj/item/shard,/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/wreckage)
"alT" = (/obj/grille,/obj/window/reinforced/east,/turf/simulated/floor/plating/airless,/area/station/wreckage)
-"alU" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alV" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"alU" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alV" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alW" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/item/storage/diskbox,/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/crew_quarters/quarters)
"alX" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table{icon_state = "tabledir"; dir = 6},/obj/machinery/computer3/generic/personal,/obj/item/reagent_containers/food/snacks/cereal_box,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"alY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -628,8 +628,8 @@
"amd" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"ame" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment{dir = 4},/obj/window/cubicle{tag = "icon-cubicle"; icon_state = "cubicle"; dir = 2},/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"amf" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/crew_quarters/quartersB)
-"amg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amh" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"amg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amh" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ami" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/showers)
"amj" = (/turf/simulated/wall,/area/station/crew_quarters/showers)
"amk" = (/turf/simulated/wall,/area/station/crew_quarters/fitness)
@@ -647,7 +647,7 @@
"amw" = (/obj/table,/obj/submachine/mixer,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"amx" = (/obj/submachine/chef_oven,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"amy" = (/obj/submachine/chef_sink,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
-"amz" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"amz" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"amA" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"amB" = (/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hangar/catering{name = "Catering Hangar"})
"amC" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -668,7 +668,7 @@
"amR" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/routingdepot/security)
"amS" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/wreckage)
"amT" = (/obj/landmark/artifact,/turf/simulated/floor/airless{tag = "icon-damaged5"; icon_state = "damaged5"},/area/station/wreckage)
-"amU" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"amU" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"amV" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"amW" = (/obj/crate,/obj/item/clothing/under/misc/vice,/obj/item/clothing/glasses/sunglasses,/obj/window/cubicle{dir = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/crew_quarters/quartersA)
"amX" = (/obj/stool/chair{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = -28; pixel_y = 0},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/crew_quarters/quarters)
@@ -701,7 +701,7 @@
"any" = (/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"anz" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/satchel/hydro,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"anA" = (/obj/machinery/vending/monkey,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
-"anB" = (/obj/reagent_dispensers/foamtank,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"anB" = (/obj/reagent_dispensers/foamtank,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"anC" = (/obj/crate,/turf/simulated/floor/plating,/area/station/hangar/catering{name = "Catering Hangar"})
"anD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
"anE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -734,7 +734,7 @@
"aof" = (/obj/reagent_dispensers/watertank,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/crew_quarters/quarters)
"aog" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/item/clothing/suit/bedsheet{icon_state = "bedsheet-blue"},/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
"aoh" = (/obj/machinery/light/small,/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/crew_quarters/quartersB)
-"aoi" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/obj/machinery/light/small{tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aoi" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment,/obj/machinery/light/small{tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aoj" = (/obj/machinery/door/window/eastleft,/obj/item/storage/toilet,/obj/landmark/start{name = "Staff Assistant"},/obj/window/cubicle{tag = "icon-cubicle (NORTH)"; icon_state = "cubicle"; dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aok" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock{name = "Showers"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aol" = (/turf/simulated/floor{tag = "icon-corner_nwest (WEST)"; icon_state = "corner_nwest"; dir = 8},/area/station/crew_quarters/fitness)
@@ -753,9 +753,9 @@
"aoy" = (/obj/machinery/vending/kitchen,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"aoz" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock{name = "Catering Storage"; req_access_txt = "25;28;"; req_only_one_required = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
"aoA" = (/turf/simulated/wall,/area/station/crew_quarters/catering)
-"aoB" = (/obj/closet/firecloset,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aoC" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aoD" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aoB" = (/obj/closet/firecloset,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aoC" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aoD" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aoE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hangar/catering{name = "Catering Hangar"})
"aoF" = (/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hangar/catering{name = "Catering Hangar"})
"aoG" = (/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -772,8 +772,8 @@
"aoR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aoS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aoT" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/quartersB)
-"aoU" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aoV" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aoU" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aoV" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aoW" = (/obj/window/cubicle{tag = "icon-cubicle (NORTH)"; icon_state = "cubicle"; dir = 1},/obj/rack,/obj/item/sponge{name = "loofah"},/obj/item/clothing/under/gimmick/macho,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aoX" = (/obj/machinery/door/window/northleft,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aoY" = (/obj/window/cubicle{tag = "icon-cubicle (NORTH)"; icon_state = "cubicle"; dir = 1},/obj/rack,/obj/item/storage/firstaid/regular,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
@@ -803,12 +803,12 @@
"apw" = (/obj/submachine/chem_extractor,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"apx" = (/obj/crate{desc = "Wow! Crate may or may not still contain bottles."; name = "Bottles in a Crate"},/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"apy" = (/obj/table,/obj/item/storage/toolbox/emergency,/obj/item/storage/beakerbox,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
-"apz" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"apA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"apB" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"apC" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"apD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"apE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"apz" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"apA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"apB" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"apC" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"apD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"apE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"apF" = (/obj/item/crowbar,/obj/table,/obj/item/hand_labeler,/obj/item/shipcomponent/secondary_system/cargo,/obj/item/crowbar,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hangar/catering{name = "Catering Hangar"})
"apG" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hangar/catering{name = "Catering Hangar"})
"apH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hangar/catering{name = "Catering Hangar"})
@@ -835,7 +835,7 @@
"aqc" = (/obj/grille,/turf/simulated/floor/plating/airless,/area/station/wreckage)
"aqd" = (/obj/grille{tag = "icon-brokengrille"; icon_state = "brokengrille"},/obj/structure/girder,/turf/simulated/floor/airless{tag = "icon-damaged2"; icon_state = "damaged2"},/area/station/wreckage)
"aqe" = (/obj/structure/girder,/turf/simulated/floor/airless{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/wreckage)
-"aqf" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/fpmaint)
+"aqf" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/NWmaint)
"aqg" = (/turf/simulated/wall,/area/station/crew_quarters/barber_shop)
"aqh" = (/obj/crate,/obj/item/clothing/head/wig,/obj/item/dye_bottle,/obj/item/clothing/under/misc/barber,/obj/item/scissors,/obj/item/razor_blade,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aqi" = (/obj/table,/obj/item/clothing/gloves/latex,/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
@@ -849,9 +849,9 @@
"aqq" = (/obj/machinery/bathtub{anchored = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"aqr" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"aqs" = (/obj/machinery/shower{tag = "icon-showerhead (NORTH)"; icon_state = "showerhead"; dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"aqt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqu" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqv" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aqt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqu" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqv" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aqw" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"aqx" = (/obj/table/woodentable{tag = "icon-woodentable (SOUTHEAST)"; icon_state = "woodentable"; dir = 6},/obj/item/reagent_containers/food/drinks/cola_bottle/bottledwater,/obj/item/reagent_containers/food/drinks/cola_bottle/bottledwater{pixel_x = -5; pixel_y = 5},/obj/item/storage/firstaid/regular,/turf/simulated/floor{tag = "icon-wooden-2"; icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"aqy" = (/turf/simulated/floor,/area/station/crew_quarters/fitness)
@@ -872,12 +872,12 @@
"aqN" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"aqO" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"aqP" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
-"aqQ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aqR" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aqS" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aqT" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aqU" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aqV" = (/obj/shrub,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
+"aqQ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aqR" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aqS" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aqT" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aqU" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aqV" = (/obj/shrub,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
"aqW" = (/turf/simulated/wall,/area/station/hydroponics/lobby)
"aqX" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hydroponics/lobby)
"aqY" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hydroponics/lobby)
@@ -905,7 +905,7 @@
"aru" = (/obj/item/material/rock,/turf/simulated/floor/airless{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/wreckage)
"arv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/creepy_sound_trigger,/turf/simulated/floor/plating/airless,/area/station/wreckage)
"arw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/wreckage)
-"arx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"arx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ary" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"arz" = (/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"arA" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/crew_quarters/locker)
@@ -914,10 +914,10 @@
"arD" = (/obj/rack,/obj/item/sponge{name = "loofah"},/obj/window/cubicle{tag = "icon-cubicle"; icon_state = "cubicle"; dir = 2},/obj/item/reagent_containers/glass/bottle/bubblebath,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"arE" = (/obj/machinery/door/window/southright,/obj/landmark{name = "blobstart"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"arF" = (/obj/window/cubicle{tag = "icon-cubicle"; icon_state = "cubicle"; dir = 2},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"arG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arI" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"arJ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"arG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arI" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"arJ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"arK" = (/obj/machinery/shower,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/showers)
"arL" = (/obj/fitness/speedbag/clown,/turf/simulated/floor{tag = "icon-wooden-2"; icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"arM" = (/turf/simulated/floor{tag = "icon-corner_west"; icon_state = "corner_west"; dir = 2},/area/station/crew_quarters/fitness)
@@ -943,11 +943,11 @@
"asg" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"ash" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1446; name = "Botany Intercom"; pixel_x = 0; pixel_y = -26},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/catering)
"asi" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Catering Storage"; req_access_txt = "25;28;"; req_only_one_required = 1},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/catering)
-"asj" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"ask" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"asl" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"; tag = "icon-yellowcorner (WEST)"},/area/station/hallway/primary/port)
-"asm" = (/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
-"asn" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/port)
+"asj" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"ask" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"asl" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"; tag = "icon-yellowcorner (WEST)"},/area/station/hallway/primary/west)
+"asm" = (/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
+"asn" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/west)
"aso" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"asp" = (/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/hydroponics/lobby)
"asq" = (/obj/submachine/cargopad{name = "Botany Pad"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
@@ -958,7 +958,7 @@
"asv" = (/obj/machinery/plantpot,/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"asw" = (/obj/submachine/seed_vendor,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"asx" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hydroponics)
-"asy" = (/obj/machinery/power/solar,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/aft)
+"asy" = (/obj/machinery/power/solar,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/south)
"asz" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoorright1"; id = "hangar_bridge"; name = "Command Hangar"; tag = "icon-bdoorright1 (NORTH)"},/turf/simulated/floor/shuttlebay,/area/station/hangar/sec)
"asA" = (/obj/machinery/door_control{id = "hangar_bridge"; name = "Command Hangar Door Control"; pixel_x = 24; pixel_y = 0},/obj/closet/weldsupply,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hangar/sec)
"asB" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/storage/firstaid/regular,/obj/item/device/healthanalyzer,/obj/item/reagent_containers/syringe,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/station/security/brig)
@@ -983,8 +983,8 @@
"asU" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"asV" = (/obj/chem_sink{dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area)
"asW" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/bathroom)
-"asX" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"asY" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"asX" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"asY" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"asZ" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"ata" = (/obj/table/reinforced{dir = 5; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/item/clothing/gloves/boxing,/obj/item/clothing/under/shorts/black,/obj/item/clothing/under/shorts/black,/obj/window/reinforced/north,/turf/simulated/floor{tag = "icon-wooden-2"; icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
"atb" = (/obj/machinery/door/window/northright,/turf/simulated/floor{tag = "icon-wooden-2"; icon_state = "wooden-2"},/area/station/crew_quarters/fitness)
@@ -1012,10 +1012,10 @@
"atx" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/storage/auxillary{name = "Tool Storage"})
"aty" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/storage/auxillary{name = "Tool Storage"})
"atz" = (/turf/simulated/wall/r_wall,/area/station/storage/auxillary{name = "Tool Storage"})
-"atA" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/port)
-"atB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-greencorner"; icon_state = "greencorner"; dir = 2},/area/station/hallway/primary/port)
-"atC" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/station/hallway/primary/port)
-"atD" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"atA" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/west)
+"atB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-greencorner"; icon_state = "greencorner"; dir = 2},/area/station/hallway/primary/west)
+"atC" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/station/hallway/primary/west)
+"atD" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"atE" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"atF" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"atG" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hydroponics/lobby)
@@ -1026,11 +1026,11 @@
"atL" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"atM" = (/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"atN" = (/obj/table,/obj/item/paper/book/hydroponicsguide,/obj/item/storage/firstaid/regular,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
-"atO" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/aft)
-"atP" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"atQ" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"atR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"atS" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/station/solar/aft)
+"atO" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/south)
+"atP" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"atQ" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"atR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"atS" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/station/solar/south)
"atT" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/table,/obj/item/storage/toolbox/mechanical,/obj/machinery/door_control{id = "hangar_bridge"; name = "Secure Hangar Door Control"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/hangar/sec)
"atU" = (/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/hangar/sec)
"atV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/hangar/sec)
@@ -1058,7 +1058,7 @@
"aur" = (/obj/machinery/door/window/eastleft,/obj/item/storage/toilet,/obj/landmark/start{name = "Staff Assistant"},/obj/window/cubicle{tag = "icon-cubicle (NORTH)"; icon_state = "cubicle"; dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"aus" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
"aut" = (/obj/chem_sink{dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bathroom)
-"auu" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"auu" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"auv" = (/turf/simulated/wall,/area/station/crew_quarters/arcade)
"auw" = (/obj/machinery/computer/arcade,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"aux" = (/obj/decal/cleanable/vomit,/obj/machinery/computer/arcade,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
@@ -1092,8 +1092,8 @@
"auZ" = (/obj/machinery/recharge_station{allow_clothes = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/storage/auxillary{name = "Tool Storage"})
"ava" = (/obj/closet/office,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/storage/auxillary{name = "Tool Storage"})
"avb" = (/obj/rack,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/extinguisher,/obj/item/reagent_containers/glass/oilcan,/turf/simulated/floor{dir = 5; icon_state = "yellow"; tag = "icon-yellow (NORTHEAST)"},/area/station/storage/auxillary{name = "Tool Storage"})
-"avc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/port)
-"avd" = (/turf/simulated/wall,/area/station/hallway/primary/port)
+"avc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/west)
+"avd" = (/turf/simulated/wall,/area/station/hallway/primary/west)
"ave" = (/obj/table,/obj/machinery/recharger,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"avf" = (/obj/critter/roach,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"avg" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
@@ -1103,8 +1103,8 @@
"avk" = (/obj/machinery/plantpot,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"avl" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hydroponics)
"avm" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
-"avn" = (/obj/machinery/power/solar,/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/aft)
-"avo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/aft)
+"avn" = (/obj/machinery/power/solar,/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/south)
+"avo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/south)
"avp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay,/area/station/hangar/sec)
"avq" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hangar/sec)
"avr" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1489; name = "Brig Intercom"; pixel_x = -26; pixel_y = 0},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/station/security/brig)
@@ -1120,7 +1120,7 @@
"avB" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1489; name = "Brig Intercom"; pixel_x = 26; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; invisibility = 101; name = "autoname - Entertainment"; network = "Zeta"; tag = ""},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/security/brig)
"avC" = (/obj/disposalpipe/loafer,/obj/decal/glow{brightness = 3; invisibility = 101; luminosity = 0; name = "glow - WHITE"; sd_ColorBlue = 0.35; sd_ColorGreen = 0.35; sd_ColorRed = 0.35},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/wreckage)
"avD" = (/obj/decal/cleanable/dirt,/obj/disposalpipe/segment,/obj/computerframe{desc = "It is highly unlikely that this still works."; icon = 'computer.dmi'; icon_state = "datamedb"; name = "smashed computer"},/obj/decal/glow{brightness = 3; invisibility = 101; luminosity = 0; name = "glow - WHITE"; sd_ColorBlue = 0.35; sd_ColorGreen = 0.35; sd_ColorRed = 0.35},/turf/simulated/floor/plating/airless,/area/station/wreckage)
-"avE" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"avE" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"avF" = (/obj/machinery/door/unpowered/wood{name = "The Snip"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"avG" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/barber_shop)
"avH" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/crew_quarters/locker)
@@ -1153,8 +1153,8 @@
"awi" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"awj" = (/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"awk" = (/obj/machinery/vending/standard,/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/storage/auxillary{name = "Tool Storage"})
-"awl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/port)
-"awm" = (/obj/closet/emcloset,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
+"awl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/west)
+"awm" = (/obj/closet/emcloset,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
"awn" = (/obj/rack,/obj/item/storage/toolbox/emergency,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"awo" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
"awp" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics/lobby)
@@ -1184,10 +1184,10 @@
"awN" = (/obj/machinery/light/small{dir = 1},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/security/brig)
"awO" = (/obj/machinery/shower{tag = "icon-showerhead (NORTH)"; icon_state = "showerhead"; dir = 1},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/security/brig)
"awP" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/security/brig)
-"awQ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"awR" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"awS" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"awT" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"awQ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"awR" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"awS" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"awT" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"awU" = (/obj/stool/chair/comfy,/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
"awV" = (/obj/table,/obj/item/clothing/head/wig,/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
"awW" = (/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
@@ -1220,7 +1220,7 @@
"axx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"axy" = (/obj/stool,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"axz" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/computer3/generic/personal,/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/storage/auxillary{name = "Tool Storage"})
-"axA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/port)
+"axA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/west)
"axB" = (/obj/machinery/door/firedoor/border_only,/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hydroponics/lobby)
"axC" = (/turf/simulated/wall,/area/station/hydroponics)
"axD" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hydroponics)
@@ -1244,10 +1244,10 @@
"axV" = (/obj/disposalpipe/trunk{dir = 8},/obj/table/reinforced{dir = 5; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/disposaloutlet{dir = 8; mailgroup = "security"; message = "Brig delivery chute activated."},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/security/brig)
"axW" = (/obj/item/storage/toilet,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/security/brig)
"axX" = (/obj/item/storage/pill_bottle/cyberpunk,/obj/chem_sink{dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/security/brig)
-"axY" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/maintenance/fpmaint)
-"axZ" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/maintenance/fpmaint)
-"aya" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ayb" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"axY" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/maintenance/NWmaint)
+"axZ" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/maintenance/NWmaint)
+"aya" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ayb" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"ayc" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"ayd" = (/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"aye" = (/obj/machinery/door/unpowered/wood{name = "The Snip"},/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
@@ -1286,8 +1286,8 @@
"ayL" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/wrench,/obj/item/device/analyzer,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/storage/auxillary{name = "Tool Storage"})
"ayM" = (/obj/stool,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"ayN" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/storage/auxillary{name = "Tool Storage"})
-"ayO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/port)
-"ayP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
+"ayO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/west)
+"ayP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
"ayQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall/r_wall,/area/station/hydroponics/lobby)
"ayR" = (/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"; tag = "icon-chair_couch-brown (WEST)"},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/paper/book/hydroponicsguide,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/item/reagent_containers/glass/bottle/eyedrops,/turf/simulated/floor{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/station/hydroponics/lobby)
"ayS" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"; tag = "icon-chair_couch-brown (EAST)"},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hydroponics/lobby)
@@ -1312,10 +1312,10 @@
"azl" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/security/brig)
"azm" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/security/brig)
"azn" = (/obj/disposalpipe/segment,/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/window/reinforced/north,/turf/simulated/floor{icon_state = "dark"},/area/station/security/brig)
-"azo" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"azp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"azq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"azr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"azo" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"azp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"azq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"azr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"azs" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/obj/decal/cleanable/ash,/obj/item/cigbutt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
"azt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall,/area/station/crew_quarters/barber_shop)
"azu" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
@@ -1352,7 +1352,7 @@
"azZ" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/storage/auxillary{name = "Tool Storage"})
"aAa" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/storage/auxillary{name = "Tool Storage"})
"aAb" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/storage/auxillary{name = "Tool Storage"})
-"aAc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/port)
+"aAc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hallway/primary/west)
"aAd" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/hydroponics/lobby)
"aAe" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/turf/simulated/floor{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/station/hydroponics/lobby)
"aAf" = (/turf/simulated/floor{tag = "icon-greencorner (NORTH)"; icon_state = "greencorner"; dir = 1},/area/station/hydroponics/lobby)
@@ -1369,18 +1369,18 @@
"aAq" = (/obj/stool,/turf/simulated/floor,/area/station/hydroponics)
"aAr" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/plate,/obj/item/reagent_containers/food/snacks/sandwich/meat_s{name = "all-natural organic synthmeat sandwich"; desc = "It's confusing, I know."; pixel_x = 2; pixel_y = 3},/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hydroponics)
"aAs" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
-"aAt" = (/obj/machinery/power/tracker,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"aAu" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/aft)
-"aAv" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/aft)
-"aAw" = (/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"aAx" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAy" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAz" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAA" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAC" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aAD" = (/turf/simulated/wall/r_wall,/area/station/maintenance/aftsolar)
-"aAE" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aAt" = (/obj/machinery/power/tracker,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"aAu" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/south)
+"aAv" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/south)
+"aAw" = (/turf/simulated/wall,/area/station/maintenance/southsolar)
+"aAx" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAy" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAz" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAA" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAC" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aAD" = (/turf/simulated/wall/r_wall,/area/station/maintenance/southsolar)
+"aAE" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aAF" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/security/brig)
"aAG" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/security{name = "Brig"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/security/brig)
"aAH" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-Stairs_alone (WEST)"; icon_state = "Stairs_alone"; dir = 8},/area/station/security/brig)
@@ -1446,18 +1446,18 @@
"aBP" = (/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hydroponics)
"aBQ" = (/obj/landmark/start{name = "Botanist"},/turf/simulated/floor,/area/station/hydroponics)
"aBR" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/reagent_containers/glass/bottle/fruitful,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hydroponics)
-"aBS" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/aft)
-"aBT" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aBU" = (/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aBV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/table,/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aBW" = (/obj/cable{tag = "icon-4-10"; icon_state = "4-10"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aBX" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aBY" = (/obj/machinery/atmospherics/portables_connector{name = "Bridge Repressurization Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aBZ" = (/obj/machinery/atmospherics/portables_connector{name = "Courtroom Repressurization Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCa" = (/obj/machinery/atmospherics/portables_connector{name = "Brig Repressurization Port"},/obj/cable{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCb" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/space_heater,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aCc" = (/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/aftsolar)
-"aCd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aBS" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/south)
+"aBT" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aBU" = (/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aBV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/table,/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aBW" = (/obj/cable{tag = "icon-4-10"; icon_state = "4-10"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aBX" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aBY" = (/obj/machinery/atmospherics/portables_connector{name = "Bridge Repressurization Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aBZ" = (/obj/machinery/atmospherics/portables_connector{name = "Courtroom Repressurization Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCa" = (/obj/machinery/atmospherics/portables_connector{name = "Brig Repressurization Port"},/obj/cable{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCb" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/space_heater,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aCc" = (/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/southsolar)
+"aCd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aCe" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/security/brig)
"aCf" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/security/brig)
"aCg" = (/obj/disposalpipe/segment,/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/security/brig)
@@ -1522,19 +1522,19 @@
"aDn" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/hydroponics)
"aDo" = (/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/hydroponics)
"aDp" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/reagent_containers/glass/bottle/powerplant,/turf/simulated/floor{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/station/hydroponics)
-"aDq" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/aft)
-"aDr" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDv" = (/obj/cable{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDw" = (/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDx" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDy" = (/obj/machinery/atmospherics/valve{name = "Bridge"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDz" = (/obj/machinery/atmospherics/valve{name = "Courtroom"},/obj/cable{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDA" = (/obj/machinery/atmospherics/valve{name = "Brig"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aDC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aDq" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/south)
+"aDr" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDv" = (/obj/cable{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDw" = (/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDx" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDy" = (/obj/machinery/atmospherics/valve{name = "Bridge"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDz" = (/obj/machinery/atmospherics/valve{name = "Courtroom"},/obj/cable{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDA" = (/obj/machinery/atmospherics/valve{name = "Brig"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aDC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aDD" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/security/brig)
"aDE" = (/obj/grille,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/security/brig)
"aDF" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/station/security/brig)
@@ -1562,8 +1562,8 @@
"aEb" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/window/cubicle{tag = "icon-cubicle (EAST)"; icon_state = "cubicle"; dir = 4},/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/hallway/primary/central)
"aEc" = (/obj/submachine/ATM{pixel_x = 32; pixel_y = 0},/obj/window/cubicle{dir = 8},/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/hallway/primary/central)
"aEd" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/central)
-"aEe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aEf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aEe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aEf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aEg" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/arcade)
"aEh" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"aEi" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
@@ -1592,18 +1592,18 @@
"aEF" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor{tag = "icon-fullgreen"; icon_state = "fullgreen"},/area/station/hydroponics/lobby)
"aEG" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hydroponics)
"aEH" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hydroponics)
-"aEI" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEJ" = (/obj/securearea,/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"aEK" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEM" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEN" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEO" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEP" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aEQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aER" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aES" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aET" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aEI" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEJ" = (/obj/securearea,/turf/simulated/wall,/area/station/maintenance/southsolar)
+"aEK" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEM" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEN" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEO" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEP" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aEQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aER" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aES" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aET" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aEU" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/security/brig)
"aEV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/security/brig)
"aEW" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/stool/chair{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
@@ -1644,39 +1644,39 @@
"aFF" = (/obj/machinery/portable_atmospherics/canister/air,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"aFG" = (/obj/rack,/obj/item/wrench,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/extinguisher,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/emergency)
"aFH" = (/obj/grille,/turf/simulated/floor/plating,/area/station/crew_quarters/catering)
-"aFI" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aFJ" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aFK" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aFL" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aFM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aFN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aFO" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aFP" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/port)
-"aFQ" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/station/hallway/primary/port)
-"aFR" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aFS" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aFT" = (/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aFU" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1446; name = "Botany Intercom"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aFV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aFW" = (/obj/noticeboard{pixel_y = 28},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
-"aFX" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/machinery/vending/cola/blue,/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/port)
+"aFI" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aFJ" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aFK" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aFL" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aFM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aFN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aFO" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aFP" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/west)
+"aFQ" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/station/hallway/primary/west)
+"aFR" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aFS" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aFT" = (/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aFU" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1446; name = "Botany Intercom"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aFV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aFW" = (/obj/noticeboard{pixel_y = 28},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
+"aFX" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/machinery/vending/cola/blue,/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/primary/west)
"aFY" = (/turf/simulated/floor{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/station/hydroponics)
"aFZ" = (/obj/landmark/start{name = "Botanist"},/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/hydroponics)
"aGa" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/station/hydroponics)
"aGb" = (/obj/machinery/vending/hydroponics,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
-"aGc" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/aft)
+"aGc" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/south)
"aGd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/lattice,/turf/space,/area)
-"aGe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"aGf" = (/obj/machinery/power/solar_control,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGg" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGi" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGj" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/emptybox,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGl" = (/obj/rack,/obj/item/device/radio,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/glowstick,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"aGo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aGe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/southsolar)
+"aGf" = (/obj/machinery/power/solar_control,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGg" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGi" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGj" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/emptybox,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGl" = (/obj/rack,/obj/item/device/radio,/obj/item/wrench,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/glowstick,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"aGo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aGp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/security/brig)
"aGq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/port_a_brig,/obj/item/paper/Port_A_Brig,/turf/simulated/floor{icon_state = "bot"},/area/station/security/brig)
"aGr" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/security/brig)
@@ -1721,24 +1721,24 @@
"aHe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Emergency Storage"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"aHf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Emergency Storage"},/turf/simulated/floor{icon_state = "delivery"},/area/station/storage/emergency)
"aHg" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/storage/emergency)
-"aHh" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/port)
-"aHi" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHj" = (/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHm" = (/obj/landmark/halloween,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour3;desc=Are you in need of spiritual counseling? Your station's theological staff is here to provide counseling and uplifting advice in the Chapel. The pen-and-paper game club meets in here too! Your station's hard-working Janitor's office is down below the Chapel. There's also a fully equipped hydroponics facility on this end of the station, helping to keep everyone healthy with bushels and bushels of tasty fruits and veggies!"; freq = 1443; location = "tour2"; name = "tour beacon - chapel"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "hydroponics"; name = "hydroponics mail router"; tag = "icon-pipe-sj1 (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHs" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aHt" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/port)
+"aHh" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/west)
+"aHi" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHj" = (/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHl" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHm" = (/obj/landmark/halloween,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour3;desc=Are you in need of spiritual counseling? Your station's theological staff is here to provide counseling and uplifting advice in the Chapel. The pen-and-paper game club meets in here too! Your station's hard-working Janitor's office is down below the Chapel. There's also a fully equipped hydroponics facility on this end of the station, helping to keep everyone healthy with bushels and bushels of tasty fruits and veggies!"; freq = 1443; location = "tour2"; name = "tour beacon - chapel"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "hydroponics"; name = "hydroponics mail router"; tag = "icon-pipe-sj1 (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHs" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aHt" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/west)
"aHu" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hydroponics)
"aHv" = (/obj/landmark/halloween,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aHw" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hydroponics)
-"aHx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/aft)
-"aHy" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aHx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/south)
+"aHy" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aHz" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/security/main)
"aHA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "1"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/security/main)
"aHB" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/security/main)
@@ -1783,22 +1783,22 @@
"aIo" = (/obj/disposalpipe/segment{dir = 4},/obj/stool/bar,/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/cafeteria)
"aIp" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/crew_quarters/cafeteria)
"aIq" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/obj/machinery/vending/fortune,/obj/decal/cleanable/cobweb2,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
-"aIr" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIs" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIt" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIv" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/port)
-"aIz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/port)
-"aIA" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/port)
-"aID" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
-"aIE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stationMapWall{pixel_y = -28},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
-"aIF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
-"aIG" = (/obj/machinery/light,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
+"aIr" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIs" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIt" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIv" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/west)
+"aIz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/west)
+"aIA" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/west)
+"aID" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
+"aIE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stationMapWall{pixel_y = -28},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
+"aIF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
+"aIG" = (/obj/machinery/light,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
"aIH" = (/obj/grille,/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/chapel/main)
"aII" = (/obj/grille,/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aIJ" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/chapel/main)
@@ -1848,13 +1848,13 @@
"aJB" = (/obj/machinery/navbeacon{codes_txt = "patrol"; freq = 1443; location = "bar"; name = "bot navigation beacon"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aJC" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; icon_state = "on"; on = 1},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aJD" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=pool"; location = "bar"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
-"aJE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJF" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJG" = (/obj/disposalpipe/junction{tag = "icon-pipe-j1 (WEST)"; icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJH" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJI" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJJ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJK" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 4; icon_state = "neutral"; tag = "icon-neutral (WEST)"},/area/station/hallway/primary/port)
+"aJE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJF" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJG" = (/obj/disposalpipe/junction{tag = "icon-pipe-j1 (WEST)"; icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJH" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJI" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJJ" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJK" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 4; icon_state = "neutral"; tag = "icon-neutral (WEST)"},/area/station/hallway/primary/west)
"aJL" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/chapel/main)
"aJM" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aJN" = (/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
@@ -1863,7 +1863,7 @@
"aJQ" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"aJR" = (/obj/table,/obj/item/wrench,/obj/item/reagent_containers/glass/bottle/weedkiller,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aJS" = (/obj/machinery/plantpot,/obj/machinery/light,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
-"aJT" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aJT" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aJU" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/security/main)
"aJV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/security/main)
"aJW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/security/main)
@@ -1912,16 +1912,16 @@
"aKN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/window/reinforced/south,/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "arrivals"; name = "kitchen mail router"; tag = "icon-pipe-sj1 (NORTH)"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aKO" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour2;desc=A happy crew is a productive crew! During approved breaks, please enjoy your station's cafeteria and lounge. Be sure to drink responsibly though!"; freq = 1443; location = "tour1"; name = "tour beacon - bar"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
"aKP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/cafeteria)
-"aKQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "kitchen"; name = "kitchen mail router"; tag = "icon-pipe-sj1 (NORTH)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/port)
-"aKW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
-"aKX" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
-"aKY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/port)
-"aKZ" = (/obj/shrub{tag = "icon-shrub (SOUTHWEST)"; icon_state = "shrub"; dir = 10},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/station/hallway/primary/port)
+"aKQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "kitchen"; name = "kitchen mail router"; tag = "icon-pipe-sj1 (NORTH)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/west)
+"aKW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
+"aKX" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
+"aKY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/west)
+"aKZ" = (/obj/shrub{tag = "icon-shrub (SOUTHWEST)"; icon_state = "shrub"; dir = 10},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/station/hallway/primary/west)
"aLa" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/chapel/main)
"aLb" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"aLc" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/stool/chair/couch{tag = "icon-chair_couch-brown (WEST)"; icon_state = "chair_couch-brown"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
@@ -1967,13 +1967,13 @@
"aLQ" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/crew_quarters/cafeteria)
"aLR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-stairs_middle"; icon_state = "stairs_middle"},/area/station/crew_quarters/cafeteria)
"aLS" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/crew_quarters/cafeteria)
-"aLT" = (/obj/shrub,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "blue"; tag = "icon-blue (NORTH)"},/area/station/hallway/primary/port)
-"aLU" = (/turf/simulated/floor{dir = 2; icon_state = "blue"; tag = "icon-blue (NORTH)"},/area/station/hallway/primary/port)
-"aLV" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{dir = 2; icon_state = "blue"; tag = "icon-blue (NORTH)"},/area/station/hallway/primary/port)
-"aLW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; layer = 9.6; name = "Medical Intercom"; pixel_x = 0; pixel_y = -24},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"; tag = "icon-bluecorner"},/area/station/hallway/primary/port)
-"aLX" = (/obj/disposalpipe/junction,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aLY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Chapel"},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/port)
-"aLZ" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
+"aLT" = (/obj/shrub,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "blue"; tag = "icon-blue (NORTH)"},/area/station/hallway/primary/west)
+"aLU" = (/turf/simulated/floor{dir = 2; icon_state = "blue"; tag = "icon-blue (NORTH)"},/area/station/hallway/primary/west)
+"aLV" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{dir = 2; icon_state = "blue"; tag = "icon-blue (NORTH)"},/area/station/hallway/primary/west)
+"aLW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; layer = 9.6; name = "Medical Intercom"; pixel_x = 0; pixel_y = -24},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"; tag = "icon-bluecorner"},/area/station/hallway/primary/west)
+"aLX" = (/obj/disposalpipe/junction,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aLY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Chapel"},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/west)
+"aLZ" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
"aMa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aMb" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aMc" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
@@ -1990,7 +1990,7 @@
"aMn" = (/obj/grille,/turf/space,/area/station/com_dish/comdish{sd_lighting = 0})
"aMo" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/bridge)
"aMp" = (/turf/simulated/wall/r_wall,/area/station/bridge)
-"aMq" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aMq" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aMr" = (/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/security/main)
"aMs" = (/obj/machinery/door/airlock/glass{name = "Locker Room"; req_access_txt = "1"},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
"aMt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "delivery"},/area/station/security/main)
@@ -2028,12 +2028,12 @@
"aMZ" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "carpetN"},/area/station/crew_quarters/cafeteria)
"aNa" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/crew_quarters/cafeteria)
"aNb" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/cafeteria)
-"aNc" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/cable,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/port)
-"aNd" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/window/reinforced/north,/obj/item/paper_bin,/obj/item/stamp,/obj/item/paper/book/medical_guide,/obj/item/storage/patchbox,/obj/item/clipboard,/obj/item/hand_labeler,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/port)
-"aNe" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/window/westright{dir = 1; name = "Medical Booth"; req_access_txt = "5"},/obj/machinery/cashreg,/obj/item/clothing/glasses/healthgoggles,/obj/item/pen,/obj/window/reinforced/east,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/port)
-"aNf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Medical Booth"; req_access_txt = "5"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/port)
-"aNg" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aNh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aNc" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/cable,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/west)
+"aNd" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/window/reinforced/north,/obj/item/paper_bin,/obj/item/stamp,/obj/item/paper/book/medical_guide,/obj/item/storage/patchbox,/obj/item/clipboard,/obj/item/hand_labeler,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/west)
+"aNe" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/window/westright{dir = 1; name = "Medical Booth"; req_access_txt = "5"},/obj/machinery/cashreg,/obj/item/clothing/glasses/healthgoggles,/obj/item/pen,/obj/window/reinforced/east,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/west)
+"aNf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Medical Booth"; req_access_txt = "5"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "fullblue"},/area/station/hallway/primary/west)
+"aNg" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aNh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aNi" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aNj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aNk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
@@ -2052,7 +2052,7 @@
"aNx" = (/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/grid,/area/station/bridge)
"aNy" = (/obj/stool/chair{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/grid,/area/station/bridge)
"aNz" = (/obj/machinery/computer3/generic/radio,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor/grid,/area/station/bridge)
-"aNA" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aNA" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aNB" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/cable,/turf/simulated/floor/plating,/area/station/security/main)
"aNC" = (/obj/disposalpipe/junction{dir = 1},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/station/security/main)
"aND" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/security/main)
@@ -2094,12 +2094,12 @@
"aOn" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"},/area/station/crew_quarters/cafeteria)
"aOo" = (/obj/fudad{name = "Arthur Muggins Memorial Jazz Lounge"},/turf/simulated/wall/r_wall,/area/station/crew_quarters/cafeteria)
"aOp" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/crew_quarters/cafeteria)
-"aOq" = (/obj/machinery/computer3/generic/med_data,/turf/simulated/floor{tag = "icon-bluewhite (NORTHWEST)"; icon_state = "bluewhite"; dir = 9},/area/station/hallway/primary/port)
-"aOr" = (/obj/stool/chair/office{tag = "icon-office_chair (WEST)"; icon_state = "office_chair"; dir = 8},/turf/simulated/floor{tag = "icon-bluewhite (NORTH)"; icon_state = "bluewhite"; dir = 1},/area/station/hallway/primary/port)
-"aOs" = (/turf/simulated/floor{tag = "icon-bluewhite (NORTH)"; icon_state = "bluewhite"; dir = 1},/area/station/hallway/primary/port)
-"aOt" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-bluewhite (NORTHEAST)"; icon_state = "bluewhite"; dir = 5},/area/station/hallway/primary/port)
-"aOu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aOv" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/port)
+"aOq" = (/obj/machinery/computer3/generic/med_data,/turf/simulated/floor{tag = "icon-bluewhite (NORTHWEST)"; icon_state = "bluewhite"; dir = 9},/area/station/hallway/primary/west)
+"aOr" = (/obj/stool/chair/office{tag = "icon-office_chair (WEST)"; icon_state = "office_chair"; dir = 8},/turf/simulated/floor{tag = "icon-bluewhite (NORTH)"; icon_state = "bluewhite"; dir = 1},/area/station/hallway/primary/west)
+"aOs" = (/turf/simulated/floor{tag = "icon-bluewhite (NORTH)"; icon_state = "bluewhite"; dir = 1},/area/station/hallway/primary/west)
+"aOt" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-bluewhite (NORTHEAST)"; icon_state = "bluewhite"; dir = 5},/area/station/hallway/primary/west)
+"aOu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aOv" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/west)
"aOw" = (/obj/table/woodentable{dir = 4},/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aOx" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aOy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2119,7 +2119,7 @@
"aOM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aON" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aOO" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance{name = "Bridge Maintenance"; req_access_txt = "19"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aOP" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"aOP" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"aOQ" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall/r_wall,/area/station/security/hos)
"aOR" = (/turf/simulated/wall/r_wall,/area/station/security/hos)
"aOS" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{tag = "icon-red (WEST)"; icon_state = "red"; dir = 8},/area/station/security/main)
@@ -2149,12 +2149,12 @@
"aPq" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
"aPr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
"aPs" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"aPt" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aPu" = (/obj/table/reinforced,/obj/item/reagent_containers/glass/beaker/large/epinephrine,/obj/item/reagent_containers/glass/beaker/large/burn,/obj/item/reagent_containers/glass/beaker/large/brute,/obj/item/reagent_containers/glass/beaker/large/antitox,/obj/item/clothing/glasses/healthgoggles,/obj/item/reagent_containers/hypospray,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-bluewhite (WEST)"; icon_state = "bluewhite"; dir = 8},/area/station/hallway/primary/port)
-"aPv" = (/turf/simulated/floor{icon_state = "white"},/area/station/hallway/primary/port)
-"aPw" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-bluewhite (EAST)"; icon_state = "bluewhite"; dir = 4},/area/station/hallway/primary/port)
-"aPx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aPy" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTH)"},/area/station/hallway/primary/port)
+"aPt" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aPu" = (/obj/table/reinforced,/obj/item/reagent_containers/glass/beaker/large/epinephrine,/obj/item/reagent_containers/glass/beaker/large/burn,/obj/item/reagent_containers/glass/beaker/large/brute,/obj/item/reagent_containers/glass/beaker/large/antitox,/obj/item/clothing/glasses/healthgoggles,/obj/item/reagent_containers/hypospray,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-bluewhite (WEST)"; icon_state = "bluewhite"; dir = 8},/area/station/hallway/primary/west)
+"aPv" = (/turf/simulated/floor{icon_state = "white"},/area/station/hallway/primary/west)
+"aPw" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-bluewhite (EAST)"; icon_state = "bluewhite"; dir = 4},/area/station/hallway/primary/west)
+"aPx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aPy" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTH)"},/area/station/hallway/primary/west)
"aPz" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table/woodentable{dir = 4},/obj/machinery/networked/printer{print_id = "Chapel"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aPA" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aPB" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2213,10 +2213,10 @@
"aQC" = (/obj/window/reinforced/west,/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/routingdepot/catering)
"aQD" = (/obj/window/reinforced/west,/obj/crate,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/item/storage/emptybox,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/routingdepot/catering)
"aQE" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"aQF" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aQG" = (/turf/simulated/floor{tag = "icon-bluewhite (WEST)"; icon_state = "bluewhite"; dir = 8},/area/station/hallway/primary/port)
-"aQH" = (/obj/disposalpipe/segment,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{tag = "icon-bluewhite (EAST)"; icon_state = "bluewhite"; dir = 4},/area/station/hallway/primary/port)
-"aQI" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/port)
+"aQF" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aQG" = (/turf/simulated/floor{tag = "icon-bluewhite (WEST)"; icon_state = "bluewhite"; dir = 8},/area/station/hallway/primary/west)
+"aQH" = (/obj/disposalpipe/segment,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{tag = "icon-bluewhite (EAST)"; icon_state = "bluewhite"; dir = 4},/area/station/hallway/primary/west)
+"aQI" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/west)
"aQJ" = (/obj/table/woodentable{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"aQK" = (/obj/machinery/light/emergency,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aQL" = (/obj/table/woodentable{dir = 10},/turf/simulated/floor{icon_state = "carpet2"},/area/station/chapel/main)
@@ -2243,8 +2243,8 @@
"aRg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor{icon_state = "carpetS"},/area/station/security/main)
"aRh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/security/main)
"aRi" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/security/main)
-"aRj" = (/turf/simulated/wall,/area/station/maintenance/fore)
-"aRk" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/fore)
+"aRj" = (/turf/simulated/wall,/area/station/maintenance/north)
+"aRk" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/north)
"aRl" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/security/beepsky)
"aRm" = (/obj/item/cigbutt,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/security/beepsky)
"aRn" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{tag = "icon-bedsheet-red"; icon_state = "bedsheet-red"},/turf/simulated/floor/plating,/area/station/security/beepsky)
@@ -2259,13 +2259,13 @@
"aRw" = (/obj/window/reinforced/east,/obj/crate,/obj/item/storage/box,/obj/item/storage/box,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/routingdepot/catering)
"aRx" = (/obj/machinery/mass_driver{id = "catering_out"},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/routingdepot/catering)
"aRy" = (/obj/window/reinforced/west,/obj/crate,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/storage/emptybox,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/routingdepot/catering)
-"aRz" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aRA" = (/obj/machinery/vending/medical,/turf/simulated/floor{tag = "icon-bluewhite (SOUTHWEST)"; icon_state = "bluewhite"; dir = 10},/area/station/hallway/primary/port)
-"aRB" = (/obj/secure_closet/medical1,/turf/simulated/floor{tag = "icon-bluewhite"; icon_state = "bluewhite"; dir = 2},/area/station/hallway/primary/port)
-"aRC" = (/obj/machinery/disposal{name = "Morgue Delivery Chute"},/obj/disposalpipe/trunk,/turf/simulated/floor{tag = "icon-bluewhite"; icon_state = "bluewhite"; dir = 2},/area/station/hallway/primary/port)
-"aRD" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{tag = "icon-bluewhite (SOUTHEAST)"; icon_state = "bluewhite"; dir = 6},/area/station/hallway/primary/port)
-"aRE" = (/obj/closet/firecloset,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/port)
-"aRF" = (/turf/simulated/floor{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/station/hallway/primary/port)
+"aRz" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aRA" = (/obj/machinery/vending/medical,/turf/simulated/floor{tag = "icon-bluewhite (SOUTHWEST)"; icon_state = "bluewhite"; dir = 10},/area/station/hallway/primary/west)
+"aRB" = (/obj/secure_closet/medical1,/turf/simulated/floor{tag = "icon-bluewhite"; icon_state = "bluewhite"; dir = 2},/area/station/hallway/primary/west)
+"aRC" = (/obj/machinery/disposal{name = "Morgue Delivery Chute"},/obj/disposalpipe/trunk,/turf/simulated/floor{tag = "icon-bluewhite"; icon_state = "bluewhite"; dir = 2},/area/station/hallway/primary/west)
+"aRD" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{tag = "icon-bluewhite (SOUTHEAST)"; icon_state = "bluewhite"; dir = 6},/area/station/hallway/primary/west)
+"aRE" = (/obj/closet/firecloset,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/west)
+"aRF" = (/turf/simulated/floor{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/station/hallway/primary/west)
"aRG" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/chapel/main)
"aRH" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/chapel/main)
"aRI" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/chapel/main)
@@ -2317,12 +2317,12 @@
"aSC" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall,/area/station/routingdepot/catering)
"aSD" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "catering_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/catering)
"aSE" = (/obj/machinery/mass_driver{id = "catering_out"},/obj/machinery/door/poddoor{id = "catering_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/catering)
-"aSF" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aSG" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aSH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/port)
-"aSI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"aSJ" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSK" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aSF" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aSG" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aSH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/west)
+"aSI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"aSJ" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSK" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aSL" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/chapel/main)
"aSM" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aSN" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; icon_state = "on"; on = 1},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2353,11 +2353,11 @@
"aTm" = (/obj/stool/chair{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
"aTn" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
"aTo" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
-"aTp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "dark"},/area/station/maintenance/fore)
-"aTq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aTr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aTs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aTt" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aTp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "dark"},/area/station/maintenance/north)
+"aTq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aTr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aTs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aTt" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aTu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"aTv" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"aTw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -2371,7 +2371,7 @@
"aTE" = (/obj/machinery/door/unpowered/wood,/turf/simulated/floor{tag = "icon-wooden-2"; icon_state = "wooden-2"},/area/station/crew_quarters/pool)
"aTF" = (/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 3; name = "FIRE HAZARD"; tag = "icon-bio"},/turf/simulated/wall{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/pool)
"aTG" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"aTH" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aTH" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aTI" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aTJ" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aTK" = (/obj/stool,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -2398,8 +2398,8 @@
"aUf" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aUg" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aUh" = (/obj/closet/lawcloset,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
-"aUi" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aUj" = (/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aUi" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aUj" = (/turf/simulated/floor/plating,/area/station/maintenance/north)
"aUk" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"aUl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "black"; tag = "icon-black (NORTH)"},/area/station/hallway/primary/central)
"aUm" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
@@ -2448,10 +2448,10 @@
"aVd" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-black (NORTH)"; icon_state = "black"; dir = 1},/area/station/crew_quarters/courtroom)
"aVe" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aVf" = (/obj/closet/lawcloset,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom)
-"aVg" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aVh" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aVi" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aVj" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aVg" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aVh" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aVi" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aVj" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/obj/item/tank/air,/turf/simulated/floor/plating,/area/station/maintenance/north)
"aVk" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "black"; tag = "icon-black (NORTH)"},/area/station/hallway/primary/central)
"aVl" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"aVm" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -2468,7 +2468,7 @@
"aVx" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/obj/stool/chair/couch{tag = "icon-chair_couch-brown (WEST)"; icon_state = "chair_couch-brown"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
"aVy" = (/obj/stool/chair/couch{tag = "icon-chair_couch-brown (EAST)"; icon_state = "chair_couch-brown"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
"aVz" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"aVA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aVA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aVB" = (/obj/morgue{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aVC" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/machinery/crema_switch{id = "crematorium"; pixel_y = 28},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aVD" = (/obj/crematorium{id = "crematorium"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2591,8 +2591,8 @@
"aXQ" = (/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/jazz)
"aXR" = (/obj/stool,/turf/simulated/floor{icon_state = "carpetNE"},/area/station/crew_quarters/jazz)
"aXS" = (/obj/table/woodentable{dir = 9},/obj/item/dice,/obj/item/dice,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"aXT" = (/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"aXU" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aXT" = (/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"aXU" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aXV" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aXW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aXX" = (/obj/disposalpipe/junction,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2655,12 +2655,12 @@
"aZc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/stool,/turf/simulated/floor{icon_state = "carpetE"},/area/station/crew_quarters/jazz)
"aZd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/table/woodentable{tag = "icon-woodentable (WEST)"; icon_state = "woodentable"; dir = 8},/obj/item/game_kit,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
"aZe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/crew_quarters/jazz)
-"aZf" = (/obj/grille,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/aft)
-"aZh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZi" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZj" = (/obj/item/tile,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aZk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aZf" = (/obj/grille,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/south)
+"aZh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZi" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZj" = (/obj/item/tile,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aZk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aZl" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aZm" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"aZn" = (/obj/table,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/device/healthanalyzer,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/reagent_containers/syringe,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
@@ -2705,19 +2705,19 @@
"baa" = (/obj/critter/boogiebot,/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/jazz)
"bab" = (/obj/stool,/turf/simulated/floor{icon_state = "carpetSE"},/area/station/crew_quarters/jazz)
"bac" = (/obj/table/woodentable{tag = "icon-woodentable (SOUTHWEST)"; icon_state = "woodentable"; dir = 10},/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"bad" = (/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bae" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baf" = (/obj/item/crowbar,/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"bag" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"bad" = (/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bae" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baf" = (/obj/item/crowbar,/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"bag" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"bah" = (/obj/table,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/spraybottle/cleaner,/obj/item/pen,/obj/item/hand_labeler,/obj/item/storage/evidence,/obj/item/storage/evidence,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"bai" = (/obj/disposaloutlet{dir = 8; mailgroup = "chaplain"; mailgroup2 = "security"; message = "Delivery alert in Crematorium."; name = "Crematorium Outlet"},/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"baj" = (/obj/closet/wardrobe/chaplain_black,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"bak" = (/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/office)
"bal" = (/turf/simulated/floor{icon_state = "carpetS"},/area/station/chapel/office)
"bam" = (/obj/shrub{tag = "icon-shrub (EAST)"; icon_state = "shrub"; dir = 4},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/chapel/office)
-"ban" = (/obj/closet/coffin,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bao" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/maintenance/aft)
-"bap" = (/obj/creepy_sound_trigger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"ban" = (/obj/closet/coffin,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bao" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/maintenance/south)
+"bap" = (/obj/creepy_sound_trigger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"baq" = (/turf/simulated/wall/false_wall,/area/station/chapel/main)
"bar" = (/obj/stool/chair{dir = 4},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/main)
"bas" = (/obj/table/woodentable{dir = 10},/obj/item/clipboard,/obj/item/clipboard,/obj/item/clipboard,/obj/item/pen,/obj/item/pen,/obj/item/pen,/obj/item/clothing/head/apprentice,/turf/simulated/floor{icon_state = "carpetS"},/area/station/chapel/main)
@@ -2751,14 +2751,14 @@
"baU" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/crew_quarters/jazz)
"baV" = (/obj/disposalpipe/segment{dir = 4},/obj/submachine/ATM{pixel_x = 0; pixel_y = -32},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
"baW" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/jazz)
-"baX" = (/turf/simulated/wall,/area/station/maintenance/aft)
-"baY" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"baX" = (/turf/simulated/wall,/area/station/maintenance/south)
+"baY" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"baZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/crematorium)
"bba" = (/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"; pixel_x = 0; tag = "icon-bio"},/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/medical/crematorium)
"bbb" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/medical/crematorium)
"bbc" = (/turf/simulated/wall/r_wall,/area/station/chapel/office)
-"bbd" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/wall,/area/station/maintenance/aft)
-"bbe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bbd" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/wall,/area/station/maintenance/south)
+"bbe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bbf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/chapel/main)
"bbg" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
"bbh" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
@@ -2794,19 +2794,19 @@
"bbL" = (/obj/lattice{tag = "icon-lattice-dir (SOUTHEAST)"; icon_state = "lattice-dir"; dir = 6},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/space,/area)
"bbM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/false_wall,/area/station/crew_quarters/jazz)
"bbN" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/jazz)
-"bbO" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbP" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"bbQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
+"bbO" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbP" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"bbQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
"bbR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/medical/crematorium)
-"bbS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbT" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbU" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bbV" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bbW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbX" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbY" = (/obj/decal/cleanable/dirt,/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 28},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbZ" = (/obj/machinery/space_heater,/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bca" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/decal/cleanable/cobweb2,/obj/item/device/glowstick,/obj/item/gun/kinetic/zipgun,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bbS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbT" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbU" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bbV" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bbW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbX" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbY" = (/obj/decal/cleanable/dirt,/obj/item/device/radio/intercom{broadcasting = 0; pixel_x = 0; pixel_y = 28},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbZ" = (/obj/machinery/space_heater,/obj/decal/cleanable/dirt,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bca" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/decal/cleanable/cobweb2,/obj/item/device/glowstick,/obj/item/gun/kinetic/zipgun,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bcb" = (/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/lattice{tag = "icon-lattice-dir-b (NORTHWEST)"; icon_state = "lattice-dir-b"; dir = 9},/turf/space,/area)
"bcc" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"bcd" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/item/paper_bin,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -2828,7 +2828,7 @@
"bct" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/cashreg,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bcu" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bcv" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
-"bcw" = (/turf/simulated/wall/r_wall,/area/station/maintenance/fore)
+"bcw" = (/turf/simulated/wall/r_wall,/area/station/maintenance/north)
"bcx" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bcy" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"bcz" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
@@ -2841,21 +2841,21 @@
"bcG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 1; status = 2},/obj/item/clothing/under/misc/syndicate{desc = "Non-descript, slightly suspicious jazzy clothing."; name = "Jazzy Turtleneck"},/obj/item/clothing/head/flatcap,/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"bcH" = (/obj/machinery/power/smes{charge = 1e+006; chargelevel = 15000; output = 10000},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/substation/pylon)
"bcI" = (/obj/disposalpipe/segment,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
-"bcJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bcK" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bcL" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcM" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bcN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bcO" = (/obj/item/tile,/obj/machinery/light/small,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcQ" = (/obj/item/tile{pixel_x = 10; pixel_y = 10},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bcS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bcT" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcU" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcV" = (/obj/decal/cleanable/dirt,/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcW" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/paper{info = "I'm in your station... : )"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bcX" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bcJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bcK" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bcL" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcM" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bcN" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bcO" = (/obj/item/tile,/obj/machinery/light/small,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcQ" = (/obj/item/tile{pixel_x = 10; pixel_y = 10},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bcS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall,/area/station/maintenance/south)
+"bcT" = (/obj/machinery/atmospherics/pipe/simple,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcU" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcV" = (/obj/decal/cleanable/dirt,/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcW" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/paper{info = "I'm in your station... : )"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bcX" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bcY" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
"bcZ" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "lockdown"; name = "Bridge Lockdown Doors"; opacity = 0},/turf/simulated/floor/plating,/area/station/bridge)
"bda" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/captain)
@@ -2874,12 +2874,12 @@
"bdn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bdo" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer/bank_data,/obj/item/stamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bdp" = (/turf/simulated/wall,/area/station/security/checkpoint)
-"bdq" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bdr" = (/obj/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bdq" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bdr" = (/obj/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/north)
"bds" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"bdt" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"bdu" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
-"bdv" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bdv" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/north)
"bdw" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "black"; tag = "icon-black (NORTH)"},/area/station/hallway/primary/central)
"bdx" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
"bdy" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/central)
@@ -2891,23 +2891,23 @@
"bdE" = (/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"bdF" = (/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"bdG" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
-"bdH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"bdJ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bdK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bdL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/fakeobjects/firelock_broken{desc = "Rust has rendered this airlock useless."; icon = 'hstation.dmi'; icon_state = "bloodydoor"; name = "rusted airlock"; tag = "icon-bloodydoor"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"bdM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdP" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdQ" = (/obj/crate/trashcart,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bdR" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdS" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bdT" = (/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/aft)
-"bdU" = (/obj/machinery/atmospherics/valve,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdV" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdW" = (/obj/machinery/portable_atmospherics/canister/air,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdX" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/decal/cleanable/dirt,/obj/item/wrench,/obj/machinery/light/small,/obj/item/extinguisher,/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bdH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"bdJ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bdK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bdL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/fakeobjects/firelock_broken{desc = "Rust has rendered this airlock useless."; icon = 'hstation.dmi'; icon_state = "bloodydoor"; name = "rusted airlock"; tag = "icon-bloodydoor"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"bdM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdP" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdQ" = (/obj/crate/trashcart,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bdR" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdS" = (/obj/securearea{desc = "A warning sign which reads 'CONSTRUCTION AREA'"; name = "CONSTRUCTION"},/turf/simulated/wall,/area/station/maintenance/south)
+"bdT" = (/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/maintenance/south)
+"bdU" = (/obj/machinery/atmospherics/valve,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdV" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdW" = (/obj/machinery/portable_atmospherics/canister/air,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdX" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/decal/cleanable/dirt,/obj/item/wrench,/obj/machinery/light/small,/obj/item/extinguisher,/obj/item/storage/pill_bottle/cyberpunk,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bdY" = (/obj/window/reinforced/north,/obj/lattice{tag = "icon-lattice-dir (SOUTHWEST)"; icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
"bdZ" = (/obj/window/reinforced/east,/obj/lattice{tag = "icon-lattice-dir (SOUTHWEST)"; icon_state = "lattice-dir"; dir = 10},/turf/space,/area)
"bea" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
@@ -2930,11 +2930,11 @@
"ber" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "customs"; name = "customs mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bes" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bet" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/security{name = "Customs"; req_access = null; req_access_txt = "1"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/security/checkpoint)
-"beu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bev" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bew" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bex" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bey" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"beu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bev" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bew" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bex" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bey" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bez" = (/obj/grille,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"beA" = (/obj/grille,/obj/disposalpipe/segment,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/wall,/area/station/maintenance/maintcentral)
"beB" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/com_dish/auxdish{sd_lighting = 0})
@@ -2942,21 +2942,21 @@
"beD" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_y = 0; tag = "icon-shock"},/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
"beE" = (/obj/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/pylon)
"beF" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
-"beG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beH" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"beI" = (/obj/machinery/vending/cigarette,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"beJ" = (/obj/stool/chair{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"beK" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beL" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"beN" = (/obj/crate/trashcart,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"beG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beH" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"beI" = (/obj/machinery/vending/cigarette,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"beJ" = (/obj/stool/chair{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"beK" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beL" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"beN" = (/obj/crate/trashcart,/turf/simulated/floor/plating,/area/station/maintenance/south)
"beO" = (/turf/simulated/wall,/area/station/janitor)
"beP" = (/turf/simulated/wall/r_wall,/area/station/janitor)
"beQ" = (/turf/simulated/wall,/area/station/maintenance/disposal)
"beR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/classic{name = "Recycling Room"; req_access_txt = "12"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
-"beS" = (/obj/machinery/atmospherics/portables_connector{dir = 1; name = "Chapel Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beT" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/general_alert,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beU" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"beS" = (/obj/machinery/atmospherics/portables_connector{dir = 1; name = "Chapel Repressurization Port"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beT" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/general_alert,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beU" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/station/maintenance/south)
"beV" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/captain)
"beW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/crew_quarters/captain)
"beX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetN"},/area/station/crew_quarters/captain)
@@ -2973,9 +2973,9 @@
"bfi" = (/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bfj" = (/obj/stool/chair,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bfk" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer/card{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
-"bfl" = (/obj/disposalpipe/segment,/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bfm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bfn" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bfl" = (/obj/disposalpipe/segment,/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bfm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bfn" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bfo" = (/obj/table,/obj/item/storage/cablesbox,/obj/item/storage/toolbox/mechanical,/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/decal/cleanable/cobweb,/obj/item/device/radio,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bfp" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bfq" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/table,/obj/machinery/computer3/generic/personal,/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -2988,13 +2988,13 @@
"bfx" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
"bfy" = (/turf/space,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bfz" = (/turf/space,/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area)
-"bfA" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"bfC" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"bfD" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bfF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
-"bfG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/aft)
+"bfA" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"bfC" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"bfD" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bfF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
+"bfG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/south)
"bfH" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/janitor)
"bfI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-Stairs_alone (WEST)"; icon_state = "Stairs_alone"; dir = 8},/area/station/janitor)
"bfJ" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/janitor)
@@ -3015,8 +3015,8 @@
"bfY" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/firedoor/border_only,/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "dark"},/area/station/security/checkpoint)
"bfZ" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/central)
"bga" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
-"bgb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bgc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bgb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bgc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bgd" = (/obj/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bge" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bgf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
@@ -3029,11 +3029,11 @@
"bgm" = (/turf/space,/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bgn" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bgo" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
-"bgp" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgq" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgr" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgs" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
+"bgp" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgq" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgr" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgs" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgt" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
"bgu" = (/obj/grille,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bgv" = (/turf/simulated/wall/r_wall,/area/station/maintenance/disposal)
"bgw" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3064,8 +3064,8 @@
"bgV" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"bgW" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"bgX" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
-"bgY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"bgZ" = (/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bgY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"bgZ" = (/obj/landmark{name = "blobstart"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/north)
"bha" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bhb" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/maintcentral)
"bhc" = (/obj/closet/office,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/maintenance/maintcentral)
@@ -3079,11 +3079,11 @@
"bhk" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area)
"bhl" = (/turf/space,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bhm" = (/turf/space,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area)
-"bhn" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bho" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhq" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bhn" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bho" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhq" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bhs" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; operating = 1},/obj/disposaloutlet,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bht" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bhu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3125,7 +3125,7 @@
"bie" = (/obj/window/reinforced/west,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot)
"bif" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
"big" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
-"bih" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
+"bih" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
"bii" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bij" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
"bik" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
@@ -3148,9 +3148,9 @@
"biB" = (/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
"biC" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
"biD" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/central)
-"biE" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"biF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"biG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"biE" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"biF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"biG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"biH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"biI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"biJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
@@ -3177,12 +3177,12 @@
"bje" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
"bjf" = (/turf/space,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"bjg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/space,/area)
-"bjh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/airless,/area/station/maintenance/aft)
-"bji" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjl" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bjh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/airless,/area/station/maintenance/south)
+"bji" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjl" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bjn" = (/obj/machinery/door/airlock/classic{req_access_txt = "12"},/turf/simulated/floor,/area/station/maintenance/disposal)
"bjo" = (/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
"bjp" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=chapel"; location = "disposals"; name = "bot navigation beacon"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
@@ -3205,7 +3205,7 @@
"bjG" = (/obj/stool/chair,/turf/simulated/floor,/area/station/hallway/primary/central)
"bjH" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/central)
"bjI" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
-"bjJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"bjJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
"bjK" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"bjL" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/central)
"bjM" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
@@ -3231,10 +3231,10 @@
"bkg" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/routingdepot)
"bkh" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"bki" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area)
-"bkj" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkk" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; name = "VACUUM AREA"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bkl" = (/obj/disposalpipe/segment,/obj/cable{tag = "icon-2-5"; icon_state = "2-5"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkm" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bkj" = (/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/clothing/mask/breath,/obj/item/tank/air,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkk" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; name = "VACUUM AREA"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bkl" = (/obj/disposalpipe/segment,/obj/cable{tag = "icon-2-5"; icon_state = "2-5"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkm" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bkn" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; operating = 1},/obj/plasticflaps,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bko" = (/obj/machinery/conveyor_switch{id = "garbage"; position = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bkp" = (/obj/machinery/door_control{id = "speedboost_crusher"; name = "Disposals Doors"; pixel_x = 0; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/maintenance/disposal)
@@ -3281,9 +3281,9 @@
"ble" = (/turf/simulated/floor{tag = "icon-corner_west"; icon_state = "corner_west"; dir = 2},/area/station/routingdepot)
"blf" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/routingdepot)
"blg" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
-"blh" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bli" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"blj" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"blh" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bli" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"blj" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"blk" = (/obj/grille,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/obj/window{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bll" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/maintenance/disposal)
"blm" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille,/obj/cable,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3319,11 +3319,11 @@
"blQ" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/routingdepot)
"blR" = (/obj/machinery/mass_driver{dir = 4; drive_range = 10; id = "cargo_out"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/routingdepot)
"blS" = (/obj/machinery/mass_driver{dir = 4; drive_range = 10; id = "cargo_out"},/obj/machinery/door/poddoor{id = "cargo_out"; name = "Cargo Routing Door"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/routingdepot)
-"blT" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/door/poddoor{id = "cargo_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"blU" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"blV" = (/obj/disposalpipe/segment,/obj/machinery/cargo_router/Router6,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"blW" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"blX" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 5; id = "speedboost_crusher"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
+"blT" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/door/poddoor{id = "cargo_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"blU" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"blV" = (/obj/disposalpipe/segment,/obj/machinery/cargo_router/Router6,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"blW" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"blX" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 5; id = "speedboost_crusher"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
"blY" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 5; id = "speedboost_crusher"},/obj/machinery/door/poddoor{id = "speedboost_crusher"; name = "Disposals Door"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/disposal)
"blZ" = (/obj/machinery/conveyor{dir = 4; id = "garbage"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bma" = (/obj/machinery/conveyor{dir = 4; id = "garbage"; operating = 1},/obj/machinery/door/poddoor{id = "speedboost_crusher"; name = "Disposals Door"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3350,9 +3350,9 @@
"bmv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/routingdepot)
"bmw" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot)
"bmx" = (/obj/machinery/cargo_router/Router1,/turf/simulated/floor/plating,/area/station/routingdepot)
-"bmy" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bmz" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bmA" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bmy" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bmz" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bmA" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bmB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/disposal)
"bmC" = (/obj/item/bananapeel,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/disposal)
"bmD" = (/obj/machinery/launcher_loader/north,/turf/simulated/floor/plating/airless,/area)
@@ -3379,18 +3379,18 @@
"bmY" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/obj/landmark/artifact,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/routingdepot)
"bmZ" = (/obj/machinery/cargo_router/Router8,/turf/simulated/floor/plating,/area/station/routingdepot)
"bna" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/door/poddoor{id = "cargo_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot)
-"bnb" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"; tag = "icon-mass_driver (WEST)"},/obj/machinery/door/poddoor{id = "cargo_in"; name = "Cargo Routing Door"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"bnc" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"bnd" = (/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"bne" = (/obj/machinery/cargo_router/Router7,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bnf" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/launcher_loader/east,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"bng" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 13; id = "speedboost_east"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"bnh" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bni" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bnj" = (/obj/machinery/cargo_router/Router9,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bnk" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bnl" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bnm" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"; tag = "icon-mass_driver (WEST)"},/obj/machinery/door/poddoor{id = "outer_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bnb" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"; tag = "icon-mass_driver (WEST)"},/obj/machinery/door/poddoor{id = "cargo_in"; name = "Cargo Routing Door"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"bnc" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "cargo_in"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"bnd" = (/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"bne" = (/obj/machinery/cargo_router/Router7,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bnf" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/launcher_loader/east,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"bng" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/machinery/mass_driver{dir = 4; drive_range = 13; id = "speedboost_east"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"bnh" = (/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bni" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 4; name = "cargo belt - east"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bnj" = (/obj/machinery/cargo_router/Router9,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bnk" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bnl" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bnm" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "outer_out"; tag = "icon-mass_driver (WEST)"},/obj/machinery/door/poddoor{id = "outer_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bnn" = (/obj/machinery/cargo_router/Router11,/turf/simulated/floor/plating/airless,/area)
"bno" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/central)
"bnp" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/central)
@@ -3408,10 +3408,10 @@
"bnB" = (/obj/machinery/mass_driver{id = "medsci_in"},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/routingdepot)
"bnC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/airless,/area/station/routingdepot)
"bnD" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/routingdepot)
-"bnE" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bnF" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bnG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/aft)
-"bnH" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bnE" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bnF" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bnG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/south)
+"bnH" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bnI" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bnJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-L1"; icon_state = "L1"},/area/station/hallway/primary/central)
"bnK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-L3"; icon_state = "L3"},/area/station/hallway/primary/central)
@@ -3434,14 +3434,14 @@
"bob" = (/turf/space,/obj/machinery/atmospherics/pipe/simple/insulated,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
"boc" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"bod" = (/turf/space,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area)
-"boe" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bof" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bog" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"boh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"boi" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/mass_driver{dir = 8; drive_range = 13; icon_state = "mass_driver"; id = "speedboost_west"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"boj" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/aft)
-"bok" = (/obj/machinery/cargo_router/Router10,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bol" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/door/poddoor{id = "outer_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"boe" = (/obj/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bof" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bog" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"boh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"boi" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/mass_driver{dir = 8; drive_range = 13; icon_state = "mass_driver"; id = "speedboost_west"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"boj" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/launcher_loader/west,/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/maintenance/south)
+"bok" = (/obj/machinery/cargo_router/Router10,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bol" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/obj/machinery/door/poddoor{id = "outer_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bom" = (/obj/machinery/mass_driver{dir = 8; drive_range = 23; icon_state = "mass_driver"; id = "outer_in"; tag = "icon-mass_driver (WEST)"},/turf/simulated/floor/plating/airless,/area)
"bon" = (/obj/machinery/cargo_router/Router12,/turf/simulated/floor/plating/airless,/area)
"boo" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
@@ -3481,17 +3481,17 @@
"boW" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
"boX" = (/turf/space,/obj/disposalpipe/segment{dir = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
"boY" = (/turf/space,/obj/disposalpipe/segment{dir = 4},/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
-"boZ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bpa" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/aft)
-"bpb" = (/obj/disposalpipe/segment,/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bpc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bpd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bpe" = (/obj/machinery/door/airlock/classic{name = "Emergency Airbridge Access"; req_access_txt = "12"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpf" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"bpg" = (/obj/grille,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bph" = (/obj/grille,/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpi" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpj" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"boZ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bpa" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/south)
+"bpb" = (/obj/disposalpipe/segment,/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/wall,/area/station/maintenance/south)
+"bpc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bpd" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bpe" = (/obj/machinery/door/airlock/classic{name = "Emergency Airbridge Access"; req_access_txt = "12"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpf" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"bpg" = (/obj/grille,/obj/window{dir = 2},/obj/window{dir = 1},/obj/window{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bph" = (/obj/grille,/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpi" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpj" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bpk" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bpl" = (/obj/disposalpipe/segment,/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/central)
"bpm" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/cable,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "eva"; name = "E.V.A."; opacity = 0},/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
@@ -3507,13 +3507,13 @@
"bpw" = (/turf/space,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area)
"bpx" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area)
"bpy" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/obj/disposalpipe/segment,/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area)
-"bpz" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/aft)
-"bpA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/maintenance/aft)
-"bpB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/maintenance/aft)
-"bpC" = (/obj/stool/chair{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor,/area/station/maintenance/aft)
-"bpD" = (/obj/table/reinforced{dir = 8; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir"},/obj/machinery/light/small{dir = 4},/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/aft)
-"bpE" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpF" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bpz" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/south)
+"bpA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/maintenance/south)
+"bpB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/maintenance/south)
+"bpC" = (/obj/stool/chair{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor,/area/station/maintenance/south)
+"bpD" = (/obj/table/reinforced{dir = 8; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir"},/obj/machinery/light/small{dir = 4},/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/turf/simulated/floor{icon_state = "bot"},/area/station/maintenance/south)
+"bpE" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpF" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bpG" = (/obj/machinery/mass_driver{dir = 2; drive_range = 25; id = "south_ext"},/turf/simulated/floor/plating/airless,/area)
"bpH" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/central)
"bpI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/central)
@@ -3526,13 +3526,13 @@
"bpP" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/maintenance/maintcentral)
"bpQ" = (/obj/lattice{tag = "icon-lattice-dir (SOUTHEAST)"; icon_state = "lattice-dir"; dir = 6},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"bpR" = (/turf/space,/obj/disposalpipe/segment,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
-"bpS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bpT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/aft)
-"bpU" = (/turf/simulated/floor,/area/station/maintenance/aft)
-"bpV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/aft)
-"bpW" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor,/area/station/maintenance/aft)
-"bpX" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "qm_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bpY" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/obj/machinery/door/poddoor{id = "qm_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bpS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
+"bpT" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall,/area/station/maintenance/south)
+"bpU" = (/turf/simulated/floor,/area/station/maintenance/south)
+"bpV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/south)
+"bpW" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1455; name = "Supply Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor,/area/station/maintenance/south)
+"bpX" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "qm_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bpY" = (/obj/machinery/mass_driver{drive_range = 10; id = "qm_in"},/obj/machinery/door/poddoor{id = "qm_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bpZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "neutral"; tag = "icon-neutral (WEST)"},/area/station/hallway/primary/central)
"bqa" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/cashreg,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/central)
"bqb" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/item/device/radio/intercom,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/central)
@@ -3556,9 +3556,9 @@
"bqt" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "engine_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/engine)
"bqu" = (/obj/machinery/atmospherics/pipe/simple/insulated,/obj/lattice{tag = "icon-lattice-dir (SOUTHEAST)"; icon_state = "lattice-dir"; dir = 6},/turf/space,/area)
"bqv" = (/obj/lattice{tag = "icon-lattice-dir (NORTH)"; icon_state = "lattice-dir"; dir = 1},/obj/machinery/atmospherics/pipe/vent,/turf/space,/area)
-"bqw" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bqx" = (/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/aft)
-"bqy" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bqw" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bqx" = (/obj/machinery/door/airlock/external,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/south)
+"bqy" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bqz" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"bqA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "neutral"; tag = "icon-neutral (WEST)"},/area/station/hallway/primary/central)
"bqB" = (/obj/stool,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/central)
@@ -3584,9 +3584,9 @@
"bqV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{req_access_txt = "44"},/turf/simulated/floor/plating,/area/station/hangar/engine)
"bqW" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/wall/r_wall,/area/station/hangar/engine)
"bqX" = (/obj/machinery/r_door_control{id = "hangar_engine"; pixel_x = 0},/turf/simulated/wall/r_wall,/area/station/hangar/engine)
-"bqY" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bqZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/aft)
-"bra" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bqY" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bqZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/maintenance/south)
+"bra" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
"brb" = (/obj/grille,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"brc" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{tag = "icon-arrival (NORTHWEST)"; icon_state = "arrival"; dir = 9},/area/station/hallway/primary/central)
"brd" = (/obj/submachine/ATM{pixel_x = 32; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/window/cubicle{dir = 8},/obj/machinery/door/window/northright,/turf/simulated/floor{dir = 4; icon_state = "neutral"; tag = "icon-neutral (WEST)"},/area/station/hallway/primary/central)
@@ -3618,8 +3618,8 @@
"brD" = (/turf/simulated/floor/shuttlebay,/area/station/hangar/engine)
"brE" = (/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/shuttlebay,/area/station/hangar/engine)
"brF" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoorleft1"; id = "hangar_engine"; name = "Engineering Hangar"; tag = "icon-bdoorleft1 (NORTH)"},/turf/simulated/floor/shuttlebay,/area/station/hangar/engine)
-"brG" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"brH" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"brG" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"brH" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/south)
"brI" = (/obj/grille,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"brJ" = (/turf/simulated/floor{tag = "icon-arrival (NORTHWEST)"; icon_state = "arrival"; dir = 9},/area/station/hallway/primary/central)
"brK" = (/turf/simulated/floor{tag = "icon-arrivalcorner (NORTH)"; icon_state = "arrivalcorner"; dir = 1},/area/station/hallway/primary/central)
@@ -4413,11 +4413,11 @@
"bGS" = (/turf/simulated/wall/r_wall,/area/station/science/lab)
"bGT" = (/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 2.5; name = "FIRE HAZARD"; tag = "icon-bio"},/turf/simulated/wall/r_wall,/area/station/science/lab)
"bGU" = (/obj/grille,/obj/machinery/door/poddoor{id = "tox_vent3"; layer = 8; name = "Exhaust Vent"},/turf/simulated/floor/plating/airless,/area/station/science/lab)
-"bGV" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bGW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bGX" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/external,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/starboard)
-"bGY" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bGZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"bGV" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bGW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bGX" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/external,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/east)
+"bGY" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bGZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"bHa" = (/turf/simulated/wall,/area/station/turret_protected/Zeta)
"bHb" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/turret_protected/Zeta)
"bHc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/engine/power)
@@ -4462,13 +4462,13 @@
"bHP" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/science/teleporter)
"bHQ" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/science/teleporter)
"bHR" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/science/teleporter)
-"bHS" = (/obj/grille,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bHT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bHU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bHV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/starboard)
-"bHW" = (/obj/machinery/computer/airbr{density = 0; icon = 'airtunnel.dmi'; id = "ai2medbay"; pixel_x = 32; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bHX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bHY" = (/obj/grille,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"bHS" = (/obj/grille,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bHT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bHU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bHV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hallway/primary/east)
+"bHW" = (/obj/machinery/computer/airbr{density = 0; icon = 'airtunnel.dmi'; id = "ai2medbay"; pixel_x = 32; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bHX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bHY" = (/obj/grille,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"bHZ" = (/obj/grille,/obj/disposalpipe/segment,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/wall,/area/station/turret_protected/Zeta)
"bIa" = (/turf/simulated/floor/plating,/area/station/engine/power)
"bIb" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plating,/area/station/engine/power)
@@ -4532,9 +4532,9 @@
"bJh" = (/obj/machinery/door_control{id = "scienceteleporter2"; name = "Pad Public-Access Lockdown"; pixel_x = 6; pixel_y = 24},/obj/machinery/door_control{id = "scienceteleporter"; name = "Pad Control-Access Lockdown"; pixel_x = -6; pixel_y = 24},/obj/stool/chair/office{tag = "icon-office_chair (EAST)"; icon_state = "office_chair"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
"bJi" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/data_terminal,/obj/machinery/networked/teleconsole,/turf/simulated/floor{tag = "icon-cautionwhite (EAST)"; icon_state = "cautionwhite"; dir = 4},/area/station/science/teleporter)
"bJj" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science/teleporter)
-"bJk" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/starboard)
-"bJl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/starboard)
-"bJm" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/starboard)
+"bJk" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/east)
+"bJl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/east)
+"bJm" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/hallway/primary/east)
"bJn" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; tag = "icon-shock"},/turf/simulated/wall/r_wall,/area/station/engine/power)
"bJo" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Power Room"; req_access_txt = "45"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/power)
"bJp" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; tag = "icon-shock"},/turf/simulated/wall,/area/station/engine/power)
@@ -4599,12 +4599,12 @@
"bKw" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/engine,/area/station/science/teleporter)
"bKx" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine,/area/station/science/teleporter)
"bKy" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/machinery/door/poddoor{id = "scienceteleporter2"; name = "Teleporter Blast Shield"; p_open = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced,/obj/securearea{desc = "Careless use of experimental teleportation technology may be hazardous to your health."; name = "Molecular Integrity Hazard"},/obj/disposalpipe/segment,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/engine,/area/station/science/teleporter)
-"bKz" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/primary/starboard)
-"bKA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bKB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bKC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/starboard)
-"bKD" = (/obj/closet/emcloset,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/hallway/primary/starboard)
-"bKE" = (/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"bKz" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/primary/east)
+"bKA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bKB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bKC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/east)
+"bKD" = (/obj/closet/emcloset,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/hallway/primary/east)
+"bKE" = (/turf/simulated/wall,/area/station/hallway/primary/east)
"bKF" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall,/area/station/maintenance/inner)
"bKG" = (/obj/machinery/mass_driver{dir = 1; drive_range = 33; id = "medsci_out"},/obj/machinery/door/poddoor{id = "medsci_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bKH" = (/obj/machinery/conveyor{dir = 2; name = "cargo belt - south"; operating = 1},/obj/machinery/door/poddoor{id = "medsci_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -4676,10 +4676,10 @@
"bLV" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/networked/telepad,/turf/simulated/floor/engine,/area/station/science/teleporter)
"bLW" = (/turf/simulated/floor/engine,/area/station/science/teleporter)
"bLX" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/poddoor{id = "scienceteleporter2"; name = "Teleporter Blast Shield"; p_open = 1},/obj/machinery/door/airlock/glass{name = "Teleporter Pad"; req_access_txt = "0"},/obj/disposalpipe/segment,/turf/simulated/floor/engine,/area/station/science/teleporter)
-"bLY" = (/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/primary/starboard)
-"bLZ" = (/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bMa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bMb" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/starboard)
+"bLY" = (/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/primary/east)
+"bLZ" = (/turf/simulated/floor,/area/station/hallway/primary/east)
+"bMa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bMb" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/east)
"bMc" = (/turf/simulated/wall,/area/station/routingdepot/airbridge)
"bMd" = (/turf/simulated/wall,/area/station/maintenance/inner)
"bMe" = (/obj/machinery/mass_driver{dir = 1; drive_range = 33; id = "medsci_out"},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -4754,7 +4754,7 @@
"bNv" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
"bNw" = (/obj/table,/obj/item/paper_bin,/obj/item/pen,/obj/item/device/radio/headset/multifreq,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/storage/firstaid/regular,/turf/simulated/floor{tag = "icon-cautionwhite (EAST)"; icon_state = "cautionwhite"; dir = 4},/area/station/science/teleporter)
"bNx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine,/area/station/science/teleporter)
-"bNy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/primary/starboard)
+"bNy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/primary/east)
"bNz" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
"bNA" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bNB" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor,/area/station/routingdepot/airbridge)
@@ -4816,10 +4816,10 @@
"bOF" = (/obj/securearea{desc = "Careless use of experimental teleportation technology may be hazardous to your health."; name = "Molecular Integrity Hazard"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
"bOG" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/wall,/area/station/science{name = "Research Sector"})
"bOH" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science/teleporter)
-"bOI" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bOJ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bOK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bOL" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "testchamber"; name = "test chamber mail router"},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/starboard)
+"bOI" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bOJ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bOK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bOL" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "testchamber"; name = "test chamber mail router"},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/east)
"bOM" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
"bON" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bOO" = (/turf/simulated/floor,/area/station/routingdepot/airbridge)
@@ -4888,9 +4888,9 @@
"bPZ" = (/obj/closet/l3closet,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science{name = "Research Sector"})
"bQa" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/machinery/portable_atmospherics/scrubber,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science{name = "Research Sector"})
"bQb" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
-"bQc" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/noticeboard{pixel_x = -32; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bQd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bQe" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "chemistry"; name = "chemistry mail router"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
+"bQc" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/noticeboard{pixel_x = -32; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bQd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bQe" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "chemistry"; name = "chemistry mail router"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
"bQf" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Medsci Cargo Dock"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"},/area/station/routingdepot/airbridge)
"bQg" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bQh" = (/obj/crate,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/obj/item/storage/emptybox,/turf/simulated/floor,/area/station/routingdepot/airbridge)
@@ -4967,17 +4967,17 @@
"bRA" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass{name = "Research Sector"; req_access_txt = "24"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science{name = "Research Sector"})
"bRB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science{name = "Research Sector"})
"bRC" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass{name = "Research Sector"; req_access_txt = "24"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science{name = "Research Sector"})
-"bRD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bRE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour13;desc=What would a research station be without a research sector? Beats me! Anyways, that's what's in here. Authorized personnel only! Your station's science team is very busy working on very serious and important sciencey stuff!"; freq = 1443; location = "tour12"; name = "tour beacon - research"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bRF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bRG" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "research"; name = "research mail router"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
+"bRD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bRE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour13;desc=What would a research station be without a research sector? Beats me! Anyways, that's what's in here. Authorized personnel only! Your station's science team is very busy working on very serious and important sciencey stuff!"; freq = 1443; location = "tour12"; name = "tour beacon - research"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bRF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bRG" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-sj2"; mail_tag = "research"; name = "research mail router"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
"bRH" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Medsci Cargo Dock"},/turf/simulated/floor{icon_state = "delivery"},/area/station/routingdepot/airbridge)
"bRI" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor,/area/station/routingdepot/airbridge)
"bRJ" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/routingdepot/airbridge)
"bRK" = (/obj/machinery/conveyor{dir = 8; name = "cargo belt - west"; operating = 1},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
-"bRL" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bRM" = (/obj/grille,/obj/window/reinforced/north,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bRN" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"bRL" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bRM" = (/obj/grille,/obj/window/reinforced/north,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bRN" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"bRO" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bRP" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/elect)
"bRQ" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southleft{name = "Electronics Lab"; req_access_txt = "45"},/obj/item/paper_bin,/obj/item/pen,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/engine/elect)
@@ -5035,39 +5035,39 @@
"bSQ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/shower,/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/science{name = "Research Sector"})
"bSR" = (/obj/disposalpipe/segment{dir = 4},/obj/chem_sink{dir = 1},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/science{name = "Research Sector"})
"bSS" = (/obj/disposalpipe/segment{dir = 4},/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 2.5; name = "FIRE HAZARD"; tag = "icon-bio"},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
-"bST" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bSU" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bSV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bST" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bSU" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bSV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
"bSW" = (/turf/simulated/wall/r_wall,/area/station/routingdepot/airbridge)
"bSX" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
"bSY" = (/obj/grille,/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/routingdepot/airbridge)
-"bSZ" = (/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/hallway/primary/starboard)
-"bTa" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bTb" = (/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bTc" = (/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bTd" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bTe" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bTf" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTg" = (/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTh" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTi" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTj" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTk" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bTl" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bTm" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bTn" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bTo" = (/obj/noticeboard{pixel_y = 28},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTp" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTq" = (/obj/shrub,/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTr" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bTs" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bTt" = (/obj/machinery/light{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bTv" = (/obj/machinery/vending/cola/red,/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTw" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bTx" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bTy" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
-"bTz" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/starboard)
+"bSZ" = (/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/hallway/primary/east)
+"bTa" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bTb" = (/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bTc" = (/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bTd" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bTe" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bTf" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTg" = (/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTh" = (/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTi" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTj" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTk" = (/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bTl" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bTm" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bTn" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bTo" = (/obj/noticeboard{pixel_y = 28},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTp" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTq" = (/obj/shrub,/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTr" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bTs" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bTt" = (/obj/machinery/light{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bTv" = (/obj/machinery/vending/cola/red,/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTw" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bTx" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bTy" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
+"bTz" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/east)
"bTA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"bTB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/warehouse)
"bTC" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/quartermaster/office)
@@ -5102,31 +5102,31 @@
"bUf" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Guardbot Depot"; req_access_txt = "8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/science{name = "Research Sector"})
"bUg" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/science{name = "Research Sector"})
"bUh" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/science{name = "Research Sector"})
-"bUi" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/starboard)
-"bUj" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/station/hallway/primary/starboard)
-"bUl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "medbay"; name = "medbay mail router"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bUm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bUn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bUo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "genetics"; name = "genetics mail router"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/starboard)
-"bUp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/station/hallway/primary/starboard)
-"bUq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "robotics"; name = "robotics mail router"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUs" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUw" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bUy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=escape"; location = "engine"; name = "bot navigation beacon"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bUC" = (/obj/disposalpipe/junction{dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUD" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUE" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUF" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bUG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bUi" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/east)
+"bUj" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/station/hallway/primary/east)
+"bUl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "medbay"; name = "medbay mail router"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bUm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bUn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bUo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "genetics"; name = "genetics mail router"},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/hallway/primary/east)
+"bUp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/station/hallway/primary/east)
+"bUq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj2"; mail_tag = "robotics"; name = "robotics mail router"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUs" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUw" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bUy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=escape"; location = "engine"; name = "bot navigation beacon"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bUC" = (/obj/disposalpipe/junction{dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUD" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUE" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUF" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bUG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
"bUH" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bUI" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/vending/cola/blue,/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market{name = "Supply Lobby"})
"bUJ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5166,22 +5166,22 @@
"bVr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/science/bot_storage)
"bVs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor,/area/station/science/bot_storage)
"bVt" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"bVu" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bVv" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bVw" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVx" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVy" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVz" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVA" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVD" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVE" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bVF" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVG" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour15;desc=Thanks to advances in plasma research, your C-class station has been equipped with a new Thermo-Electric Generator engine! Singularity accidents are a thing of the past! Who ever thought it was a good idea to keep a black hole inside a space station anyways? Yeesh!"; freq = 1443; location = "tour14"; name = "tour beacon - engine"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVH" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/starboard)
-"bVI" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bVJ" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bVu" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bVv" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bVw" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVx" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVy" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVz" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVA" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVD" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVE" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bVF" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVG" = (/obj/disposalpipe/segment{dir = 4},/obj/landmark/halloween,/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour15;desc=Thanks to advances in plasma research, your C-class station has been equipped with a new Thermo-Electric Generator engine! Singularity accidents are a thing of the past! Who ever thought it was a good idea to keep a black hole inside a space station anyways? Yeesh!"; freq = 1443; location = "tour14"; name = "tour beacon - engine"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVH" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/primary/east)
+"bVI" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bVJ" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
"bVK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bVL" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bVM" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5217,39 +5217,39 @@
"bWq" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/science/bot_storage)
"bWr" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/science/bot_storage)
"bWs" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/gunner,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"bWt" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bWu" = (/obj/machinery/vending/cola/red,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
-"bWv" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "bluecorner"; tag = "icon-bluecorner"},/area/station/hallway/primary/starboard)
-"bWw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bWx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-bluecorner"; icon_state = "bluecorner"},/area/station/hallway/primary/starboard)
-"bWy" = (/obj/stationMapWall{pixel_y = -28},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bWz" = (/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bWA" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bWB" = (/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bWC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bWD" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bWE" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWF" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWG" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboard)
-"bWH" = (/turf/simulated/wall,/area/station/maintenance/starboard)
-"bWI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/starboard)
+"bWt" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bWu" = (/obj/machinery/vending/cola/red,/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
+"bWv" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "bluecorner"; tag = "icon-bluecorner"},/area/station/hallway/primary/east)
+"bWw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bWx" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-bluecorner"; icon_state = "bluecorner"},/area/station/hallway/primary/east)
+"bWy" = (/obj/stationMapWall{pixel_y = -28},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bWz" = (/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bWA" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bWB" = (/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bWC" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bWD" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bWE" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWF" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWG" = (/turf/simulated/wall/r_wall,/area/station/maintenance/east)
+"bWH" = (/turf/simulated/wall,/area/station/maintenance/east)
+"bWI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/east)
"bWJ" = (/turf/simulated/wall,/area/station/crew_quarters/toilets)
"bWK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock{name = "Toilets"; req_access_txt = "0"},/turf/simulated/floor,/area/station/crew_quarters/toilets)
-"bWL" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWM" = (/obj/table,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWN" = (/obj/machinery/vending/snack,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWO" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bWP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWQ" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj1"; mail_tag = "electronics"; name = "electronics mail router"},/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWT" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"; tag = "icon-yellowcorner (WEST)"},/area/station/hallway/primary/starboard)
-"bWU" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; name = "engineering mail router"},/turf/simulated/floor{icon_state = "yellowcorner"; tag = "icon-yellowcorner"},/area/station/hallway/primary/starboard)
-"bWV" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWX" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bWY" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/starboard)
-"bWZ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/starboard)
+"bWL" = (/obj/stool/chair{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWM" = (/obj/table,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWN" = (/obj/machinery/vending/snack,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWO" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bWP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWQ" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-sj1"; mail_tag = "electronics"; name = "electronics mail router"},/obj/machinery/light,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWS" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWT" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"; tag = "icon-yellowcorner (WEST)"},/area/station/hallway/primary/east)
+"bWU" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; name = "engineering mail router"},/turf/simulated/floor{icon_state = "yellowcorner"; tag = "icon-yellowcorner"},/area/station/hallway/primary/east)
+"bWV" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWX" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bWY" = (/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/hallway/primary/east)
+"bWZ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "bot"},/area/station/hallway/primary/east)
"bXa" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor/plating,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bXb" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"bXc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5291,38 +5291,38 @@
"bXM" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor,/area/station/science/bot_storage)
"bXN" = (/obj/table/reinforced,/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/science/bot_storage)
"bXO" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
-"bXP" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"bXQ" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "blue"; tag = "icon-blue (EAST)"},/area/station/hallway/primary/starboard)
-"bXR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bXS" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/starboard)
-"bXT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bXU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"bXV" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bXW" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bXX" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bXY" = (/obj/grille,/obj/window/reinforced/south,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bXZ" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bYa" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; status = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bYb" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bXP" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/east)
+"bXQ" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "blue"; tag = "icon-blue (EAST)"},/area/station/hallway/primary/east)
+"bXR" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bXS" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/east)
+"bXT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bXU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall,/area/station/hallway/primary/east)
+"bXV" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bXW" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bXX" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bXY" = (/obj/grille,/obj/window/reinforced/south,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bXZ" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bYa" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; status = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bYb" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/east)
"bYc" = (/obj/machinery/light/small{dir = 8},/obj/machinery/bathtub{anchored = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"bYd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"bYe" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
-"bYf" = (/obj/grille,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYg" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYh" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYi" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bYj" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/starboard)
-"bYk" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/starboard)
-"bYl" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 6},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bYm" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"bYn" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYo" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYp" = (/obj/grille,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 9},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYq" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYr" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bYs" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/asmaint)
-"bYt" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"bYu" = (/turf/simulated/wall,/area/station/maintenance/asmaint)
+"bYf" = (/obj/grille,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYg" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYh" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYi" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bYj" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/east)
+"bYk" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/east)
+"bYl" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 6},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bYm" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"bYn" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYo" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYp" = (/obj/grille,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 9},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYq" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYr" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bYs" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/SEmaint)
+"bYt" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"bYu" = (/turf/simulated/wall,/area/station/maintenance/SEmaint)
"bYv" = (/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"bYw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/shrub{dir = 8; icon = 'stationobjs.dmi'; icon_state = "plant"; tag = "icon-shrub (WEST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/crew_quarters/market{name = "Supply Lobby"})
"bYx" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/crew_quarters/market{name = "Supply Lobby"})
@@ -5370,31 +5370,31 @@
"bZn" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/science/bot_storage)
"bZo" = (/obj/lattice,/obj/disposalpipe/segment{dir = 4},/turf/space,/area)
"bZp" = (/obj/lattice,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/space,/area)
-"bZq" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/emergency,/turf/simulated/floor{dir = 10; icon_state = "blue"; tag = "icon-blue (SOUTHEAST)"},/area/station/hallway/primary/starboard)
-"bZr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/starboard)
-"bZs" = (/obj/machinery/light/emergency,/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/hallway/primary/starboard)
-"bZt" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZu" = (/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZw" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bZx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZz" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZC" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bZD" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bZq" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/emergency,/turf/simulated/floor{dir = 10; icon_state = "blue"; tag = "icon-blue (SOUTHEAST)"},/area/station/hallway/primary/east)
+"bZr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/east)
+"bZs" = (/obj/machinery/light/emergency,/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/hallway/primary/east)
+"bZt" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZu" = (/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZw" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bZx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZz" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZA" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZC" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bZD" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bZE" = (/obj/window/cubicle{tag = "icon-cubicle (NORTH)"; icon_state = "cubicle"; dir = 1},/obj/machinery/door/window/eastleft,/obj/item/storage/toilet,/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"bZF" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"bZG" = (/obj/securearea{desc = "A poster that reads 'CLEAN HANDS SAVE LIVES'."; icon_state = "chsl"; name = "CLEAN HANDS SAVE LIVES"; pixel_x = 32; pixel_y = 0},/obj/chem_sink{dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
-"bZH" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"bZI" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/starboard)
-"bZJ" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/starboard)
-"bZK" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"bZH" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"bZI" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/east)
+"bZJ" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/east)
+"bZK" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/insulated/cold,/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"bZL" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area)
-"bZM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"bZN" = (/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"bZO" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"bZM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"bZN" = (/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"bZO" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"bZP" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"bZQ" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
"bZR" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
@@ -5433,17 +5433,17 @@
"cay" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/medical/medbay)
"caz" = (/obj/securearea{desc = "Blue, blue."; icon_state = "med"; layer = 9; name = "MEDICAL BAY"; pixel_x = 0; tag = "icon-bio"},/turf/simulated/wall/r_wall,/area/station/medical/medbay)
"caA" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"caB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"caB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"caC" = (/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"caD" = (/turf/simulated/wall,/area/station/medical/robotics)
"caE" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/medical/robotics)
"caF" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/medical/robotics)
-"caG" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"caG" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
"caH" = (/obj/table,/obj/item/paper_bin,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"caI" = (/obj/machinery/atmospherics/pipe/vent{dir = 4},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area)
"caJ" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 4},/obj/lattice,/turf/space,/area)
-"caK" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"caL" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 5},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"caK" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"caL" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 5},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"caM" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/obj/lattice,/turf/space,/area)
"caN" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area)
"caO" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Air Hookups"},/turf/simulated/floor/plating,/area/station/atmos/hookups_starboard)
@@ -5457,7 +5457,7 @@
"caW" = (/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/crew_quarters/market{name = "Supply Lobby"})
"caX" = (/obj/machinery/vending/book,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market{name = "Supply Lobby"})
"caY" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/market{name = "Supply Lobby"})
-"caZ" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"caZ" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cba" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Magnet Control Room"},/turf/simulated/floor,/area/station/crew_quarters/market{name = "Supply Lobby"})
"cbb" = (/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/security/checkpoint2)
"cbc" = (/obj/stool/bed,/obj/item/clothing/glasses/vr{network = "arcadevr"},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/security/checkpoint2)
@@ -5466,14 +5466,14 @@
"cbf" = (/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/station/science/storage)
"cbg" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/science/storage)
"cbh" = (/obj/machinery/dispenser{o2tanks = 5; pltanks = 15},/turf/simulated/floor/plating,/area/station/science/storage)
-"cbi" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor,/area/station/artifact)
-"cbj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/artifact)
-"cbk" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/artifact)
-"cbl" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/artifact)
-"cbm" = (/turf/simulated/floor,/area/station/artifact)
-"cbn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/artifact)
-"cbo" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/artifact)
-"cbp" = (/turf/simulated/wall,/area/station/artifact)
+"cbi" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor,/area/station/science/artifact)
+"cbj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/science/artifact)
+"cbk" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/science/artifact)
+"cbl" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/science/artifact)
+"cbm" = (/turf/simulated/floor,/area/station/science/artifact)
+"cbn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
+"cbo" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/science/artifact)
+"cbp" = (/turf/simulated/wall,/area/station/science/artifact)
"cbq" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table,/obj/machinery/networked/printer{print_id = "Research Sector"},/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/science{name = "Research Sector"})
"cbr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/station/science{name = "Research Sector"})
"cbs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/science{name = "Research Sector"})
@@ -5486,7 +5486,7 @@
"cbz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-bluewhite (NORTH)"; icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay)
"cbA" = (/turf/simulated/floor{tag = "icon-bluewhite (NORTH)"; icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay)
"cbB" = (/obj/shrub{tag = "icon-plant (NORTH)"; icon = 'stationobjs.dmi'; icon_state = "plant"; dir = 1},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{tag = "icon-bluewhitecorner (NORTH)"; icon_state = "bluewhitecorner"; dir = 1},/area/station/medical/medbay)
-"cbC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cbC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cbD" = (/obj/window/reinforced/west,/obj/machinery/door/window/southleft,/mob/living/silicon/shell,/turf/simulated/floor/grid,/area/station/medical/robotics)
"cbE" = (/obj/window/reinforced/east,/obj/machinery/door/window/southright,/obj/machinery/light{dir = 1; pixel_x = -1},/mob/living/silicon/shell,/turf/simulated/floor/grid,/area/station/medical/robotics)
"cbF" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/scalpel,/obj/item/scalpel,/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/reagent_containers/fueltank,/turf/simulated/floor{tag = "icon-corner_west"; icon_state = "corner_west"; dir = 2},/area/station/medical/robotics)
@@ -5510,12 +5510,12 @@
"cbX" = (/obj/table/reinforced{dir = 5; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/machinery/cell_charger,/obj/item/storage/diskbox,/obj/item/kitchen/utensil/knife,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market{name = "Supply Lobby"})
"cbY" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/crew_quarters/market{name = "Supply Lobby"})
"cbZ" = (/obj/machinery/vending/paint/broken,/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market{name = "Supply Lobby"})
-"cca" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ccb" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ccc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ccd" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cce" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ccf" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cca" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ccb" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ccc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ccd" = (/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cce" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ccf" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"ccg" = (/turf/simulated/wall,/area/station/quartermaster/magnet)
"cch" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/quartermaster/magnet)
"cci" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/quartermaster/magnet)
@@ -5526,10 +5526,10 @@
"ccn" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/wall/r_wall,/area/station/science/storage)
"cco" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/securearea,/turf/simulated/floor/plating,/area/station/science/storage)
"ccp" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/station/science/storage)
-"ccq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/artifact)
-"ccr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/artifact)
-"ccs" = (/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/artifact)
-"cct" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/artifact)
+"ccq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
+"ccr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science/artifact)
+"ccs" = (/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science/artifact)
+"cct" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science/artifact)
"ccu" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/science{name = "Research Sector"})
"ccv" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor,/area/station/science{name = "Research Sector"})
"ccw" = (/obj/shrub{tag = "icon-plant (NORTH)"; icon = 'stationobjs.dmi'; icon_state = "plant"; dir = 1},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/medbay)
@@ -5551,10 +5551,10 @@
"ccM" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"ccN" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"ccO" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/crate/robotics_supplies,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
-"ccP" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccR" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ccS" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/wall,/area/station/maintenance/starboard)
+"ccP" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccR" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ccS" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/wall,/area/station/maintenance/east)
"ccT" = (/turf/simulated/wall/r_wall,/area/station/hallway/secondary/exit)
"ccU" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"ccV" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
@@ -5566,13 +5566,13 @@
"cdb" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cdc" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cdd" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area)
-"cde" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cde" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cdf" = (/obj/machinery/atmospherics/valve{name = "Escape Hallway"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cdg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/valve{name = "Medbay"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
"cdh" = (/obj/machinery/atmospherics/valve{name = "Supply Lobby"},/turf/simulated/wall/r_wall,/area/station/atmos/hookups_starboard)
-"cdi" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cdj" = (/turf/simulated/wall/r_wall,/area/station/maintenance/asmaint)
-"cdk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cdi" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cdj" = (/turf/simulated/wall/r_wall,/area/station/maintenance/SEmaint)
+"cdk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cdl" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/station/quartermaster/magnet)
"cdm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/quartermaster/magnet)
"cdn" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
@@ -5584,12 +5584,12 @@
"cdt" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 1},/turf/simulated/floor/plating/airless,/area)
"cdu" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/science/storage)
"cdv" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/science/storage)
-"cdw" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/artifact)
-"cdx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/artifact)
-"cdy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cdz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cdA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cdB" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/artifact)
+"cdw" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/science/artifact)
+"cdx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/science/artifact)
+"cdy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cdz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cdA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cdB" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/science/artifact)
"cdC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/science{name = "Research Sector"})
"cdD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=medbay"; location = "research"; name = "bot navigation beacon"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/station/science{name = "Research Sector"})
"cdE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/science{name = "Research Sector"})
@@ -5604,7 +5604,7 @@
"cdN" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/medbay)
"cdO" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"cdP" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/medical/medbay)
-"cdQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cdQ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cdR" = (/obj/crate/robotics_supplies,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cdS" = (/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cdT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
@@ -5612,11 +5612,11 @@
"cdV" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Robotics Storage"; req_access_txt = "12;29"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"cdW" = (/obj/machinery/light/small,/obj/reagent_dispensers/fueltank,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"cdX" = (/obj/rack,/obj/item/storage/toolbox/mechanical,/obj/item/reagent_containers/glass/oilcan,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
-"cdY" = (/obj/landmark{name = "kudzustart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cdZ" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cea" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ceb" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cec" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area/station/maintenance/starboard)
+"cdY" = (/obj/landmark{name = "kudzustart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cdZ" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cea" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ceb" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cec" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/wall,/area/station/maintenance/east)
"ced" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cee" = (/obj/shrub,/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cef" = (/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/grass,/area/station/hallway/secondary/exit)
@@ -5628,15 +5628,15 @@
"cel" = (/obj/machinery/vending/cigarette,/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{tag = "icon-fullgreen"; icon_state = "fullgreen"},/area/station/hallway/secondary/exit)
"cem" = (/obj/shrub{tag = "icon-shrub (EAST)"; icon_state = "shrub"; dir = 4},/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cen" = (/obj/shrub{tag = "icon-shrub (WEST)"; icon_state = "shrub"; dir = 8},/turf/simulated/grass,/area/station/hallway/secondary/exit)
-"ceo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cep" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ceq" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cer" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ces" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cet" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ceu" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cev" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cew" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"ceo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cep" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ceq" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cer" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ces" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cet" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ceu" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cev" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{dir = 1; status = 2},/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cew" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cex" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Mining Outpost"},/turf/simulated/floor/plating,/area/station/quartermaster/magnet)
"cey" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2; tag = "icon-intact (NORTHWEST)"},/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/quartermaster/magnet)
"cez" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/quartermaster/magnet)
@@ -5654,12 +5654,12 @@
"ceL" = (/obj/securearea{desc = "A warning sign which reads 'Fire Hazard'"; icon_state = "fire"; layer = 3; name = "FIRE HAZARD"; tag = "icon-bio"},/turf/simulated/wall/r_wall,/area/station/science/storage)
"ceM" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/science/storage)
"ceN" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/science/storage)
-"ceO" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/artifact)
-"ceP" = (/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ceQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair/office{tag = "icon-office_chair (EAST)"; icon_state = "office_chair"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ceR" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ceS" = (/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ceT" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
+"ceO" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/science/artifact)
+"ceP" = (/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ceQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair/office{tag = "icon-office_chair (EAST)"; icon_state = "office_chair"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ceR" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ceS" = (/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ceT" = (/obj/grille,/obj/window{dir = 8},/obj/window{dir = 4},/obj/window{dir = 1},/obj/window{dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
"ceU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/area/station/science{name = "Research Sector"})
"ceV" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 0; pixel_y = -26},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/science{name = "Research Sector"})
"ceW" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Security Intercom"; pixel_x = 0; pixel_y = -28},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/science{name = "Research Sector"})
@@ -5673,35 +5673,35 @@
"cfe" = (/obj/machinery/door/window/eastright,/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/medbay)
"cff" = (/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"cfg" = (/obj/shrub{tag = "icon-plant (EAST)"; icon = 'stationobjs.dmi'; icon_state = "plant"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"cfh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cfi" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cfh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cfi" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cfj" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cfk" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
-"cfl" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cfm" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cfl" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cfm" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cfn" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cfo" = (/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cfp" = (/obj/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor{tag = "icon-fullgreen"; icon_state = "fullgreen"},/area/station/hallway/secondary/exit)
"cfq" = (/obj/stool/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor{tag = "icon-fullgreen"; icon_state = "fullgreen"},/area/station/hallway/secondary/exit)
"cfr" = (/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/grass,/area/station/hallway/secondary/exit)
"cfs" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area)
-"cft" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/mouse,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cfz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cft" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/critter/mouse,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cfz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cfA" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"cfB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/quartermaster/magnet)
"cfC" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/magnet)
"cfD" = (/obj/lattice{tag = "icon-lattice-dir (NORTH)"; icon_state = "lattice-dir"; dir = 1},/obj/machinery/magnet_chassis,/obj/machinery/mining_magnet,/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"cfE" = (/obj/landmark/magnet_center,/turf/space,/area/mining/magnet)
"cfF" = (/turf/simulated/wall/r_wall,/area/station/hangar/science)
-"cfG" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor,/area/station/artifact)
-"cfH" = (/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/artifact)
-"cfI" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cfJ" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"cfG" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor,/area/station/science/artifact)
+"cfH" = (/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/science/artifact)
+"cfI" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cfJ" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"cfK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{tag = "icon-Stairs_alone"; icon_state = "Stairs_alone"; dir = 2},/area/station/science{name = "Research Sector"})
"cfL" = (/turf/simulated/wall,/area/station/science)
"cfM" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/science{name = "Research Sector"})
@@ -5721,11 +5721,11 @@
"cga" = (/obj/submachine/robomoduler,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cgb" = (/obj/landmark/start{name = "Cyborg"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"cgc" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance"; req_access_txt = "12;29"},/turf/simulated/floor/plating,/area/station/medical/robotics)
-"cgd" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cge" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgf" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgg" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cgh" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cgd" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cge" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgf" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgg" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cgh" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cgi" = (/obj/stool/chair{dir = 4},/obj/machinery/light_switch{name = "W light switch"; on = 0; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/station/hallway/secondary/exit)
"cgj" = (/obj/table,/obj/item/game_kit,/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
"cgk" = (/obj/stool/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
@@ -5738,22 +5738,22 @@
"cgr" = (/obj/machinery/computer/arcade,/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
"cgs" = (/obj/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/hallway/secondary/exit)
"cgt" = (/obj/stool/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{dir = 5; icon_state = "green"; tag = "icon-green (NORTHWEST)"},/area/station/hallway/secondary/exit)
-"cgu" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cgv" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"cgu" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cgv" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"cgw" = (/turf/simulated/wall/r_wall,/area/station/storage/tech)
"cgx" = (/turf/simulated/wall,/area/station/storage/tech)
"cgy" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/turf/simulated/floor/plating,/area/station/storage/tech)
-"cgz" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboardsolar)
-"cgA" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall/r_wall,/area/station/maintenance/starboardsolar)
-"cgB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cgC" = (/turf/simulated/wall,/area/station/maintenance/starboardsolar)
+"cgz" = (/turf/simulated/wall/r_wall,/area/station/maintenance/eastsolar)
+"cgA" = (/obj/securearea{name = "ENGINEERING ACCESS"},/turf/simulated/wall/r_wall,/area/station/maintenance/eastsolar)
+"cgB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cgC" = (/turf/simulated/wall,/area/station/maintenance/eastsolar)
"cgD" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/crowbar,/obj/item/weldingtool,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"cgE" = (/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area)
"cgF" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
"cgG" = (/obj/landmark/artifact,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
"cgH" = (/obj/crate,/obj/item/reagent_containers/fueltank,/obj/item/reagent_containers/fueltank,/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
-"cgI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cgJ" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"cgI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cgJ" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"cgK" = (/obj/closet/emcloset,/obj/decal/cleanable/cobweb,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/science)
"cgL" = (/obj/rack,/obj/machinery/meteorshield,/obj/machinery/meteorshield,/obj/item/extinguisher,/obj/item/wrench,/obj/item/storage/toolbox/emergency,/obj/item/storage/lightbox/tubes,/obj/item/reagent_containers/glass/bucket,/obj/item/device/glowstick,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/science)
"cgM" = (/obj/reagent_dispensers/foamtank,/obj/machinery/light/small{dir = 1; status = 2},/turf/simulated/floor/plating,/area/station/science)
@@ -5773,11 +5773,11 @@
"cha" = (/turf/simulated/wall,/area/station/medical/morgue)
"chb" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/medical/morgue)
"chc" = (/turf/simulated/wall/r_wall,/area/station/medical/morgue)
-"chd" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"che" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chf" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chg" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"chh" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"chd" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"che" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chf" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chg" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"chh" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
"chi" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/secondary/exit)
"chj" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"chk" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
@@ -5787,10 +5787,10 @@
"cho" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"chp" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"chq" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/secondary/exit)
-"chr" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chs" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"cht" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"chu" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"chr" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chs" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"cht" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"chu" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"chv" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor/plating,/area/station/storage/tech)
"chw" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/item/device/net_sniffer,/turf/simulated/floor/plating,/area/station/storage/tech)
"chx" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/radio,/turf/simulated/floor/plating,/area/station/storage/tech)
@@ -5799,11 +5799,11 @@
"chA" = (/obj/machinery/bot/guardbot/bootleg,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/guardbot_dock,/turf/simulated/floor/plating,/area/station/storage/tech)
"chB" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/computer3/luggable,/turf/simulated/floor/plating,/area/station/storage/tech)
"chC" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/storage/diskbox,/obj/machinery/light/small{dir = 4},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/station/storage/tech)
-"chD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"chE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"chF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"chG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"chH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"chD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"chE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"chF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"chG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"chH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"chI" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/machinery/meteorshield,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"chJ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/quartermaster/magnet)
"chK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/quartermaster/magnet)
@@ -5818,11 +5818,11 @@
"chT" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hangar/science)
"chU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/computer/ordercomp,/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/hangar/science)
"chV" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hangar/science)
-"chW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/artifact)
-"chX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/artifact)
-"chY" = (/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/artifact)
-"chZ" = (/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/artifact)
-"cia" = (/obj/stool/chair/office{tag = "icon-office_chair (WEST)"; icon_state = "office_chair"; dir = 8},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/artifact)
+"chW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
+"chX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
+"chY" = (/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/science/artifact)
+"chZ" = (/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
+"cia" = (/obj/stool/chair/office{tag = "icon-office_chair (WEST)"; icon_state = "office_chair"; dir = 8},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/science/artifact)
"cib" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/science)
"cic" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/science)
"cid" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/science)
@@ -5849,9 +5849,9 @@
"ciy" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/clothing/gloves/latex,/obj/item/spraybottle/cleaner,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"ciz" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/clothing/mask/surgical,/obj/item/device/healthanalyzer,/obj/item/device/detective_scanner,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/clothing/under/suit{name = "Mortician Suit"},/obj/item/stamp,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"ciA" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/crate/freezer{name = "Freezer - Spare Parts"},/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat,/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat{icon = 'blood.dmi'; icon_state = "gibtorso"; name = "meaty bit"},/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat{icon = 'blood.dmi'; icon_state = "gibmid2"; name = "gross organs"},/obj/item/reagent_containers/food/snacks/ingredient/meat/mysterymeat{icon = 'blood.dmi'; icon_state = "gibhead"; name = "grody thing"},/obj/item/reagent_containers/food/snacks/ingredient/meatpaste{desc = "Gross."; name = "old kidney"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
-"ciB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ciC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ciD" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ciB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ciC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ciD" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ciE" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/secondary/exit)
"ciF" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"ciG" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-arrival"; icon_state = "arrival"},/area/station/hallway/secondary/exit)
@@ -5863,8 +5863,8 @@
"ciM" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-arrival"; icon_state = "arrival"},/area/station/hallway/secondary/exit)
"ciN" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-arrivalcorner (WEST)"; icon_state = "arrivalcorner"; dir = 8},/area/station/hallway/secondary/exit)
"ciO" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/secondary/exit)
-"ciP" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"ciQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"ciP" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"ciQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"ciR" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/storage/tech)
"ciS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/storage/tech)
"ciT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/storage/tech)
@@ -5872,11 +5872,11 @@
"ciV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/storage/tech)
"ciW" = (/turf/simulated/floor/plating,/area/station/storage/tech)
"ciX" = (/obj/machinery/vending/computer3,/turf/simulated/floor/plating,/area/station/storage/tech)
-"ciY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"ciZ" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/starboardsolar)
-"cja" = (/obj/table,/obj/machinery/cell_charger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cjb" = (/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"cjc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"ciY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"ciZ" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/eastsolar)
+"cja" = (/obj/table,/obj/machinery/cell_charger,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cjb" = (/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"cjc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cjd" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/table{icon_state = "tabledir"; dir = 4},/obj/machinery/recharger,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"cje" = (/obj/crate,/turf/simulated/floor,/area/station/quartermaster/magnet)
"cjf" = (/obj/landmark/start{name = "Miner"},/turf/simulated/floor,/area/station/quartermaster/magnet)
@@ -5886,10 +5886,10 @@
"cjj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hangar/science)
"cjk" = (/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"; tag = "icon-Stairs_alone (WEST)"},/area/station/hangar/science)
"cjl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Science Hangar"; req_access_txt = "8"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/science)
-"cjm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/artifact)
-"cjn" = (/obj/submachine/cargopad{name = "Artifact Lab Pad"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"cjo" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/artifact)
-"cjp" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/storage/tapebox,/obj/item/device/audio_log,/turf/simulated/floor,/area/station/artifact)
+"cjm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/science/artifact)
+"cjn" = (/obj/submachine/cargopad{name = "Artifact Lab Pad"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"cjo" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/science/artifact)
+"cjp" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/storage/tapebox,/obj/item/device/audio_log,/turf/simulated/floor,/area/station/science/artifact)
"cjq" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/science)
"cjr" = (/obj/machinery/portable_atmospherics/pump,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/science)
"cjs" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/science)
@@ -5921,8 +5921,8 @@
"cjS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cjT" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cjU" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
-"cjV" = (/obj/disposalpipe/segment,/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cjW" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cjV" = (/obj/disposalpipe/segment,/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cjW" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/station/maintenance/east)
"cjX" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/secondary/exit)
"cjY" = (/turf/simulated/floor{dir = 2; icon_state = "arrivalcorner"; tag = "icon-arrivalcorner (NORTH)"},/area/station/hallway/secondary/exit)
"cjZ" = (/turf/simulated/floor{dir = 6; icon_state = "arrival"; tag = "icon-arrival (SOUTHWEST)"},/area/station/hallway/secondary/exit)
@@ -5937,9 +5937,9 @@
"cki" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/storage/tech)
"ckj" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/storage/tech)
"ckk" = (/obj/table,/obj/item/disk/data/cartridge/diagnostics{pixel_x = 4; pixel_y = -2},/obj/item/disk/data/cartridge/atmos{pixel_x = -6; pixel_y = 4},/obj/item/disk/data/cartridge{desc = "A programmable data cartridge for portable microcomputers."; name = "EEPROM Cart"},/obj/item/device/audio_log,/obj/item/peripheral/card_scanner,/obj/item/peripheral/card_scanner,/turf/simulated/floor/plating,/area/station/storage/tech)
-"ckl" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/solar_control,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"ckm" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"ckn" = (/obj/machinery/power/smes{chargelevel = 15000; chargemode = 1; online = 0; output = 10000; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"ckl" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/solar_control,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"ckm" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"ckn" = (/obj/machinery/power/smes{chargelevel = 15000; chargemode = 1; online = 0; output = 10000; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"cko" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/storage/cablesbox,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"ckp" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/magnet)
"ckq" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoorright1"; id = "hangar_artlab"; name = "Science Hangar"; tag = "icon-bdoorright1 (NORTH)"},/turf/simulated/floor/shuttlebay,/area/station/hangar/science)
@@ -5948,9 +5948,9 @@
"ckt" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hangar/science)
"cku" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/door_control{id = "hangar_artlab"; name = "Science Hangar Door Control"; pixel_x = 24},/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/hangar/science)
"ckv" = (/turf/simulated/wall,/area/station/hangar/science)
-"ckw" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/artifact)
-"ckx" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/artifact)
-"cky" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/artifact)
+"ckw" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/science/artifact)
+"ckx" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/science/artifact)
+"cky" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/science/artifact)
"ckz" = (/obj/machinery/door/airlock/medical{name = "Test Chamber Access"; req_access_txt = "33"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating,/area/station/science{name = "Research Sector"})
"ckA" = (/turf/simulated/wall,/area/station/chemistry)
"ckB" = (/turf/simulated/wall/r_wall,/area/station/chemistry)
@@ -5969,7 +5969,7 @@
"ckO" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/medical/head)
"ckP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Medical Director"; req_access_txt = "53"},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/head)
"ckQ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/medical/head)
-"ckR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "5"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ckR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "5"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ckS" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/robotics)
"ckT" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/robotics)
"ckU" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/medical/robotics)
@@ -5997,8 +5997,8 @@
"clq" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/machinery/light/small{dir = 8},/obj/item/peripheral/printer,/obj/item/device/flash,/turf/simulated/floor/plating,/area/station/storage/tech)
"clr" = (/obj/rack,/obj/item/circuitboard/teleporter,/obj/item/circuitboard/card,/obj/item/circuitboard/cloning,/obj/item/circuitboard/barcode_qm,/obj/item/circuitboard/barcode,/turf/simulated/floor/plating,/area/station/storage/tech)
"cls" = (/obj/rack,/obj/item/circuitboard/arcade,/obj/item/circuitboard/science_teleporter,/obj/item/circuitboard/powermonitor,/obj/item/circuitboard/powermonitor_smes,/turf/simulated/floor/plating,/area/station/storage/tech)
-"clt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"clu" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"clt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"clu" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"clv" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"; tag = ""},/obj/machinery/dispenser,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"clw" = (/obj/stool,/turf/simulated/floor,/area/station/quartermaster/magnet)
"clx" = (/obj/machinery/conveyor_switch{id = "mining"; layer = 4},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/magnet)
@@ -6052,9 +6052,9 @@
"cmt" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/storage/tech)
"cmu" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/storage/tech)
"cmv" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/storage/tech)
-"cmw" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/starboard)
-"cmx" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cmy" = (/turf/space,/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/starboard)
+"cmw" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/station/solar/east)
+"cmx" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cmy" = (/turf/space,/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/east)
"cmz" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/magnet)
"cmA" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"cmB" = (/turf/simulated/floor{tag = "icon-yellowcorner"; icon_state = "yellowcorner"},/area/station/quartermaster/magnet)
@@ -6110,7 +6110,7 @@
"cnz" = (/turf/space,/area/shuttle/escape/station)
"cnA" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{tag = "icon-neutral (SOUTHEAST)"; icon_state = "neutral"; dir = 6},/area/station/hallway/secondary/exit)
"cnB" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
-"cnC" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
+"cnC" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
"cnD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{name = "Mining Shuttle Airlock"},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/quartermaster/magnet)
"cnE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{name = "Mining Shuttle Airlock"},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/quartermaster/magnet)
"cnF" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/magnet)
@@ -6156,13 +6156,13 @@
"cot" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cou" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cov" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
-"cow" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cox" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cow" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cox" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/plating,/area/station/maintenance/east)
"coy" = (/obj/machinery/door/poddoor/blast,/turf/simulated/floor/shuttlebay,/area/station/hallway/secondary/exit)
"coz" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hallway/secondary/exit)
"coA" = (/turf/simulated/floor{icon_state = "Stairs2_wide"},/area/station/hallway/secondary/exit)
-"coB" = (/obj/lattice{tag = "icon-lattice-dir (SOUTHEAST)"; icon_state = "lattice-dir"; dir = 6},/turf/space,/area/station/solar/starboard)
-"coC" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/starboard)
+"coB" = (/obj/lattice{tag = "icon-lattice-dir (SOUTHEAST)"; icon_state = "lattice-dir"; dir = 6},/turf/space,/area/station/solar/east)
+"coC" = (/turf/space,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/station/solar/east)
"coD" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area)
"coE" = (/turf/simulated/wall/r_wall{name = "very r wall"; explosion_resistance = 15},/area/station/testchamber)
"coF" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "test_chamber2"; name = "Test Chamber Shield"; opacity = 0},/obj/grille,/obj/window/crystal,/obj/window/crystal/reinforced/west,/obj/window/crystal/reinforced/north,/obj/window/crystal/reinforced/south,/turf/simulated/floor/engine/vacuum,/area/station/testchamber)
@@ -6203,8 +6203,8 @@
"cpo" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cpp" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (WEST)"; icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
"cpq" = (/obj/machinery/light/emergency{tag = "icon-ebulb1 (EAST)"; icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "delivery"},/area/station/hallway/secondary/exit)
-"cpr" = (/obj/machinery/power/solar,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
-"cps" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/starboard)
+"cpr" = (/obj/machinery/power/solar,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
+"cps" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area/station/solar/east)
"cpt" = (/turf/space,/area/shuttle/mining/station)
"cpu" = (/obj/item/device/audio_log/wall_mounted{anchored = 1; max_lines = 350; mode = 1; name = "Test Chamber Recorder"; pixel_x = -25},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cpv" = (/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6236,12 +6236,12 @@
"cpV" = (/obj/machinery/light/small,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cpW" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/table,/obj/item/paper_bin,/obj/item/pen/marker/red,/obj/item/storage/evidence,/obj/item/storage/evidence,/obj/item/storage/evidence,/obj/item/storage/evidence,/obj/item/storage/evidence,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
"cpX" = (/obj/disposaloutlet{dir = 1; mailgroup = "medresearch"; mailgroup2 = "security"; message = "Delivery alert in Morgue."; name = "Morgue Outlet"},/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/medical/morgue)
-"cpY" = (/obj/landmark{name = "blobstart"},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cpY" = (/obj/landmark{name = "blobstart"},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cpZ" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cqa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"cqb" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cqc" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"cqd" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
+"cqb" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 9},/turf/simulated/floor/plating/airless/catwalk{dir = 8; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cqc" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"cqd" = (/turf/space,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
"cqe" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cqf" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; icon_state = "on"; on = 1},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cqg" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6275,7 +6275,7 @@
"cqI" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"cqJ" = (/turf/simulated/floor{tag = "icon-corner_nwest (WEST)"; icon_state = "corner_nwest"; dir = 8},/area/station/hallway/secondary/exit)
"cqK" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-corner_neast"; icon_state = "corner_neast"; dir = 2},/area/station/hallway/secondary/exit)
-"cqL" = (/obj/machinery/power/solar,/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
+"cqL" = (/obj/machinery/power/solar,/obj/cable,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
"cqM" = (/obj/table/reinforced{dir = 4; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir"},/obj/item/device/healthanalyzer,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cqN" = (/obj/machinery/optable,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
"cqO" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6303,10 +6303,10 @@
"crk" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/storage/toolbox/mechanical,/obj/item/crowbar,/obj/item/storage/diskbox,/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
"crl" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
"crm" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/medical/research)
-"crn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cro" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"crp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"crq" = (/obj/crate/trashcart,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"crn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cro" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"crp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"crq" = (/obj/crate/trashcart,/turf/simulated/floor/plating,/area/station/maintenance/east)
"crr" = (/turf/simulated/floor{tag = "icon-corner_west"; icon_state = "corner_west"; dir = 2},/area/station/hallway/secondary/exit)
"crs" = (/obj/machinery/light/emergency,/turf/simulated/floor{tag = "icon-corner_east (WEST)"; icon_state = "corner_east"; dir = 8},/area/station/hallway/secondary/exit)
"crt" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/station/hallway/secondary/exit)
@@ -6347,9 +6347,9 @@
"csc" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/firstaid/toxin,/obj/item/storage/toolbox/emergency,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/hand_labeler,/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
"csd" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/storage/firstaid/brain,/obj/item/storage/firstaid/brain,/obj/item/storage/firstaid/regular,/obj/item/device/healthanalyzer,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
"cse" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/stool/chair/office{tag = "icon-office_chair (WEST)"; icon_state = "office_chair"; dir = 8},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
-"csf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"csg" = (/obj/closet/firecloset,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"csh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"csf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Medical Intercom"; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"csg" = (/obj/closet/firecloset,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"csh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"csi" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"csj" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
"csk" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/hallway/secondary/exit)
@@ -6378,11 +6378,11 @@
"csH" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
"csI" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-medbay"; icon_state = "medbay"; dir = 2},/area/station/medical/research)
"csJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Med-Sci Maintenance"; req_access_txt = "9"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/medical/research)
-"csK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"csL" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/maintenance/starboard)
-"csM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/maintenance/starboard)
-"csN" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/storage/lightbox/tubes,/obj/item/storage/lightbox/bulbs,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/radio,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/station/maintenance/starboard)
-"csO" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 10},/obj/cable,/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
+"csK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"csL" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/station/maintenance/east)
+"csM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/station/maintenance/east)
+"csN" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/storage/lightbox/tubes,/obj/item/storage/lightbox/bulbs,/obj/item/device/glowstick,/obj/item/device/glowstick,/obj/item/device/radio,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/station/maintenance/east)
+"csO" = (/turf/space,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 10},/obj/cable,/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
"csP" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/magnet)
"csQ" = (/obj/grille,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/quartermaster/magnet)
"csR" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (NORTH)"; icon_state = "reinf_tabledir"; dir = 1},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/item/storage/firstaid/syringes,/turf/simulated/floor/shuttlebay{name = "test chamber plating"},/area/station/testchamber)
@@ -6407,10 +6407,10 @@
"ctk" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor{tag = "icon-medstairs2_wide"; icon_state = "medstairs2_wide"; dir = 2},/area/station/medical/research)
"ctl" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/research)
"ctm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/research)
-"ctn" = (/obj/item/storage/toolbox/emergency,/obj/item/storage/mousetraps,/obj/item/sponge,/obj/item/spraybottle/cleaner,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/obj/item/chem_grenade/cleaner,/obj/crate,/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/maintenance/starboard)
-"cto" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/starboard)
-"ctp" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/computer3/generic/personal,/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/maintenance/starboard)
-"ctq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ctn" = (/obj/item/storage/toolbox/emergency,/obj/item/storage/mousetraps,/obj/item/sponge,/obj/item/spraybottle/cleaner,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/obj/item/chem_grenade/cleaner,/obj/crate,/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/maintenance/east)
+"cto" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/maintenance/east)
+"ctp" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/computer3/generic/personal,/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/maintenance/east)
+"ctq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ctr" = (/obj/machinery/mass_driver{dir = 2; id = "chemdock_out"},/obj/machinery/door/poddoor{id = "chemdock_out"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/medsci)
"cts" = (/obj/securearea{desc = "A warning sign which reads 'COLLISION HAZARD'"; name = "COLLISION HAZARD"},/turf/simulated/wall/r_wall,/area/station/routingdepot/medsci)
"ctt" = (/obj/machinery/conveyor{dir = 1; name = "cargo belt - north"; operating = 1},/obj/machinery/door/poddoor{id = "chemdock_in"; name = "Cargo Routing Door"},/turf/simulated/floor/plating,/area/station/routingdepot/medsci)
@@ -6437,10 +6437,10 @@
"ctO" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/clone_scanner,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/research)
"ctP" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/research)
"ctQ" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating/airless,/area)
-"ctR" = (/obj/closet/jcloset,/turf/simulated/floor{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/area/station/maintenance/starboard)
-"ctS" = (/obj/mopbucket,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-purple"; icon_state = "purple"},/area/station/maintenance/starboard)
-"ctT" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/area/station/maintenance/starboard)
-"ctU" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ctR" = (/obj/closet/jcloset,/turf/simulated/floor{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/area/station/maintenance/east)
+"ctS" = (/obj/mopbucket,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-purple"; icon_state = "purple"},/area/station/maintenance/east)
+"ctT" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/area/station/maintenance/east)
+"ctU" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
"ctV" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/turf/simulated/floor/plating,/area/station/medical/medbay)
"ctW" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/turf/simulated/floor/plating,/area/station/medical/medbay)
"ctX" = (/obj/grille,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/medical/medbay)
@@ -6456,8 +6456,8 @@
"cuh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"cui" = (/obj/landmark/start{name = "Geneticist"},/obj/stool/chair/office{tag = "icon-office_chair (EAST)"; icon_state = "office_chair"; dir = 4},/turf/simulated/floor{tag = "icon-bluewhite (EAST)"; icon_state = "bluewhite"; dir = 4},/area/station/medical/research)
"cuj" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/research)
-"cuk" = (/obj/grille,/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"cul" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"cuk" = (/obj/grille,/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"cul" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{dir = 2; icon_state = "rwindow"; tag = "icon-rwindow (NORTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"cum" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/north,/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/medical/cdc)
"cun" = (/obj/closet/l3closet,/turf/simulated/floor{icon_state = "bot_white"},/area/station/medical/cdc)
"cuo" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc)
@@ -6486,9 +6486,9 @@
"cuL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"; tag = "icon-pipe-s (EAST)"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"cuM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{tag = "icon-bluewhite (EAST)"; icon_state = "bluewhite"; dir = 4},/area/station/medical/research)
"cuN" = (/obj/machinery/clonegrinder,/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/research)
-"cuO" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cuP" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"cuQ" = (/obj/machinery/power/tracker,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"cuO" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cuP" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille/catwalk{dir = 4},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"cuQ" = (/obj/machinery/power/tracker,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"cuR" = (/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"; tag = "icon-bio"},/turf/simulated/wall/r_wall,/area/station/medical/cdc)
"cuS" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Pathology Lab"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "delivery_white"},/area/station/medical/cdc)
"cuT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"; tag = "icon-bio"},/turf/simulated/wall/r_wall,/area/station/medical/cdc)
@@ -6553,8 +6553,8 @@
"cwa" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/medical/research)
"cwb" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm2"; layer = 10; name = "palm tree"},/obj/landmark{name = "monkeyspawn_normal"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/medical/research)
"cwc" = (/obj/grille,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/medical/research)
-"cwd" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
-"cwe" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/starboard)
+"cwd" = (/turf/space,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
+"cwe" = (/turf/space,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/catwalk{dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 4; icon_state = "catwalk_cross"; layer = 2},/area/station/solar/east)
"cwf" = (/obj/grille,/obj/window/reinforced/west,/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/cdc)
"cwg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/wirecutters,/turf/simulated/floor/plating,/area/station/medical/cdc)
"cwh" = (/obj/item/cigbutt,/turf/simulated/floor/plating,/area/station/medical/cdc)
diff --git a/maps/concept_fixed.dmm b/maps/concept_fixed.dmm
index 7d86b57..1e97504 100644
--- a/maps/concept_fixed.dmm
+++ b/maps/concept_fixed.dmm
@@ -27,14 +27,14 @@
"aaA" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
"aaB" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall,/area/station/hallway/secondary/shuttle)
"aaC" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hallway/secondary/shuttle)
-"aaD" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/port)
-"aaE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/port)
-"aaF" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/port)
+"aaD" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/west)
+"aaE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/west)
+"aaF" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/west)
"aaG" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hallway/secondary/shuttle)
"aaH" = (/obj/lattice,/turf/space,/area)
"aaI" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"aaJ" = (/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"aaK" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/port)
+"aaK" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/west)
"aaL" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"aaM" = (/turf/simulated/floor/plating/airless,/area)
"aaN" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
@@ -66,7 +66,7 @@
"abn" = (/turf/simulated/floor{tag = "icon-arrivalcorner (WEST)"; icon_state = "arrivalcorner"; dir = 8},/area/station/hallway/secondary/shuttle)
"abo" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"abp" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
-"abq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/port)
+"abq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/west)
"abr" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/owlery)
"abs" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/owlery)
"abt" = (/obj/grille,/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
@@ -107,7 +107,7 @@
"acc" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/station/hallway/secondary/shuttle)
"acd" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"ace" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/camera{c_tag = "Escape Shuttle Hallway"; dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"acf" = (/turf/simulated/wall,/area/station/maintenance/fsmaint)
+"acf" = (/turf/simulated/wall,/area/station/maintenance/NEmaint)
"acg" = (/obj/table,/obj/item/clothing/under/gimmick/owl,/obj/item/clothing/mask/owl_mask,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/owlery)
"ach" = (/obj/machinery/portableowl{name = "an Owl with a chip out of his beak"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/owlery)
"aci" = (/turf/simulated/floor{tag = "icon-arrivalcorner (EAST)"; icon_state = "arrivalcorner"; dir = 4},/area/station/hallway/secondary/shuttle)
@@ -122,8 +122,8 @@
"acr" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/station/hallway/secondary/shuttle)
"acs" = (/turf/simulated/floor{tag = "icon-escapecorner (NORTH)"; icon_state = "escapecorner"; dir = 1},/area/station/hallway/secondary/shuttle)
"act" = (/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"acu" = (/obj/item/device/analyzer,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"acv" = (/obj/storage/closet,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"acu" = (/obj/item/device/analyzer,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"acv" = (/obj/storage/closet,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"acw" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"acx" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"acy" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -132,8 +132,8 @@
"acB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"acC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"acD" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"acE" = (/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"acF" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"acE" = (/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"acF" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"acG" = (/obj/machinery/portableowl{name = "The Sexiest Owl"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/owlery)
"acH" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/owlery)
"acI" = (/obj/machinery/camera{c_tag = "Shuttle Bay Port"; dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -146,16 +146,16 @@
"acP" = (/turf/simulated/floor{tag = "icon-L13"; icon_state = "L13"},/area/station/hallway/secondary/shuttle)
"acQ" = (/turf/simulated/floor{tag = "icon-L15"; icon_state = "L15"},/area/station/hallway/secondary/shuttle)
"acR" = (/obj/machinery/camera{c_tag = "Shuttle Bay Starboard"; dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"acS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"acT" = (/obj/machinery/camera{c_tag = "FS Maintenance - Airlock"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"acU" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"acV" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; name = "VACUUM AREA"; pixel_x = 30; tag = "icon-space"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"acW" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
-"acX" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"acY" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
-"acZ" = (/turf/simulated/wall,/area/station/maintenance/portsolar)
-"ada" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adb" = (/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"acS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"acT" = (/obj/machinery/camera{c_tag = "FS Maintenance - Airlock"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"acU" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"acV" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; name = "VACUUM AREA"; pixel_x = 30; tag = "icon-space"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"acW" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
+"acX" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"acY" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
+"acZ" = (/turf/simulated/wall,/area/station/maintenance/westsolar)
+"ada" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adb" = (/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"adc" = (/turf/simulated/floor{tag = "icon-L2"; icon_state = "L2"},/area/station/hallway/secondary/shuttle)
"add" = (/turf/simulated/floor{tag = "icon-L4"; icon_state = "L4"},/area/station/hallway/secondary/shuttle)
"ade" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-L6"; icon_state = "L6"},/area/station/hallway/secondary/shuttle)
@@ -165,31 +165,31 @@
"adi" = (/turf/simulated/floor{tag = "icon-L14"; icon_state = "L14"},/area/station/hallway/secondary/shuttle)
"adj" = (/turf/simulated/floor{tag = "icon-L16"; icon_state = "L16"},/area/station/hallway/secondary/shuttle)
"adk" = (/obj/window/reinforced,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"adl" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"adm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"adn" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"adl" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"adm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"adn" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ado" = (/obj/grille,/turf/simulated/floor/plating/airless,/area)
-"adp" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"adq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/station/solar/port)
-"adr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/port)
-"ads" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/port)
+"adp" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"adq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/station/solar/west)
+"adr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/west)
+"ads" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/west)
"adt" = (/obj/poolwater,/turf/simulated/floor{icon = 'icons/turf/floors.dmi'; icon_state = "poolwaterfloor"},/area/station/owlery)
-"adu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/portsolar)
-"adv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"ady" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"adu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/westsolar)
+"adv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"ady" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"adz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"adA" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"adB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"adC" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"adD" = (/obj/submachine/ATM{pixel_x = 30},/obj/machinery/door/window/westright,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"adE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"adE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"adF" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/owlery)
"adG" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced/east,/turf/simulated/floor/plating,/area/station/owlery)
"adH" = (/turf/simulated/wall/r_wall,/area/station/owlery)
-"adI" = (/turf/simulated/wall/r_wall,/area/station/maintenance/portsolar)
-"adJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"adI" = (/turf/simulated/wall/r_wall,/area/station/maintenance/westsolar)
+"adJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"adK" = (/turf/simulated/wall,/area/station/crew_quarters/market)
"adL" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"adM" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
@@ -199,142 +199,142 @@
"adQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"adR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area)
"adS" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/communications_dish{name = "Auxiliary Communications dish"},/turf/simulated/floor/plating/airless,/area)
-"adT" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adU" = (/obj/machinery/power/terminal{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"adV" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"adT" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adU" = (/obj/machinery/power/terminal{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"adV" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"adW" = (/obj/rack,/turf/simulated/floor,/area/station/crew_quarters/market)
"adX" = (/turf/simulated/floor,/area/station/crew_quarters/market)
"adY" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "store2"; layer = 4; name = "Market #2"; opacity = 0; p_open = 1},/turf/simulated/floor,/area/station/crew_quarters/market)
"adZ" = (/obj/machinery/camera{c_tag = "Market Fore"; dir = 2},/turf/simulated/floor,/area/station/crew_quarters/market)
"aea" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/crew_quarters/market)
"aeb" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
-"aec" = (/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aed" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aec" = (/turf/simulated/floor,/area/station/hallway/primary/north)
+"aed" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
"aee" = (/obj/rack,/obj/item/tank/jetpack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/turf/simulated/floor{tag = "icon-caution (NORTHWEST)"; icon_state = "caution"; dir = 9},/area/station/ai_monitored/storage/eva)
"aef" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area/station/ai_monitored/storage/eva)
"aeg" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area/station/ai_monitored/storage/eva)
"aeh" = (/obj/rack,/obj/item/tank/jetpack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/screwdriver,/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area/station/ai_monitored/storage/eva)
"aei" = (/obj/rack,/obj/item/tank/jetpack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor{tag = "icon-caution (NORTHEAST)"; icon_state = "caution"; dir = 5},/area/station/ai_monitored/storage/eva)
-"aej" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aek" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
+"aej" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aek" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
"ael" = (/obj/lattice,/obj/machinery/camera{dir = 4},/turf/space,/area)
-"aem" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"aen" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aeo" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aep" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aeq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aer" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"aem" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"aen" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aeo" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aep" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aeq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aer" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"aes" = (/obj/rack,/obj/item/clothing/mask/horse_mask,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/crew_quarters/market)
"aet" = (/obj/table/reinforced{dir = 4; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir"},/turf/simulated/floor,/area/station/crew_quarters/market)
"aeu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/market)
"aev" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/crew_quarters/market)
-"aew" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Fore Primary Hallway - Fore"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aew" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Fore Primary Hallway - Fore"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
"aex" = (/obj/item/rods{amount = 50},/obj/item/pen{desc = "It writes upside down."; name = "Astronaut Pen"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"aey" = (/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aez" = (/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aeA" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/item/crowbar,/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
-"aeB" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeC" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/data_terminal,/obj/machinery/camera{c_tag = "Aux Comm Control"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeD" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
-"aeE" = (/obj/cable,/obj/machinery/power/solar_control{id = "portsolar"; name = "Port Solar Control"; track = 2},/obj/machinery/camera{c_tag = "Port Solar Substation"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"aeB" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeC" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/data_terminal,/obj/machinery/camera{c_tag = "Aux Comm Control"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeD" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
+"aeE" = (/obj/cable,/obj/machinery/power/solar_control{id = "portsolar"; name = "Port Solar Control"; track = 2},/obj/machinery/camera{c_tag = "Port Solar Substation"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"aeF" = (/obj/rack,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor,/area/station/crew_quarters/market)
"aeG" = (/obj/machinery/door_control{name = "Door Toggle"; pixel_y = -24; id = "store2"},/obj/machinery/light,/turf/simulated/floor,/area/station/crew_quarters/market)
"aeH" = (/obj/table/reinforced{dir = 4; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir"},/obj/machinery/cashreg,/turf/simulated/floor,/area/station/crew_quarters/market)
"aeI" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/market)
"aeJ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/light,/turf/simulated/floor/plating,/area/station/crew_quarters/market)
-"aeK" = (/turf/simulated/floor{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/station/hallway/primary/fore)
+"aeK" = (/turf/simulated/floor{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/station/hallway/primary/north)
"aeL" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
"aeM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"aeN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aeO" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
-"aeP" = (/obj/cable,/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeQ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aeV" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"aeW" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/portsolar)
+"aeP" = (/obj/cable,/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeQ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aeV" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"aeW" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/westsolar)
"aeX" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/market)
"aeY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/market)
"aeZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/crew_quarters/market)
-"afa" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"afb" = (/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hallway/primary/fore)
+"afa" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"afb" = (/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hallway/primary/north)
"afc" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
"afd" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/weldingtool,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/simulated/floor{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"afe" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aff" = (/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/bulbs,/turf/simulated/floor{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/station/ai_monitored/storage/eva)
"afg" = (/obj/storage/crate/rcd,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera/motion{c_tag = "EVA"; dir = 8},/turf/simulated/floor{tag = "icon-caution (NORTHEAST)"; icon_state = "caution"; dir = 5},/area/station/ai_monitored/storage/eva)
-"afh" = (/obj/stool/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afi" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/luggable_computer,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afk" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afl" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"afh" = (/obj/stool/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afi" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/luggable_computer,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afk" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afl" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"afn" = (/obj/lattice,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/space,/area)
"afo" = (/obj/machinery/camera,/turf/space,/area)
"afp" = (/obj/rack,/obj/item/device/radio/intercom{pixel_y = 24},/turf/simulated/floor,/area/station/crew_quarters/market)
"afq" = (/obj/machinery/door_control{id = "store1"; name = "Door Toggle"; pixel_y = 22},/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/crew_quarters/market)
"afr" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/obj/machinery/bot/guardbot/bootleg,/turf/simulated/floor/plating,/area/station/crew_quarters/market)
-"afs" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aft" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=arrivals"; location = "market"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"afu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"afv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hallway/primary/fore)
+"afs" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aft" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=arrivals"; location = "market"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"afu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"afv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hallway/primary/north)
"afw" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = null; req_access_txt = "18"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"afx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"afy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
"afz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = null; req_access_txt = "18"},/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
-"afA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afB" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"afC" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar_control{id = "starboardsolar"; name = "Starboard Solar Control"; track = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"afG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"afH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"afI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"afA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afB" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"afC" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar_control{id = "starboardsolar"; name = "Starboard Solar Control"; track = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"afG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"afH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"afI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"afJ" = (/obj/lattice,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area)
"afK" = (/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area)
-"afL" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating/airless,/area/station/solar/port)
+"afL" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating/airless,/area/station/solar/west)
"afM" = (/obj/rack,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/crew_quarters/market)
-"afN" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/fore)
+"afN" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/north)
"afO" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = null; req_access_txt = "18"},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/ai_monitored/storage/eva)
"afP" = (/turf/simulated/floor{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/station/ai_monitored/storage/eva)
"afQ" = (/obj/item/wrench,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/ai_monitored/storage/eva)
-"afR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afS" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"afU" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"afV" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"afW" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"afX" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"afR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afS" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"afU" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"afV" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"afW" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"afX" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"afY" = (/obj/disposalpipe/trunk{dir = 8},/obj/disposaloutlet{dir = 4},/turf/simulated/floor/plating/airless,/area)
"afZ" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "store1"; layer = 4; name = "Market #1"; opacity = 0; p_open = 1},/turf/simulated/floor,/area/station/crew_quarters/market)
"aga" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/crew_quarters/market)
"agb" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
-"agc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"agd" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"age" = (/obj/landmark{name = "monkeyspawn_albert"},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hallway/primary/fore)
+"agc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"agd" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"age" = (/obj/landmark{name = "monkeyspawn_albert"},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hallway/primary/north)
"agf" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/storage/firstaid/oxygen,/turf/simulated/floor{tag = "icon-caution (SOUTHWEST)"; icon_state = "caution"; dir = 10},/area/station/ai_monitored/storage/eva)
"agg" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/device/prox_sensor,/obj/item/device/radio,/obj/item/device/t_scanner,/obj/machinery/camera/motion{c_tag = "EVA"; dir = 1},/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area/station/ai_monitored/storage/eva)
"agh" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/device/analyzer,/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/item/device/timer,/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area/station/ai_monitored/storage/eva)
"agi" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/cable_coil,/obj/item/cable_coil,/obj/item/cable_coil,/obj/item/cable_coil,/obj/item/storage/toolbox/electrical,/obj/item/disk/data/floppy/read_only/communications,/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area/station/ai_monitored/storage/eva)
"agj" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/storage/belt/utility,/obj/item/device/gps,/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area/station/ai_monitored/storage/eva)
"agk" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor{tag = "icon-caution (SOUTHEAST)"; icon_state = "caution"; dir = 6},/area/station/ai_monitored/storage/eva)
-"agl" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"agm" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"agn" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ago" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"agp" = (/obj/machinery/camera{c_tag = "Starboard Solar Substation"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"agq" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/fsmaint)
-"agr" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/starboard)
+"agl" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"agm" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"agn" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ago" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"agp" = (/obj/machinery/camera{c_tag = "Starboard Solar Substation"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"agq" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/NEmaint)
+"agr" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/east)
"ags" = (/turf/simulated/wall/r_wall,/area/station/quartermaster/storage)
"agt" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "12;31"},/turf/simulated/floor/plating,/area/station/quartermaster/storage)
"agu" = (/obj/machinery/camera{c_tag = "Market Aft"; dir = 8},/turf/simulated/floor,/area/station/crew_quarters/market)
-"agv" = (/turf/simulated/wall,/area/station/hallway/primary/fore)
-"agw" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"agx" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/fore)
-"agy" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"agv" = (/turf/simulated/wall,/area/station/hallway/primary/north)
+"agw" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/north)
+"agx" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/north)
+"agy" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"agz" = (/turf/simulated/wall,/area/station/maintenance/disposal)
"agA" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/disposal)
"agB" = (/obj/machinery/door/airlock/external{name = "Crusher Airlock"; req_access_txt = "26;12"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -345,7 +345,7 @@
"agG" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/storage)
"agH" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Market"},/turf/simulated/floor{icon_state = "bot"},/area/station/crew_quarters/market)
"agI" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/market)
-"agJ" = (/obj/machinery/vending/cola/red,/turf/simulated/floor,/area/station/hallway/primary/fore)
+"agJ" = (/obj/machinery/vending/cola/red,/turf/simulated/floor,/area/station/hallway/primary/north)
"agK" = (/obj/storage/closet/biohazard,/turf/simulated/floor,/area/station/janitor)
"agL" = (/obj/item/mop,/obj/item/storage/box/lightbox/bulbs,/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor,/area/station/janitor)
"agM" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/item/mop,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/bulbs,/turf/simulated/floor,/area/station/janitor)
@@ -354,8 +354,8 @@
"agP" = (/obj/mopbucket,/turf/simulated/floor,/area/station/janitor)
"agQ" = (/obj/stool,/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/turf/simulated/floor,/area/station/janitor)
"agR" = (/turf/simulated/wall,/area/station/janitor)
-"agS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"agT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"agS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"agT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"agU" = (/obj/item/device/radio/intercom{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"agV" = (/obj/disposalpipe/trunk{tag = "icon-pipe-t (NORTH)"; icon_state = "pipe-t"; dir = 1},/obj/machinery/disposal,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"agW" = (/obj/machinery/launcher_loader/east,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -369,15 +369,15 @@
"ahe" = (/obj/machinery/door/window/northleft,/obj/submachine/ATM{pixel_y = -30},/turf/simulated/floor,/area/station/crew_quarters/market)
"ahf" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/crew_quarters/market)
"ahg" = (/obj/machinery/door/window/northright,/obj/submachine/ATM{pixel_y = -30},/turf/simulated/floor,/area/station/crew_quarters/market)
-"ahh" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ahi" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"ahh" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"ahi" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/north)
"ahj" = (/obj/storage/closet/janitor,/turf/simulated/floor,/area/station/janitor)
"ahk" = (/obj/item/sponge,/turf/simulated/floor,/area/station/janitor)
"ahl" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor,/area/station/janitor)
"ahm" = (/turf/simulated/floor,/area/station/janitor)
"ahn" = (/obj/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/station/janitor)
"aho" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/item/spraybottle/cleaner,/obj/item/spraybottle/cleaner,/obj/item/spraybottle/cleaner,/turf/simulated/floor,/area/station/janitor)
-"ahp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "FS Maintenance - Center"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"ahp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "FS Maintenance - Center"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ahq" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor,/area/station/maintenance/disposal)
"ahr" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/disposal)
"ahs" = (/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -392,16 +392,16 @@
"ahB" = (/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/quartermaster/storage)
"ahC" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/quartermaster/storage)
"ahD" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/market)
-"ahE" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"ahF" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ahG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ahH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"ahE" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"ahF" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/north)
+"ahG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/hallway/primary/north)
+"ahH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"ahI" = (/turf/simulated/wall,/area/station/storage/autolathe)
"ahJ" = (/obj/storage/cart/trash,/turf/simulated/floor,/area/station/janitor)
"ahK" = (/obj/item/reagent_containers/glass/bucket,/turf/simulated/floor,/area/station/janitor)
"ahL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/item/spraybottle,/obj/item/spraybottle,/obj/item/spraybottle,/turf/simulated/floor,/area/station/janitor)
"ahM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/janitor)
-"ahN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"ahN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ahO" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"ahP" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/disposal)
"ahQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -435,7 +435,7 @@
"ais" = (/obj/machinery/conveyor{dir = 4; id = "qmin"},/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"},/turf/simulated/floor{icon_state = "caution_ns"; tag = "icon-caution_east"},/area/station/quartermaster/storage)
"ait" = (/obj/machinery/conveyor{dir = 4; id = "cargo"},/obj/plasticflaps,/turf/simulated/floor,/area/station/quartermaster/storage)
"aiu" = (/obj/machinery/conveyor{dir = 4; id = "cargo"},/turf/simulated/floor,/area/station/quartermaster/storage)
-"aiv" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway - Center"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aiv" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway - Center"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
"aiw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/storage/autolathe)
"aix" = (/turf/simulated/floor,/area/station/storage/autolathe)
"aiy" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Autolathe"; dir = 8},/turf/simulated/floor,/area/station/storage/autolathe)
@@ -451,7 +451,7 @@
"aiI" = (/obj/table{icon_state = "tabledir"; dir = 4},/turf/simulated/floor,/area/station/quartermaster/storage)
"aiJ" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/autolathe)
"aiK" = (/obj/machinery/manufacturer/general,/turf/simulated/floor,/area/station/storage/autolathe)
-"aiL" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aiL" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aiM" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/obj/machinery/door/airlock/maintenance{name = "Waste Disposal"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"aiN" = (/obj/machinery/door/poddoor/blast{dir = 1; icon_state = "bdoorright1"; id = "qm_dock"; tag = "icon-bdoorright1 (NORTH)"},/turf/simulated/floor/plating,/area/station/quartermaster/storage)
"aiO" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster/storage)
@@ -462,7 +462,7 @@
"aiT" = (/obj/machinery/camera{c_tag = "Cargo Bay Loading Zone"; dir = 8},/turf/simulated/floor,/area/station/quartermaster/storage)
"aiU" = (/obj/item/extinguisher,/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/storage/autolathe)
"aiV" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/landmark/halloween,/turf/simulated/floor,/area/station/storage/autolathe)
-"aiW" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aiW" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aiX" = (/obj/machinery/door/airlock/maintenance{name = "Crusher Access"; req_access_txt = "26;12"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"aiY" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"aiZ" = (/obj/storage/crate,/turf/simulated/floor/plating,/area/station/quartermaster/storage)
@@ -473,13 +473,13 @@
"aje" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/quartermaster/storage)
"ajf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/poddoor{id = "cargosto"; name = "Storage Door"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/quartermaster/storage)
"ajg" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/quartermaster/storage)
-"ajh" = (/obj/item/wrench,/obj/machinery/camera{c_tag = "FS Maintenance - Junction"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aji" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"ajh" = (/obj/item/wrench,/obj/machinery/camera{c_tag = "FS Maintenance - Junction"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aji" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ajj" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/disposal)
"ajk" = (/obj/disposalpipe/trunk{dir = 8},/obj/disposaloutlet{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"ajl" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"ajm" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"ajn" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/solar/starboard)
+"ajn" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/solar/east)
"ajo" = (/turf/simulated/floor{tag = "icon-Stairs_alone (NORTH)"; icon_state = "Stairs_alone"; dir = 1},/area/station/quartermaster/storage)
"ajp" = (/turf/simulated/wall,/area/station/quartermaster/storage)
"ajq" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster/storage)
@@ -490,8 +490,8 @@
"ajv" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/quartermaster)
"ajw" = (/turf/simulated/floor,/area/station/quartermaster)
"ajx" = (/turf/simulated/wall,/area/station/quartermaster)
-"ajy" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ajz" = (/obj/machinery/camera{c_tag = "FS Maintenance - Entrance"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"ajy" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ajz" = (/obj/machinery/camera{c_tag = "FS Maintenance - Entrance"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ajA" = (/turf/simulated/wall,/area/station/chapel/main)
"ajB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/chapel/main)
"ajC" = (/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area/station/quartermaster/storage)
@@ -499,15 +499,15 @@
"ajE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"},/turf/simulated/floor,/area/station/quartermaster/storage)
"ajF" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/quartermaster)
"ajG" = (/obj/submachine/ATM{pixel_y = 28},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/machinery/door/window/southleft,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/quartermaster)
-"ajH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"ajI" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ajJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ajK" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ajL" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ajM" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj1"; mail_tag = null; tag = "icon-pipe-sj1 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ajN" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ajO" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"ajP" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"ajH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/north)
+"ajI" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"ajJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"ajK" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ajL" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ajM" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj1"; mail_tag = null; tag = "icon-pipe-sj1 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ajN" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ajO" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"ajP" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ajQ" = (/turf/simulated/floor{tag = "icon-chapel"; icon_state = "chapel"},/area/station/chapel/main)
"ajR" = (/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"ajS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Chapel Launcher"; dir = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
@@ -519,9 +519,9 @@
"ajY" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/quartermaster)
"ajZ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster)
"aka" = (/turf/simulated/wall,/area/station/chapel/office)
-"akb" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"akc" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"akd" = (/obj/disposalpipe/segment,/obj/rack,/obj/item/crowbar,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"akb" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"akc" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"akd" = (/obj/disposalpipe/segment,/obj/rack,/obj/item/crowbar,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"ake" = (/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
"akf" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"akg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
@@ -533,12 +533,12 @@
"akm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=market"; location = "cargo"},/turf/simulated/floor,/area/station/quartermaster)
"akn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/quartermaster)
"ako" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/quartermaster)
-"akp" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"akp" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
"akq" = (/obj/storage/closet/coffin,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"akr" = (/obj/crematorium,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"aks" = (/obj/machinery/crema_switch{pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"akt" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/chapel/main)
-"aku" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aku" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"akv" = (/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"akw" = (/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"akx" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-chapel"; icon_state = "chapel"},/area/station/chapel/main)
@@ -551,7 +551,7 @@
"akE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/quartermaster/storage)
"akF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/door/window/westleft{name = "Cargo Office"; req_access_txt = "31"},/turf/simulated/floor,/area/station/quartermaster)
"akG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/quartermaster)
-"akH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"akH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
"akI" = (/obj/storage/closet/coffin,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Crematorium"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"akJ" = (/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"akK" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
@@ -602,9 +602,9 @@
"alD" = (/obj/cable{tag = "icon-6-8"; icon_state = "6-8"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-10"; icon_state = "1-10"},/obj/stool,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"alE" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"alF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/obj/stool,/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
-"alG" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "12;31"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"alG" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "12;31"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alH" = (/turf/simulated/wall/r_wall,/area/station/quartermaster)
-"alI" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"alI" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"alJ" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/quartermaster)
"alK" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
"alL" = (/obj/storage/closet/wardrobe/black/chaplain,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
@@ -618,12 +618,12 @@
"alT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-chapel"; icon_state = "chapel"},/area/station/chapel/main)
"alU" = (/turf/simulated/wall,/area/station/storage/tech)
"alV" = (/turf/simulated/wall/r_wall,/area/station/storage/tech)
-"alW" = (/turf/simulated/wall/r_wall,/area/station/maintenance/fpmaint)
-"alX" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alY" = (/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ama" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amb" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway - Aft"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"alW" = (/turf/simulated/wall/r_wall,/area/station/maintenance/NWmaint)
+"alX" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alY" = (/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ama" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amb" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway - Aft"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
"amc" = (/obj/table/wood{dir = 9},/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/chapel/office)
"amd" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/chapel/office)
"ame" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
@@ -645,10 +645,10 @@
"amu" = (/obj/machinery/vending/computer3,/turf/simulated/floor/plating,/area/station/storage/tech)
"amv" = (/obj/storage/crate,/obj/item/peripheral/card_scanner,/obj/item/peripheral/card_scanner,/obj/item/peripheral/drive/cart_reader,/obj/item/peripheral/drive,/obj/item/peripheral/network/radio/locked,/obj/item/peripheral/network/powernet_card,/obj/item/peripheral/printer,/obj/item/peripheral/sound_card,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/obj/item/device/net_sniffer,/turf/simulated/floor/plating,/area/station/storage/tech)
"amw" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/storage/tech)
-"amx" = (/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"amy" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amz" = (/obj/machinery/camera{c_tag = "FP Maintenance - QM Access"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amA" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"amx" = (/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"amy" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amz" = (/obj/machinery/camera{c_tag = "FP Maintenance - QM Access"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amA" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/north)
"amB" = (/obj/table/wood{tag = "icon-woodentable (WEST)"; icon_state = "woodentable"; dir = 8},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 4},/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "carpetW"},/area/station/chapel/office)
"amC" = (/obj/stool/chair,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "carpet1"},/area/station/chapel/office)
"amD" = (/obj/machinery/door/window/eastright{name = "Chapel Office"; req_access_txt = "22"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/office)
@@ -668,13 +668,13 @@
"amR" = (/turf/simulated/floor/plating,/area/station/storage/tech)
"amS" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/storage/tech)
"amT" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/tech)
-"amU" = (/obj/table,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amV" = (/obj/machinery/vending/floppy,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amW" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"amY" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"amZ" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ana" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"amU" = (/obj/table,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amV" = (/obj/machinery/vending/floppy,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amW" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"amY" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"amZ" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"ana" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/north)
"anb" = (/obj/table/wood{tag = "icon-woodentable (SOUTHWEST)"; icon_state = "woodentable"; dir = 10},/obj/item/storage/bible,/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/office)
"anc" = (/obj/table/wood,/obj/item/reagent_containers/glass/bottle/holywater,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{icon_state = "carpetS"},/area/station/chapel/office)
"and" = (/obj/table/wood{dir = 6},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/chapel/office)
@@ -692,8 +692,8 @@
"anp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/storage/box/diskbox,/turf/simulated/floor/plating,/area/station/storage/tech)
"anq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/storage/tech)
"anr" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/storage/tech)
-"ans" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ant" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ans" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ant" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"anu" = (/turf/simulated/wall,/area/station/hallway/primary/central)
"anv" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/central)
"anw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -717,13 +717,13 @@
"anO" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/aiModule/reset,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/station/storage/tech)
"anP" = (/obj/landmark/start{name = "Technical Assistant"},/turf/simulated/floor/plating,/area/station/storage/tech)
"anQ" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/storage/tech)
-"anR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"anS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"anT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Technical Assistant"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"anU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 10},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "FP Maintenance - Storage"; dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"anV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"anW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"anX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"anR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"anS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"anT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Technical Assistant"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"anU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 10},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "FP Maintenance - Storage"; dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"anV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"anW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"anX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"anY" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
"anZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/central)
"aoa" = (/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -744,9 +744,9 @@
"aop" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/device/flash,/obj/item/screwdriver,/turf/simulated/floor/plating,/area/station/storage/tech)
"aoq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/storage/tech)
"aor" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (EAST)"; icon_state = "door0"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/turf/simulated/floor/plating,/area/station/storage/tech)
-"aos" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aot" = (/obj/rack,/obj/item/clothing/under/color,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aou" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/item/device/multitool,/obj/item/device/radio/intercom{pixel_x = 24},/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aos" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aot" = (/obj/rack,/obj/item/clothing/under/color,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aou" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/item/device/multitool,/obj/item/device/radio/intercom{pixel_x = 24},/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aov" = (/obj/table,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor,/area/station/hallway/primary/central)
"aow" = (/obj/morgue,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"aox" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -768,10 +768,10 @@
"aoN" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/storage/tech)
"aoO" = (/obj/rack,/obj/item/circuitboard/aiupload,/obj/item/circuitboard/teleporter,/obj/item/circuitboard/card,/obj/item/circuitboard/cloning,/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/camera{c_tag = "Technical Storage"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/tech)
"aoP" = (/obj/rack,/obj/item/circuitboard/arcade,/obj/item/circuitboard/robotics,/turf/simulated/floor/plating,/area/station/storage/tech)
-"aoQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aoR" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aoS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aoT" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aoQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aoR" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aoS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aoT" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aoU" = (/obj/stool/chair{dir = 1},/obj/machinery/atmospherics/pipe/vent{tag = "icon-exposed (EAST)"; icon_state = "exposed"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/central)
"aoV" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 1},/turf/simulated/wall,/area/station/medical/morgue)
"aoW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 1},/obj/morgue,/obj/machinery/camera{c_tag = "Morgue"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -792,9 +792,9 @@
"apl" = (/obj/window/reinforced,/turf/simulated/floor/grid,/area{name = "Module Storage"})
"apm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/window/southright,/turf/simulated/floor{icon_state = "fullpurple"},/area{name = "Module Storage"})
"apn" = (/turf/simulated/wall/r_wall,/area/station/engine/engineering)
-"apo" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"app" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "FP Maintenance - Central"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"apq" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"apo" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"app" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "FP Maintenance - Central"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"apq" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"apr" = (/obj/machinery/vending/coffee,/turf/simulated/floor,/area/station/hallway/primary/central)
"aps" = (/obj/disposalpipe/segment,/obj/machinery/light/small,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"apt" = (/turf/simulated/floor{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/station/teleporter)
@@ -858,11 +858,11 @@
"aqz" = (/obj/window/reinforced,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/engineering)
"aqA" = (/obj/window/reinforced,/turf/simulated/floor,/area/station/engine/engineering)
"aqB" = (/obj/machinery/emitter,/turf/simulated/floor,/area/station/engine/engineering)
-"aqC" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/camera{c_tag = "FP Maintenance - Lower Entrance"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqE" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aqG" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aqC" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/camera{c_tag = "FP Maintenance - Lower Entrance"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqE" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aqG" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aqH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
"aqI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
"aqJ" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=lowcrew"; location = "crewhall"},/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -890,7 +890,7 @@
"arf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "Singularity Core"; req_access = null; req_access_txt = "13"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/engine/engineering)
"arg" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/engineering)
"arh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable,/obj/machinery/camera{c_tag = "Singularity Core"; dir = 8},/turf/simulated/floor/plating,/area/station/engine/engineering)
-"ari" = (/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"ari" = (/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"arj" = (/turf/simulated/floor{tag = "icon-purplecorner"; icon_state = "purplecorner"},/area/station/hallway/primary/central)
"ark" = (/turf/simulated/floor{tag = "icon-purple"; icon_state = "purple"},/area/station/hallway/primary/central)
"arl" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purple"; icon_state = "purple"},/area/station/hallway/primary/central)
@@ -924,7 +924,7 @@
"arN" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/engine/engineering)
"arO" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/engineering)
"arP" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{tag = "icon-bot"; icon_state = "bot"},/area/station/engine/engineering)
-"arQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"arQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"arR" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/central)
"arS" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/area/station/hallway/primary/central)
"arT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-purple"; icon_state = "purple"},/area/station/hallway/primary/central)
@@ -968,7 +968,7 @@
"asF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/central)
"asG" = (/turf/simulated/floor{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/station/hallway/primary/central)
"asH" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/station/hallway/primary/central)
-"asI" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"asI" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/east)
"asJ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/area)
"asK" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor{tag = "icon-purple"; icon_state = "purple"},/area)
"asL" = (/obj/machinery/turret{dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/camera/motion{c_tag = "AI Upload"; dir = 1},/turf/simulated/floor/grid,/area)
@@ -995,13 +995,13 @@
"atg" = (/obj/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"ath" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"ati" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"atj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"atk" = (/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"atl" = (/turf/simulated/wall,/area/station/maintenance/starboard)
-"atm" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboard)
-"atn" = (/obj/machinery/hair_dye_dispenser,/turf/simulated/floor,/area/station/maintenance/starboard)
-"ato" = (/obj/stool/barber_chair{desc = "A traditional barbershop chair, obviously a very old one at that. What it is doing on a space station you haven't the foggiest."; name = "Old Barber Chair"},/turf/simulated/floor,/area/station/maintenance/starboard)
-"atp" = (/obj/storage/crate,/obj/item/clothing/head/wig,/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/item/clothing/under/misc/barber,/obj/item/scissors,/obj/item/razor_blade,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/station/maintenance/starboard)
+"atj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"atk" = (/turf/simulated/floor/plating,/area/station/maintenance/east)
+"atl" = (/turf/simulated/wall,/area/station/maintenance/east)
+"atm" = (/turf/simulated/wall/r_wall,/area/station/maintenance/east)
+"atn" = (/obj/machinery/hair_dye_dispenser,/turf/simulated/floor,/area/station/maintenance/east)
+"ato" = (/obj/stool/barber_chair{desc = "A traditional barbershop chair, obviously a very old one at that. What it is doing on a space station you haven't the foggiest."; name = "Old Barber Chair"},/turf/simulated/floor,/area/station/maintenance/east)
+"atp" = (/obj/storage/crate,/obj/item/clothing/head/wig,/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/item/clothing/under/misc/barber,/obj/item/scissors,/obj/item/razor_blade,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/station/maintenance/east)
"atq" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area)
"atr" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "fullpurple"},/area)
"ats" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/proto_gangway)
@@ -1039,16 +1039,16 @@
"atY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/station/hallway/primary/central)
"atZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/central)
"aua" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/station/hallway/primary/central)
-"aub" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"auc" = (/obj/machinery/camera{c_tag = "S Maintenance - Fore"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aud" = (/obj/stool/chair,/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/maintenance/starboard)
-"aue" = (/turf/simulated/floor,/area/station/maintenance/starboard)
-"auf" = (/obj/item/rods{amount = 10},/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/starboard)
-"aug" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/maintenance/starboard)
+"aub" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"auc" = (/obj/machinery/camera{c_tag = "S Maintenance - Fore"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aud" = (/obj/stool/chair,/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/maintenance/east)
+"aue" = (/turf/simulated/floor,/area/station/maintenance/east)
+"auf" = (/obj/item/rods{amount = 10},/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/east)
+"aug" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/maintenance/east)
"auh" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/engine/proto_gangway)
"aui" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/engine/engineering)
"auj" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/engineering)
-"auk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"auk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aul" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency)
"aum" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/central)
"aun" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1058,10 +1058,10 @@
"aur" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/storage/warehouse)
"aus" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (EAST)"; icon_state = "door0"; dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aut" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Habitation Ring Starboard"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
-"auu" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"auv" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"auw" = (/obj/table,/obj/item/storage/box/nerd_kit,/turf/simulated/floor,/area/station/maintenance/starboard)
-"aux" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/maintenance/starboard)
+"auu" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"auv" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"auw" = (/obj/table,/obj/item/storage/box/nerd_kit,/turf/simulated/floor,/area/station/maintenance/east)
+"aux" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/maintenance/east)
"auy" = (/obj/machinery/emitter{tag = "icon-Emitter (EAST)"; icon_state = "Emitter"; dir = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/engine/engineering)
"auz" = (/turf/simulated/floor{tag = "icon-caution (SOUTHWEST)"; icon_state = "caution"; dir = 10},/area/station/engine/engineering)
"auA" = (/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area/station/engine/engineering)
@@ -1069,9 +1069,9 @@
"auC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/engineering)
"auD" = (/obj/storage/crate/furnacefuel,/turf/simulated/floor,/area/station/engine/engineering)
"auE" = (/obj/storage/crate/furnacefuel,/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/engine/engineering)
-"auF" = (/turf/simulated/wall,/area/station/maintenance/port)
-"auG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"auH" = (/turf/simulated/floor/plating,/area/station/maintenance/port)
+"auF" = (/turf/simulated/wall,/area/station/maintenance/west)
+"auG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"auH" = (/turf/simulated/floor/plating,/area/station/maintenance/west)
"auI" = (/turf/simulated/wall,/area/station/storage/emergency)
"auJ" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/station/storage/emergency)
"auK" = (/turf/simulated/floor,/area/station/storage/emergency)
@@ -1080,10 +1080,10 @@
"auN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/storage/closet/emergency,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"auO" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"auP" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
-"auQ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"auR" = (/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/maintenance/starboard)
-"auS" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/maintenance/starboard)
-"auT" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"auQ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"auR" = (/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/maintenance/east)
+"auS" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/maintenance/east)
+"auT" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/east)
"auU" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{tag = "icon-bot"; icon_state = "bot"},/area/station/engine/engineering)
"auV" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/engine/engineering)
"auW" = (/obj/machinery/power/data_terminal,/obj/machinery/field_generator,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/engine/engineering)
@@ -1102,10 +1102,10 @@
"avj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/storage/closet/emergency,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"avk" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"avl" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
-"avm" = (/obj/storage/closet/wardrobe/grey,/obj/machinery/camera{c_tag = "Lounge"; dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor,/area/station/maintenance/starboard)
-"avn" = (/obj/rack,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light/small,/turf/simulated/floor,/area/station/maintenance/starboard)
-"avo" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/maintenance/starboard)
-"avp" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; name = "VACUUM AREA"; pixel_x = 30; tag = "icon-space"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"avm" = (/obj/storage/closet/wardrobe/grey,/obj/machinery/camera{c_tag = "Lounge"; dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor,/area/station/maintenance/east)
+"avn" = (/obj/rack,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light/small,/turf/simulated/floor,/area/station/maintenance/east)
+"avo" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/maintenance/east)
+"avp" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; name = "VACUUM AREA"; pixel_x = 30; tag = "icon-space"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"avq" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/engine/proto_gangway)
"avr" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/camera{c_tag = "Singularity Core"; dir = 4},/turf/simulated/floor/plating,/area/station/engine/engineering)
"avs" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/engineering)
@@ -1116,7 +1116,7 @@
"avx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/engine/power)
"avy" = (/turf/simulated/wall/r_wall,/area/station/engine/power)
"avz" = (/turf/simulated/wall,/area/station/engine/power)
-"avA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"avA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"avB" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/storage/emergency)
"avC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/storage/emergency)
"avD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/storage/emergency)
@@ -1126,9 +1126,9 @@
"avH" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"avI" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"avJ" = (/turf/simulated/wall,/area/station/maintenance/inner)
-"avK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Lounge"},/turf/simulated/floor,/area/station/maintenance/starboard)
-"avL" = (/obj/storage/crate,/obj/item/clothing/under/misc/barber,/obj/item/clothing/shoes/brown,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"avM" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"avK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Lounge"},/turf/simulated/floor,/area/station/maintenance/east)
+"avL" = (/obj/storage/crate,/obj/item/clothing/under/misc/barber,/obj/item/clothing/shoes/brown,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"avM" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/east)
"avN" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/engine/proto_gangway)
"avO" = (/obj/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/engineering)
"avP" = (/obj/machinery/power/collector_array,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/engine/engineering)
@@ -1153,17 +1153,17 @@
"awi" = (/obj/item/rods,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"awj" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
"awk" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
-"awl" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awn" = (/obj/machinery/camera{c_tag = "S Maintenance - Lounge Access"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awo" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aws" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awv" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Medical External Airlock"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"awl" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awn" = (/obj/machinery/camera{c_tag = "S Maintenance - Lounge Access"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awo" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aws" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awv" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Medical External Airlock"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aww" = (/turf/simulated/wall/r_wall,/area/station/engine/proto)
"awx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/engine/proto_gangway)
"awy" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/engineering)
@@ -1183,20 +1183,20 @@
"awM" = (/obj/item/sheet/glass{amount = 10},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"awN" = (/obj/rack,/obj/item/electronics/scanner,/obj/item/device/healthanalyzer,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"awO" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/central)
-"awP" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awQ" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awS" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awT" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awU" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awV" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awW" = (/obj/machinery/camera{c_tag = "Medical Maintenance - Fore"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"awX" = (/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"awP" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awQ" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awS" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awT" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awU" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awV" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awW" = (/obj/machinery/camera{c_tag = "Medical Maintenance - Fore"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"awX" = (/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/east)
"awY" = (/turf/simulated/wall,/area/station/medical/robotics)
"awZ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/robotics)
"axa" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/medical/robotics)
"axb" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/robotics)
-"axc" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"axc" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/east)
"axd" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/engine/proto)
"axe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/engine/proto)
"axf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/engine/proto)
@@ -1206,7 +1206,7 @@
"axj" = (/obj/machinery/light/small,/turf/simulated/floor,/area/station/engine/engineering)
"axk" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/engine/engineering)
"axl" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/machinery/camera{c_tag = "Engineering Power Room"; dir = 8},/turf/simulated/floor,/area/station/engine/power)
-"axm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Emergency Storage Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"axm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Emergency Storage Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
"axn" = (/obj/rack,/obj/item/extinguisher,/turf/simulated/floor,/area/station/storage/emergency)
"axo" = (/obj/disposalpipe/segment,/obj/rack,/obj/item/extinguisher,/turf/simulated/floor,/area/station/storage/emergency)
"axp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/central)
@@ -1214,9 +1214,9 @@
"axr" = (/obj/item/sheet/steel{amount = 10},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"axs" = (/obj/item/wirecutters,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"axt" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "yellowcorner"; tag = "icon-yellowcorner"},/area/station/hallway/primary/central)
-"axu" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"axv" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"axw" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"axu" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"axv" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"axw" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"axx" = (/obj/machinery/manufacturer/robotics,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/camera{c_tag = "Robotics Laboratory"; dir = 2},/turf/simulated/floor,/area/station/medical/robotics)
"axy" = (/obj/machinery/manufacturer/robotics,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor,/area/station/medical/robotics)
"axz" = (/obj/machinery/manufacturer/robotics,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1241,9 +1241,9 @@
"axS" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/power)
"axT" = (/obj/cable,/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor,/area/station/engine/power)
"axU" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor,/area/station/engine/power)
-"axV" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axW" = (/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axX" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"axV" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axW" = (/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axX" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/west)
"axY" = (/obj/machinery/meteorshield,/turf/simulated/floor,/area/station/storage/emergency)
"axZ" = (/obj/disposalpipe/segment,/obj/machinery/meteorshield,/turf/simulated/floor,/area/station/storage/emergency)
"aya" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/storage/emergency)
@@ -1283,9 +1283,9 @@
"ayI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor,/area/station/engine/power)
"ayJ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/engine/power)
"ayK" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/power)
-"ayL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayN" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"ayL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayN" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"ayO" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/storage/emergency)
"ayP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Habitation Ring Port"; dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/central)
"ayQ" = (/obj/storage/secure/closet/engineering/electrical,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
@@ -1297,13 +1297,13 @@
"ayW" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/central)
"ayX" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/central)
"ayY" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/central)
-"ayZ" = (/obj/disposalpipe/segment,/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"ayZ" = (/obj/disposalpipe/segment,/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aza" = (/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/station/medical/robotics)
"azb" = (/obj/machinery/computer/operating,/turf/simulated/floor,/area/station/medical/robotics)
"azc" = (/obj/submachine/robomoduler,/turf/simulated/floor,/area/station/medical/robotics)
"azd" = (/turf/simulated/floor{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/station/medical/robotics)
"aze" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area/station/medical/robotics)
-"azf" = (/obj/machinery/camera{c_tag = "Robotics Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"azf" = (/obj/machinery/camera{c_tag = "Robotics Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
"azg" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Med-Sci Maintenance"; req_access_txt = "14;9"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/research)
"azh" = (/turf/simulated/floor{icon_state = "dark"},/area/station/medical/research)
"azi" = (/obj/machinery/door/airlock/glass{name = "Monkey Dome"; req_access_txt = "9"},/turf/simulated/floor{tag = "icon-whiteblack (EAST)"; icon_state = "whiteblack"; dir = 4},/area/station/medical/research)
@@ -1316,8 +1316,8 @@
"azp" = (/obj/rack,/obj/item/clothing/shoes/orange,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/station/engine/engineering)
"azq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/engineering)
"azr" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Engineering Starboard"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/engineering)
-"azs" = (/turf/simulated/wall/r_wall,/area/station/maintenance/port)
-"azt" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"azs" = (/turf/simulated/wall/r_wall,/area/station/maintenance/west)
+"azt" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/west)
"azu" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/storage/emergency)
"azv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/central)
"azw" = (/obj/grille,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/warehouse)
@@ -1342,7 +1342,7 @@
"azP" = (/obj/machinery/camera{c_tag = "Mining Shuttle Dock"; dir = 4},/turf/simulated/floor,/area/station/engine/engineering)
"azQ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/engineering)
"azR" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "engineering"; name = "mail chute-'Engineering'"},/turf/simulated/floor{icon_state = "yellowcorner"; tag = "icon-yellowcorner"},/area/station/engine/engineering)
-"azS" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"azS" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"azT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency)
"azU" = (/obj/grille,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/storage/warehouse)
"azV" = (/obj/item/weldingtool,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
@@ -1356,7 +1356,7 @@
"aAd" = (/obj/machinery/camera{c_tag = "Robotics Port"; dir = 4},/turf/simulated/floor,/area/station/medical/robotics)
"aAe" = (/turf/simulated/floor{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/station/medical/robotics)
"aAf" = (/obj/item/extinguisher,/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area/station/medical/robotics)
-"aAg" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aAg" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aAh" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/research)
"aAi" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/research)
"aAj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/medical/research)
@@ -1376,11 +1376,11 @@
"aAx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/central)
"aAy" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/wall/r_wall,/area/station/storage/warehouse)
"aAz" = (/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/central)
-"aAA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aAB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/starboard)
-"aAC" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/maintenance/starboard)
-"aAD" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aAE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aAA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aAB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/east)
+"aAC" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/maintenance/east)
+"aAD" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aAE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aAF" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/medical/robotics)
"aAG" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor,/area/station/medical/robotics)
"aAH" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1401,10 +1401,10 @@
"aAW" = (/obj/item/sheet/steel{amount = 50},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/warehouse)
"aAX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor{icon_state = "bot"},/area/station/storage/warehouse)
"aAY" = (/obj/machinery/light/small{dir = 1},/obj/machinery/abcu,/turf/simulated/floor/plating,/area/station/storage/warehouse)
-"aAZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aBa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aBb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/starboard)
-"aBc" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aAZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aBa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aBb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/east)
+"aBc" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aBd" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/medical/robotics)
"aBe" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass{name = "Robotics"; req_access_txt = "29"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-whitehall"; icon_state = "whitehall"; dir = 2},/area/station/medical/robotics)
"aBf" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/medical/robotics)
@@ -1427,10 +1427,10 @@
"aBw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/warehouse)
"aBx" = (/obj/machinery/door/window{base_state = "right"; dir = 8; icon = 'icons/obj/doors/windoor.dmi'; icon_state = "right"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/station/storage/warehouse)
"aBy" = (/obj/machinery/abcu,/turf/simulated/floor/plating,/area/station/storage/warehouse)
-"aBz" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aBA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "S Maintenance - Medical Junction"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aBB" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aBC" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aBz" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aBA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "S Maintenance - Medical Junction"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aBB" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aBC" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aBD" = (/turf/simulated/wall,/area/station/medical/cdc{name = "Medbay Lobby"})
"aBE" = (/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aBF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1447,17 +1447,17 @@
"aBQ" = (/obj/storage/secure/closet/engineering/welding,/obj/machinery/light,/turf/simulated/floor,/area/station/engine/engineering)
"aBR" = (/obj/storage/secure/closet/command/chief_engineer,/turf/simulated/floor,/area/station/engine/engineering)
"aBS" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/engineering)
-"aBT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aBT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access_txt = "40"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aBU" = (/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/hallway/primary/central)
"aBV" = (/obj/machinery/bot/floorbot,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
"aBW" = (/obj/machinery/door/window{icon = 'icons/obj/doors/windoor.dmi'; dir = 8},/turf/simulated/floor/plating,/area/station/storage/warehouse)
"aBX" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/central)
"aBY" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "medbay"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/central)
"aBZ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/central)
-"aCa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aCb" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/starboard)
-"aCc" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aCd" = (/obj/machinery/camera{c_tag = "Medical Maintenance - Entrance Junction"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aCa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aCb" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/maintenance/east)
+"aCc" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aCd" = (/obj/machinery/camera{c_tag = "Medical Maintenance - Entrance Junction"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aCe" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aCf" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aCg" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/door/airlock/glass{name = "Med-Sci"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
@@ -1468,8 +1468,8 @@
"aCl" = (/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/storage/crate,/turf/simulated/floor,/area/station/engine/engineering)
"aCm" = (/obj/machinery/camera{c_tag = "Engineering Aft"; dir = 1},/obj/storage/secure/closet/engineering/engineer,/turf/simulated/floor,/area/station/engine/engineering)
"aCn" = (/obj/machinery/dispenser{o2tanks = 5; pltanks = 15},/turf/simulated/floor,/area/station/engine/engineering)
-"aCo" = (/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aCp" = (/obj/disposalpipe/segment,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aCo" = (/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aCp" = (/obj/disposalpipe/segment,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aCq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/central)
"aCr" = (/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/central)
"aCs" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/storage/warehouse)
@@ -1484,7 +1484,7 @@
"aCB" = (/obj/storage/crate/abcumarker,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/warehouse)
"aCC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/storage/crate/abcumarker,/turf/simulated/floor{icon_state = "bot"},/area/station/storage/warehouse)
"aCD" = (/obj/machinery/light/small,/obj/machinery/abcu,/turf/simulated/floor/plating,/area/station/storage/warehouse)
-"aCE" = (/obj/grille,/turf/simulated/floor/plating/airless,/area/station/maintenance/starboard)
+"aCE" = (/obj/grille,/turf/simulated/floor/plating/airless,/area/station/maintenance/east)
"aCF" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/medical/cdc{name = "Medbay Lobby"})
"aCG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aCH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1495,10 +1495,10 @@
"aCM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aCN" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/machinery/clonepod,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aCO" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/research)
-"aCP" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aCQ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aCR" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aCS" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aCP" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aCQ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aCR" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aCS" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aCT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/station/hallway/primary/central)
"aCU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/central)
"aCV" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/warehouse)
@@ -1508,8 +1508,8 @@
"aCZ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/storage/warehouse)
"aDa" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/storage/warehouse)
"aDb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/central)
-"aDc" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aDd" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aDc" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aDd" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aDe" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aDf" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aDg" = (/obj/disposalpipe/junction{tag = "icon-pipe-j1 (WEST)"; icon_state = "pipe-j1"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1519,7 +1519,7 @@
"aDk" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aDl" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair,/obj/landmark/start{name = "Geneticist"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aDm" = (/obj/table,/obj/item/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aDn" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aDn" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aDo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera{c_tag = "Habitation Ring Port"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/central)
"aDp" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/central)
"aDq" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/central)
@@ -1550,7 +1550,7 @@
"aDP" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hydroponics)
"aDQ" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
"aDR" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hydroponics)
-"aDS" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aDS" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aDT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/central)
"aDU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=crew"; location = "lowcrew"},/turf/simulated/floor,/area/station/hallway/primary/central)
"aDV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -1558,7 +1558,7 @@
"aDX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/central)
"aDY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=chapel"; location = "outerbar"},/turf/simulated/floor,/area/station/hallway/primary/central)
"aDZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/central)
-"aEa" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aEa" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aEb" = (/turf/simulated/floor{icon_state = "bot_white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aEc" = (/turf/simulated/wall/r_wall,/area/station/chemistry)
"aEd" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hydroponics)
@@ -1567,17 +1567,17 @@
"aEg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/plantpot,/obj/machinery/camera,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aEh" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
"aEi" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hydroponics)
-"aEj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aEk" = (/obj/machinery/camera{c_tag = "S Maintenance - Aft"; dir = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aEl" = (/obj/item/reagent_containers/food/snacks/snack_cake/golden,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aEm" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aEn" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aEj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aEk" = (/obj/machinery/camera{c_tag = "S Maintenance - Aft"; dir = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aEl" = (/obj/item/reagent_containers/food/snacks/snack_cake/golden,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aEm" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aEn" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aEo" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
"aEp" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/central)
"aEq" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
"aEr" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/central)
"aEs" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor,/area/station/hallway/primary/central)
-"aEt" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aEt" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/east)
"aEu" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aEv" = (/turf/simulated/floor{icon_state = "delivery_white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aEw" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -1604,9 +1604,9 @@
"aER" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/plantpot,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aES" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hydroponics)
"aET" = (/turf/simulated/wall,/area)
-"aEU" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aEV" = (/obj/item/reagent_containers/food/drinks/bottle/vintage,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aEW" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aEU" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aEV" = (/obj/item/reagent_containers/food/drinks/bottle/vintage,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aEW" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aEX" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/hallway/primary/central)
"aEY" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Habitation Ring Aft Junction"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
"aEZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -1626,9 +1626,9 @@
"aFn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/plantpot,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aFo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aFp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
-"aFq" = (/obj/machinery/camera{c_tag = "Port Maintenance Aft"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aFq" = (/obj/machinery/camera{c_tag = "Port Maintenance Aft"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aFr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/central)
-"aFs" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "S Maintenance - Aft"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aFs" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "S Maintenance - Aft"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aFt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aFu" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aFv" = (/obj/landmark/start{name = "Medical Assistant"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1650,16 +1650,16 @@
"aFL" = (/obj/item/wrench,/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/station/hydroponics)
"aFM" = (/obj/submachine/cargopad{name = "Botany Pad"},/turf/simulated/floor/plating,/area/station/hydroponics)
"aFN" = (/obj/lattice,/obj/item/clothing/head/snake,/turf/space,/area)
-"aFO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj1"; mail_tag = "hydroponics"; tag = "icon-pipe-sj1 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFR" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFS" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFT" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFU" = (/turf/simulated/wall,/area/station/hallway/primary/aft)
-"aFV" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aFW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aFX" = (/obj/machinery/camera{c_tag = "S Maintenance - Aft Entrance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aFO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj1"; mail_tag = "hydroponics"; tag = "icon-pipe-sj1 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFR" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFS" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFT" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFU" = (/turf/simulated/wall,/area/station/hallway/primary/south)
+"aFV" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aFW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aFX" = (/obj/machinery/camera{c_tag = "S Maintenance - Aft Entrance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aFY" = (/obj/disposalpipe/segment,/obj/stool/chair{dir = 4},/obj/machinery/camera{c_tag = "Medbay Lobby"; dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aFZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/obj/machinery/door/airlock/glass{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aGa" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/camera{c_tag = "Medbay Port"; dir = 2},/obj/item/clothing/suit/cardboard_box/head_surgeon,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -1686,15 +1686,15 @@
"aGv" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hydroponics)
"aGw" = (/turf/simulated/floor{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/station/hydroponics)
"aGx" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/hand_labeler,/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area/station/hydroponics)
-"aGy" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aGy" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aGz" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hydroponics/lobby)
"aGA" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/hydroponics/lobby)
"aGB" = (/turf/simulated/wall,/area/station/hydroponics/lobby)
-"aGC" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aGD" = (/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aGE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aGF" = (/obj/submachine/ATM{pixel_x = 30},/obj/machinery/door/window/westright,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aGG" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aGC" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aGD" = (/turf/simulated/floor,/area/station/hallway/primary/south)
+"aGE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aGF" = (/obj/submachine/ATM{pixel_x = 30},/obj/machinery/door/window/westright,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aGG" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/south)
"aGH" = (/turf/simulated/wall/r_wall,/area/station/medical/cdc{name = "Medbay Lobby"})
"aGI" = (/obj/disposalpipe/segment,/obj/stool/chair{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aGJ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1719,20 +1719,20 @@
"aHc" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/paper_bin{pixel_x = 2; pixel_y = 6},/obj/item/pen,/turf/simulated/floor,/area/station/hydroponics)
"aHd" = (/turf/simulated/wall/r_wall,/area/station/hydroponics)
"aHe" = (/turf/simulated/wall/r_wall,/area/station/hydroponics/lobby)
-"aHf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aHf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aHg" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hydroponics/lobby)
"aHh" = (/obj/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor,/area/station/hydroponics/lobby)
"aHi" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Hydroponics Foyer"; dir = 2},/turf/simulated/floor,/area/station/hydroponics/lobby)
"aHj" = (/obj/machinery/disposal{desc = "A pneumatic waste..err, PRODUCE transport unit."; name = "kitchen/bar chute"},/obj/disposalpipe/trunk,/turf/simulated/floor,/area/station/hydroponics/lobby)
-"aHk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aHl" = (/turf/simulated/floor{tag = "icon-blue (NORTHWEST)"; icon_state = "blue"; dir = 9},/area/station/hallway/primary/aft)
-"aHm" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aHn" = (/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aHo" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aHp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aHq" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aHr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aHs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (NORTHEAST)"; icon_state = "blue"; dir = 5},/area/station/hallway/primary/aft)
+"aHk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aHl" = (/turf/simulated/floor{tag = "icon-blue (NORTHWEST)"; icon_state = "blue"; dir = 9},/area/station/hallway/primary/south)
+"aHm" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aHn" = (/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aHo" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aHp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aHq" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aHr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aHs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (NORTHEAST)"; icon_state = "blue"; dir = 5},/area/station/hallway/primary/south)
"aHt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/medical/cdc{name = "Medbay Lobby"})
"aHu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (NORTHWEST)"; icon_state = "blue"; dir = 9},/area/station/medical/cdc{name = "Medbay Lobby"})
"aHv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/embedded_controller/radio/department_controller{door_tag = "dc_medbay_door"; id_tag = "dc_medbay"; pixel_y = 24; req_access_txt = "19"},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1749,7 +1749,7 @@
"aHG" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aHH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aHI" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Chemistry Department Access"; req_access_txt = "33"},/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
-"aHJ" = (/turf/simulated/wall/r_wall,/area/station/artifact)
+"aHJ" = (/turf/simulated/wall/r_wall,/area/station/science/artifact)
"aHK" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hydroponics)
"aHL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/plantpot,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aHM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
@@ -1783,23 +1783,23 @@
"aIo" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hydroponics/lobby)
"aIp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hydroponics/lobby)
"aIq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hydroponics/lobby)
-"aIr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"aIs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIt" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "bluecorner"},/area/station/hallway/primary/aft)
-"aIx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aIy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aIz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/aft)
-"aIA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/station/hallway/primary/aft)
-"aIB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{tag = "icon-pipe-y (WEST)"; icon_state = "pipe-y"; dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=outerbar"; location = "crossway"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aID" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aIH" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/aft)
+"aIr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/south)
+"aIs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIt" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "bluecorner"},/area/station/hallway/primary/south)
+"aIx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aIy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aIz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/station/hallway/primary/south)
+"aIA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/station/hallway/primary/south)
+"aIB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{tag = "icon-pipe-y (WEST)"; icon_state = "pipe-y"; dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=outerbar"; location = "crossway"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aID" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aIH" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/south)
"aII" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/external{autoclose = 0; density = 0; frequency = 1449; icon_state = "door_open"; id_tag = "dc_medbay_door"; locked = 1; name = "Medical Sector Airlock"; opacity = 0},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aIJ" = (/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/medical/cdc{name = "Medbay Lobby"})
"aIK" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1820,10 +1820,10 @@
"aIZ" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area{name = "Research Sector"})
"aJa" = (/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/obj/machinery/camera{c_tag = "Research Sector Fore"; dir = 2},/turf/simulated/floor,/area{name = "Research Sector"})
"aJb" = (/obj/machinery/vending/standard,/turf/simulated/floor,/area{name = "Research Sector"})
-"aJc" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/artifact)
-"aJd" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/artifact)
-"aJe" = (/turf/simulated/floor,/area/station/artifact)
-"aJf" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/artifact)
+"aJc" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/pitching_machine{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
+"aJd" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/science/artifact)
+"aJe" = (/turf/simulated/floor,/area/station/science/artifact)
+"aJf" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
"aJg" = (/turf/simulated/floor{tag = "icon-Stairs2_wide (EAST)"; icon_state = "Stairs2_wide"; dir = 4},/area/station/hydroponics)
"aJh" = (/obj/stool,/obj/item/reagent_containers/glass/bottle/fruitful,/obj/item/reagent_containers/glass/bottle/fruitful,/turf/simulated/floor,/area/station/hydroponics)
"aJi" = (/turf/simulated/floor{dir = 8; icon_state = "Stairs_wide"},/area/station/hydroponics)
@@ -1842,16 +1842,16 @@
"aJv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hydroponics/lobby)
"aJw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hydroponics/lobby)
"aJx" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor,/area/station/hydroponics/lobby)
-"aJy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aJz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aJA" = (/turf/simulated/floor{tag = "icon-bluecorner"; icon_state = "bluecorner"},/area/station/hallway/primary/aft)
-"aJB" = (/obj/machinery/camera{c_tag = "Medical Wing Entrance"; dir = 1},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aJC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aJD" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aJE" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aJF" = (/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aJG" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aJH" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/hallway/primary/aft)
+"aJy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aJz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aJA" = (/turf/simulated/floor{tag = "icon-bluecorner"; icon_state = "bluecorner"},/area/station/hallway/primary/south)
+"aJB" = (/obj/machinery/camera{c_tag = "Medical Wing Entrance"; dir = 1},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aJC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aJD" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aJE" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aJF" = (/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aJG" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aJH" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/hallway/primary/south)
"aJI" = (/obj/rack,/obj/item/extinguisher,/turf/simulated/floor{tag = "icon-blue (SOUTHWEST)"; icon_state = "blue"; dir = 10},/area/station/medical/cdc{name = "Medbay Lobby"})
"aJJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aJK" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "whitehall"; tag = "icon-vrwhitehall"},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1872,9 +1872,9 @@
"aJZ" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area{name = "Research Sector"})
"aKa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area{name = "Research Sector"})
"aKb" = (/turf/simulated/floor,/area{name = "Research Sector"})
-"aKc" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/artifact)
-"aKd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/artifact)
-"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"; tag = "icon-caution"},/area/station/artifact)
+"aKc" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science/artifact)
+"aKd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/science/artifact)
+"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"; tag = "icon-caution"},/area/station/science/artifact)
"aKf" = (/obj/machinery/plantpot,/obj/machinery/camera{c_tag = "Hydroponics Grove Port"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aKg" = (/turf/simulated/floor{icon_state = "Stairs_wide"},/area/station/hydroponics)
"aKh" = (/turf/simulated/floor{icon_state = "stairs_middle"},/area/station/hydroponics)
@@ -1898,12 +1898,12 @@
"aKz" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hydroponics/lobby)
"aKA" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/hydroponics/lobby)
"aKB" = (/turf/simulated/floor,/area/station/hydroponics/lobby)
-"aKC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aKD" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aKE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aKF" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/aft)
-"aKG" = (/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/hallway/primary/aft)
-"aKH" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aKC" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aKD" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aKE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aKF" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/south)
+"aKG" = (/turf/simulated/floor{tag = "icon-blue (SOUTHEAST)"; icon_state = "blue"; dir = 6},/area/station/hallway/primary/south)
+"aKH" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall,/area/station/hallway/primary/south)
"aKI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/medical/cdc{name = "Medbay Lobby"})
"aKJ" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/cdc{name = "Medbay Lobby"})
"aKK" = (/obj/machinery/door/window/northright,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
@@ -1923,12 +1923,12 @@
"aKY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area{name = "Research Sector"})
"aKZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area{name = "Research Sector"})
"aLa" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area{name = "Research Sector"})
-"aLb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aLc" = (/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aLd" = (/obj/landmark/artifact,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aLe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/artifact)
-"aLf" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/artifact)
-"aLg" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating/airless,/area/station/artifact)
+"aLb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aLc" = (/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aLd" = (/obj/landmark/artifact,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aLe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/science/artifact)
+"aLf" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/electrobox,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/science/artifact)
+"aLg" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating/airless,/area/station/science/artifact)
"aLh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/beacon,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aLi" = (/obj/reagent_dispensers/watertank/big,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aLj" = (/obj/item/reagent_containers/food/drinks/bowl,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
@@ -1938,17 +1938,17 @@
"aLn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/fitness)
"aLo" = (/obj/machinery/camera,/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm2"; layer = 10; name = "palm tree"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/fitness)
"aLp" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/obj/overlay{anchored = 1; icon = 'icons/misc/beach.dmi'; icon_state = "coconuts"; name = "coconuts"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/fitness)
-"aLq" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aLq" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/south)
"aLr" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/electronics/resistor,/obj/item/electronics/board,/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor,/area/station/engine/elect)
"aLs" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/engine/elect)
"aLt" = (/obj/storage/secure/closet/engineering/mechanic,/turf/simulated/floor,/area/station/engine/elect)
"aLu" = (/turf/simulated/wall,/area/station/engine/elect)
-"aLv" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aLw" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aLx" = (/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aLy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aLz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aLA" = (/turf/simulated/wall,/area/station/maintenance/asmaint)
+"aLv" = (/obj/disposalpipe/segment,/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aLw" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aLx" = (/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aLy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aLz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aLA" = (/turf/simulated/wall,/area/station/maintenance/SEmaint)
"aLB" = (/obj/item/extinguisher,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aLC" = (/obj/cable,/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/cdc{name = "Medbay Lobby"})
"aLD" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -1956,11 +1956,11 @@
"aLF" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/storage/closet/wardrobe/white,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aLG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"; tag = "icon-caution"},/area{name = "Research Sector"})
"aLH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area{name = "Research Sector"})
-"aLI" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aLJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aLK" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aLL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/artifact)
-"aLM" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/artifact)
+"aLI" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aLJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aLK" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aLL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/science/artifact)
+"aLM" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating/airless,/area/station/science/artifact)
"aLN" = (/obj/item/wrench,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aLO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/plantpot,/obj/disposalpipe/segment,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aLP" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hydroponics)
@@ -1972,9 +1972,9 @@
"aLV" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{tag = "icon-0,6"; icon_state = "0,6"},/area/station/crew_quarters/fitness)
"aLW" = (/turf/simulated/floor{tag = "icon-0,6"; icon_state = "0,6"},/area/station/crew_quarters/fitness)
"aLX" = (/obj/machinery/camera,/turf/simulated/floor{tag = "icon-0,6"; icon_state = "0,6"},/area/station/crew_quarters/fitness)
-"aLY" = (/turf/simulated/wall,/area/station/maintenance/apmaint)
-"aLZ" = (/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aMa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aLY" = (/turf/simulated/wall,/area/station/maintenance/SWmaint)
+"aLZ" = (/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aMa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aMb" = (/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aMc" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aMd" = (/obj/storage/crate,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/under/misc/clown,/obj/item/clothing/mask/clown_hat,/obj/item/bikehorn,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
@@ -1984,7 +1984,7 @@
"aMh" = (/obj/storage/closet/wardrobe/grey,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aMi" = (/obj/storage/closet/wardrobe/green,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aMj" = (/obj/storage/closet/wardrobe/black,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
-"aMk" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aMk" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"aMl" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/elect)
"aMm" = (/obj/machinery/vending/electronics,/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/engine/elect)
"aMn" = (/obj/machinery/vending/electronics,/turf/simulated/floor,/area/station/engine/elect)
@@ -1994,10 +1994,10 @@
"aMr" = (/turf/simulated/floor,/area/station/engine/elect)
"aMs" = (/obj/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/mail{mail_tag = "electronics"; name = "mail chute-'Electronics'"},/turf/simulated/floor,/area/station/engine/elect)
"aMt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/engine/elect)
-"aMu" = (/obj/disposalpipe/switch_junction{mail_tag = "electronics"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aMv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aMw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aMx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aMu" = (/obj/disposalpipe/switch_junction{mail_tag = "electronics"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aMv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aMw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aMx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aMy" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aMz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aMA" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/gunner,/turf/simulated/floor{icon_state = "fullcaution"},/area{name = "Research Sector"})
@@ -2009,9 +2009,9 @@
"aMG" = (/turf/simulated/floor{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area{name = "Research Sector"})
"aMH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area{name = "Research Sector"})
"aMI" = (/turf/simulated/floor{tag = "icon-caution"; icon_state = "caution"},/area{name = "Research Sector"})
-"aMJ" = (/obj/machinery/power/apc{dir = 8; name = "Artifact Lab APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aMK" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aML" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/artifact)
+"aMJ" = (/obj/machinery/power/apc{dir = 8; name = "Artifact Lab APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aMK" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aML" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/science/artifact)
"aMM" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hydroponics)
"aMN" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/light,/obj/machinery/door_control{id = "deliverydoor"; name = "Delivery Door Control"; pixel_y = -28},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"aMO" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
@@ -2028,20 +2028,20 @@
"aMZ" = (/obj/decal/boxingrope{tag = "icon-ringrope (NORTHWEST)"; icon_state = "ringrope"; dir = 9},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aNa" = (/obj/decal/boxingrope,/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aNb" = (/obj/decal/boxingrope{tag = "icon-ringrope (NORTHEAST)"; icon_state = "ringrope"; dir = 5},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
-"aNc" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aNc" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aNd" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aNe" = (/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aNf" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aNg" = (/obj/storage/secure/closet/personal,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
-"aNh" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aNh" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/south)
"aNi" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/engine/elect)
"aNj" = (/obj/landmark/start{name = "Electrician"},/turf/simulated/floor,/area/station/engine/elect)
"aNk" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/engine/elect)
"aNl" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/engine/elect)
-"aNm" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aNn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/asmaint)
-"aNo" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "44"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aNp" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall,/area/station/maintenance/asmaint)
+"aNm" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aNn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/SEmaint)
+"aNo" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "44"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aNp" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall,/area/station/maintenance/SEmaint)
"aNq" = (/obj/stool/chair{dir = 4},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aNr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Research Sector Lobby"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/cdc{name = "Medbay Lobby"})
"aNs" = (/obj/machinery/vending/coffee,/turf/simulated/floor,/area{name = "Research Sector"})
@@ -2056,12 +2056,12 @@
"aNB" = (/turf/simulated/floor{tag = "icon-cautioncorner (NORTH)"; icon_state = "cautioncorner"; dir = 1},/area{name = "Research Sector"})
"aNC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area{name = "Research Sector"})
"aND" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Robotics Starboard"; dir = 8},/obj/submachine/cargopad{name = "Research Sector Pad"},/turf/simulated/floor/plating,/area{name = "Research Sector"})
-"aNE" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = -26; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aNF" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aNG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aNH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/artifact)
-"aNI" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/artifact)
-"aNJ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating/airless,/area/station/artifact)
+"aNE" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = -26; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aNF" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aNG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aNH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/science/artifact)
+"aNI" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/science/artifact)
+"aNJ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating/airless,/area/station/science/artifact)
"aNK" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hydroponics)
"aNL" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{id = "deliverydoor"; name = "Delivery Door"},/turf/simulated/floor,/area/station/hydroponics)
"aNM" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hydroponics)
@@ -2075,28 +2075,28 @@
"aNU" = (/obj/decal/boxingrope{density = 0; dir = 8; icon_state = "ringrope"; tag = "icon-ringrope (WEST)"},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aNV" = (/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aNW" = (/obj/decal/boxingropeenter{dir = 4; icon_state = "ringrope"; pixel_x = 0; tag = "icon-ringrope (EAST)"},/obj/stool,/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
-"aNX" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aNX" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aNY" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aNZ" = (/obj/storage/secure/closet/personal,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
-"aOa" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Crew Quarters - Maint"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aOa" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Crew Quarters - Maint"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
"aOb" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/elect)
"aOc" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/engine/elect)
"aOd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/elect)
"aOe" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/elect)
"aOf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (EAST)"; icon_state = "door0"; dir = 4},/obj/machinery/door/airlock/maintenance{name = "Electronics Maintenance"; req_access_txt = "45"},/turf/simulated/floor/plating,/area/station/engine/elect)
-"aOg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aOh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aOi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aOg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aOh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aOi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aOj" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/medical{name = "Research Sector"; req_access_txt = "7"},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area{name = "Research Sector"})
"aOk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area{name = "Research Sector"})
"aOl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area{name = "Research Sector"})
"aOm" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution (NORTH)"; icon_state = "caution"; dir = 1},/area{name = "Research Sector"})
-"aOn" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/cable,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aOo" = (/obj/machinery/light,/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/obj/cable,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aOp" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aOq" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/storage/box/tapebox,/obj/item/paper/book/dwainedummies,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aOr" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/artifact)
-"aOs" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor,/area/station/artifact)
+"aOn" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/cable,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aOo" = (/obj/machinery/light,/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/obj/cable,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aOp" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aOq" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/storage/box/tapebox,/obj/item/paper/book/dwainedummies,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aOr" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/science/artifact)
+"aOs" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/xraymachine,/obj/cable,/turf/simulated/floor,/area/station/science/artifact)
"aOt" = (/turf/simulated/shuttle/wall{dir = 8; icon_state = "wall3_space"},/area)
"aOu" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area)
"aOv" = (/turf/space,/turf/simulated/shuttle/wall{dir = 1; icon_state = "wall3_space"},/area)
@@ -2111,20 +2111,20 @@
"aOE" = (/obj/pool{tag = "icon-pool (SOUTHEAST)"; icon_state = "pool"; dir = 6},/turf/simulated/floor{icon_state = "fullcaution"; name = "pool floor"; wet = 1},/area/station/crew_quarters/fitness)
"aOF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-0,6"; icon_state = "0,6"},/area/station/crew_quarters/fitness)
"aOG" = (/obj/decal/boxingrope{tag = "icon-ringrope (EAST)"; icon_state = "ringrope"; dir = 4},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
-"aOH" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aOI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aOJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aOK" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aOH" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aOI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aOJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aOK" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aOL" = (/obj/storage/crate,/obj/item/clothing/under/misc/barber,/obj/item/clothing/shoes/brown,/obj/machinery/camera{c_tag = "Crew Quarters - Beds"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aOM" = (/obj/storage/crate,/obj/item/clothing/under/misc/vice,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aON" = (/obj/disposalpipe/segment,/obj/storage/crate,/obj/item/clothing/under/gimmick/princess,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aOO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/engine/elect)
"aOP" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/elect)
-"aOQ" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aOR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aOS" = (/obj/cable,/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aOT" = (/obj/machinery/power/smes{charge = 1.5e+006; chargemode = 1; n_tag = "Research Sector SMES"; output = 15000},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aOU" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aOQ" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aOR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aOS" = (/obj/cable,/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aOT" = (/obj/machinery/power/smes{charge = 1.5e+006; chargemode = 1; n_tag = "Research Sector SMES"; output = 15000},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aOU" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aOV" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area{name = "Research Sector"})
"aOW" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area{name = "Research Sector"})
"aOX" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "Research Sector Aft"; dir = 8},/turf/simulated/floor,/area{name = "Research Sector"})
@@ -2154,20 +2154,20 @@
"aPv" = (/obj/stool,/obj/decal/boxingropeenter{dir = 8; icon_state = "ringrope"; pixel_x = 0; tag = "icon-ringrope (WEST)"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aPw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aPx" = (/obj/decal/boxingrope{tag = "icon-ringrope (EAST)"; icon_state = "ringrope"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
-"aPy" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aPz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aPA" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aPy" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aPz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aPA" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aPB" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aPC" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aPD" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/item/clothing/suit/bedsheet,/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
-"aPE" = (/turf/simulated/wall,/area/station/hallway/primary/port)
-"aPF" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aPG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor{tag = "icon-black (NORTH)"; icon_state = "black"; dir = 1},/area/station/hallway/primary/port)
-"aPH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aPE" = (/turf/simulated/wall,/area/station/hallway/primary/west)
+"aPF" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aPG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor{tag = "icon-black (NORTH)"; icon_state = "black"; dir = 1},/area/station/hallway/primary/west)
+"aPH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
"aPI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/engineering{name = "Engineering Electronics Lab"; req_access_txt = "45"},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/engine/elect)
"aPJ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/elect)
"aPK" = (/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/engine/elect)
-"aPL" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aPL" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aPM" = (/obj/landmark/start{name = "Scientist"},/turf/simulated/floor,/area{name = "Research Sector"})
"aPN" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area{name = "Research Sector"})
"aPO" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/printer{print_id = "Office"},/turf/simulated/floor,/area{name = "Research Sector"})
@@ -2196,17 +2196,17 @@
"aQl" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm2"; layer = 10; name = "palm tree"},/turf/simulated/floor{icon = 'icons/turf/floors.dmi'; icon_state = "sand3"},/area/station/crew_quarters/fitness)
"aQm" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{tag = "icon-0,6"; icon_state = "0,6"},/area/station/crew_quarters/fitness)
"aQn" = (/obj/decal/boxingrope{tag = "icon-ringrope (NORTHEAST)"; icon_state = "ringrope"; dir = 5},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
-"aQo" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aQo" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aQp" = (/obj/storage/crate,/obj/item/clothing/under/misc/mail,/obj/item/clothing/head/mailcap,/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aQq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
"aQr" = (/obj/storage/crate,/obj/item/clothing/glasses/vr{desc = "A pair of VR goggles connected to a virtual killing field full of brutally lethal weapons! Killer!"; name = "VR Combat Goggles"; network = "gunsim"; pixel_x = 0; pixel_y = 0},/obj/item/clothing/glasses/vr{desc = "A pair of VR goggles connected to a virtual killing field full of brutally lethal weapons! Killer!"; name = "VR Combat Goggles"; network = "gunsim"; pixel_x = 0; pixel_y = 0},/obj/item/clothing/glasses/vr{desc = "A pair of VR goggles connected to a virtual killing field full of brutally lethal weapons! Killer!"; name = "VR Combat Goggles"; network = "gunsim"; pixel_x = 0; pixel_y = 0},/obj/item/clothing/glasses/vr{desc = "A pair of VR goggles connected to a virtual killing field full of brutally lethal weapons! Killer!"; name = "VR Combat Goggles"; network = "gunsim"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters)
-"aQs" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"aQt" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/port)
-"aQu" = (/turf/simulated/floor,/area/station/hallway/primary/port)
-"aQv" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aQw" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aQx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aQy" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aQs" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"aQt" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/west)
+"aQu" = (/turf/simulated/floor,/area/station/hallway/primary/west)
+"aQv" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aQw" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aQx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aQy" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/south)
"aQz" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor,/area/station/engine/elect)
"aQA" = (/obj/machinery/rkit,/turf/simulated/floor,/area/station/engine/elect)
"aQB" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/table,/turf/simulated/floor,/area/station/engine/elect)
@@ -2214,7 +2214,7 @@
"aQD" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/table,/turf/simulated/floor,/area/station/engine/elect)
"aQE" = (/obj/machinery/rkit,/obj/machinery/camera{c_tag = "Electronics"; dir = 1},/turf/simulated/floor,/area/station/engine/elect)
"aQF" = (/obj/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/station/engine/elect)
-"aQG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aQG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aQH" = (/turf/simulated/wall/r_wall,/area)
"aQI" = (/obj/table,/obj/item/device/gps,/obj/item/device/gps,/obj/item/device/gps,/turf/simulated/floor,/area)
"aQJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area)
@@ -2248,16 +2248,16 @@
"aRl" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aRm" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aRn" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
-"aRo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/apmaint)
-"aRp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aRo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/SWmaint)
+"aRp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aRq" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aRr" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aRs" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"aRt" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
-"aRu" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "crew"; name = "mail chute-'Crew Quarters'"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/port)
-"aRv" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aRw" = (/obj/item/wirecutters,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aRx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aRu" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "crew"; name = "mail chute-'Crew Quarters'"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/west)
+"aRv" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aRw" = (/obj/item/wirecutters,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aRx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aRy" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area)
"aRz" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area)
"aRA" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area)
@@ -2282,22 +2282,22 @@
"aRT" = (/obj/table/reinforced/bar{tag = "icon-bar (NORTHWEST)"; icon_state = "bar"; dir = 9},/obj/item/kitchen/utensil/fork,/obj/item/kitchen/utensil/fork,/obj/item/kitchen/utensil/fork,/obj/item/coin,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aRU" = (/obj/table/reinforced/bar{tag = "icon-bar (NORTHEAST)"; icon_state = "bar"; dir = 5},/obj/item/kitchen/utensil/knife,/obj/item/kitchen/utensil/knife,/obj/item/dice,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aRV" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aRW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Roland's"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aRX" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aRY" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aRZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSb" = (/obj/machinery/camera,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSc" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSf" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "crew"; tag = "icon-pipe-sj1 (NORTH)"},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "engineering"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSg" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSh" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/port)
-"aSi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/station/hallway/primary/port)
-"aSj" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSk" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aSl" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aRW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Roland's"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aRX" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aRY" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aRZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSb" = (/obj/machinery/camera,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSc" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSf" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "crew"; tag = "icon-pipe-sj1 (NORTH)"},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "engineering"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSg" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSh" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/west)
+"aSi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/station/hallway/primary/west)
+"aSj" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSk" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aSl" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aSm" = (/turf/simulated/floor,/area)
"aSn" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/clothing/head/emerg,/obj/item/clothing/suit/space/emerg,/turf/simulated/floor,/area)
"aSo" = (/obj/storage/closet/biohazard,/turf/simulated/floor{tag = "icon-blue (NORTHWEST)"; icon_state = "blue"; dir = 9},/area/station/crew_quarters/hor)
@@ -2322,19 +2322,19 @@
"aSH" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/table/reinforced/bar{tag = "icon-bar (SOUTHEAST)"; icon_state = "bar"; dir = 6},/obj/item/kitchen/utensil/spoon,/obj/item/kitchen/utensil/spoon,/obj/item/wrapping_paper,/obj/item/wirecutters,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aSI" = (/obj/stool/chair{dir = 8},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aSJ" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aSK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Roland's"},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSL" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSM" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSN" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSO" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSQ" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSR" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSS" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aST" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=courtroom"; location = "crew"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aSW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aSK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Roland's"},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSL" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSM" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSN" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSO" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSQ" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSR" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSS" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aST" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=courtroom"; location = "crew"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aSW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aSX" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/extinguisher,/turf/simulated/floor,/area)
"aSY" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area)
"aSZ" = (/obj/machinery/door/airlock/glass{name = "Teleporter Control Room"; req_access_txt = "8"},/turf/simulated/floor,/area)
@@ -2362,23 +2362,23 @@
"aTv" = (/obj/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol"; freq = 1431; location = "bar"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aTw" = (/obj/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol"; location = "bar"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aTx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aTy" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/glass{name = "Roland's"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aTz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTA" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTD" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTE" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTG" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTH" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Crew Quarters - Maint"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aTI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/port)
-"aTJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aTK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Crew Quarters"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aTL" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aTM" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aTy" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/glass{name = "Roland's"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aTz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTA" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTB" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTD" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTE" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTG" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTH" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Crew Quarters - Maint"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aTI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/west)
+"aTJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aTK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Crew Quarters"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aTL" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aTM" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
"aTN" = (/turf/simulated/wall,/area/station/security/detectives_office)
-"aTO" = (/obj/machinery/camera{c_tag = "AS Maintenance Junction"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aTO" = (/obj/machinery/camera{c_tag = "AS Maintenance Junction"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aTP" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/storage/box/trackimp_kit2,/turf/simulated/floor,/area)
"aTQ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area)
"aTR" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area)
@@ -2402,25 +2402,25 @@
"aUj" = (/obj/submachine/slot_machine,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aUk" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/bar)
"aUl" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/crew_quarters/bar)
-"aUm" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "VR and The Snip"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aUn" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "VR and The Snip"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aUm" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "VR and The Snip"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aUn" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "VR and The Snip"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aUo" = (/turf/simulated/wall,/area/station/crew_quarters/barber_shop)
"aUp" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/barber_pole{icon_state = "thesnip"; layer = 9.1; name = "The Snip"; pixel_x = 16},/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
"aUq" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
-"aUr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/storage/secure/closet/personal,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 10; icon_state = "neutral"; tag = "icon-neutral (SOUTHEAST)"},/area/station/hallway/primary/port)
-"aUt" = (/obj/storage/secure/closet/personal,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aUu" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aUv" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aUw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/port)
-"aUx" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "Crew Quarters - Maint"; dir = 1},/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/port)
+"aUr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/storage/secure/closet/personal,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 10; icon_state = "neutral"; tag = "icon-neutral (SOUTHEAST)"},/area/station/hallway/primary/west)
+"aUt" = (/obj/storage/secure/closet/personal,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aUu" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aUv" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aUw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"; dir = 2},/area/station/hallway/primary/west)
+"aUx" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "Crew Quarters - Maint"; dir = 1},/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/west)
"aUy" = (/obj/item/reagent_containers/food/drinks/bottle/bojackson,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aUz" = (/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aUA" = (/obj/machinery/computer/secure_data/detective_computer,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aUB" = (/obj/machinery/computer/security/wooden_tv,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aUC" = (/obj/storage/secure/closet/security/forensics,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aUD" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aUE" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aUD" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aUE" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aUF" = (/obj/machinery/door_control{id = "scienceteleporter"; name = "Pad Lockdown"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area)
"aUG" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/engine,/area)
"aUH" = (/turf/simulated/floor/engine,/area)
@@ -2449,23 +2449,23 @@
"aVe" = (/obj/table/reinforced/bar{tag = "icon-bar (SOUTHWEST)"; icon_state = "bar"; dir = 10},/obj/item/reagent_containers/food/drinks/bottle/wine{desc = "It probably tastes like an angel that has been baked into a very fine cake."; name = "Classy Port"},/obj/machinery/camera,/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/bar)
"aVf" = (/obj/table/reinforced/bar,/obj/item/reagent_containers/food/drinks/bottle/ntbrew{name = "Expensive Vintage"},/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/bar)
"aVg" = (/obj/table/reinforced/bar,/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/bar)
-"aVh" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/obj/item/clothing/head/helmet/space/santahat,/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
-"aVi" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
-"aVj" = (/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
-"aVk" = (/obj/machinery/camera,/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"aVh" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/obj/item/clothing/head/helmet/space/santahat,/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
+"aVi" = (/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
+"aVj" = (/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
+"aVk" = (/obj/machinery/camera,/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"aVl" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{dir = 4},/obj/barber_pole{layer = 9},/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
"aVm" = (/obj/stool/chair/comfy,/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
"aVn" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/table,/obj/item/harmonica,/turf/simulated/floor{icon_state = "carpetS"},/area/station/crew_quarters/barber_shop)
"aVo" = (/obj/machinery/camera,/obj/stool/chair,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aVp" = (/obj/storage/crate,/obj/item/clothing/head/wig,/obj/item/dye_bottle,/obj/item/dye_bottle,/obj/item/clothing/under/misc/barber,/obj/item/scissors,/obj/item/razor_blade,/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
-"aVq" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aVr" = (/obj/machinery/camera{c_tag = "Bar Maintenance"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aVs" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aVt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/port)
-"aVu" = (/obj/machinery/door/airlock{name = "Shower Cubicle"; req_access_txt = "0"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/port)
-"aVv" = (/obj/machinery/door/airlock{name = "Toilet Cubicle"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/port)
-"aVw" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/station/hallway/primary/aft)
-"aVx" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"aVq" = (/obj/landmark/start{name = "predator"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aVr" = (/obj/machinery/camera{c_tag = "Bar Maintenance"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aVs" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aVt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/west)
+"aVu" = (/obj/machinery/door/airlock{name = "Shower Cubicle"; req_access_txt = "0"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/west)
+"aVv" = (/obj/machinery/door/airlock{name = "Toilet Cubicle"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/west)
+"aVw" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/station/hallway/primary/south)
+"aVx" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"aVy" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/machinery/camera{c_tag = "Detectives Office"; dir = 2},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aVz" = (/turf/simulated/floor{icon_state = "carpetNW"},/area/station/security/detectives_office)
"aVA" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/security/detectives_office)
@@ -2506,22 +2506,22 @@
"aWj" = (/obj/stool/bar,/turf/simulated/floor{icon_state = "carpet"},/area/station/crew_quarters/bar)
"aWk" = (/obj/stool/bar,/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/bar)
"aWl" = (/obj/grille{health = 100},/obj/window/crystal/reinforced{tag = "icon-crwindow (EAST)"; icon_state = "crwindow"; dir = 4},/obj/window/crystal/reinforced{tag = "icon-crwindow (NORTH)"; icon_state = "crwindow"; dir = 1},/obj/window/crystal/reinforced{tag = "icon-crwindow (WEST)"; icon_state = "crwindow"; dir = 8},/obj/window/crystal/reinforced,/obj/window/crystal/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/bar)
-"aWm" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
-"aWn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"aWm" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
+"aWn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"aWo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/unpowered/wood{name = "The Snip"},/turf/simulated/floor,/area/station/crew_quarters/barber_shop)
"aWp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"aWq" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"aWr" = (/obj/machinery/door/unpowered/wood,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/barber_shop)
"aWs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aWt" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
-"aWu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/station/maintenance/apmaint)
-"aWv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aWw" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aWx" = (/obj/machinery/shower{tag = "icon-showerhead (WEST)"; icon_state = "showerhead"; dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/port)
-"aWy" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/port)
-"aWz" = (/obj/item/storage/toilet,/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/port)
-"aWA" = (/obj/submachine/chef_sink,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/port)
-"aWB" = (/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
+"aWu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/station/maintenance/SWmaint)
+"aWv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aWw" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aWx" = (/obj/machinery/shower{tag = "icon-showerhead (WEST)"; icon_state = "showerhead"; dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/west)
+"aWy" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/west)
+"aWz" = (/obj/item/storage/toilet,/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/west)
+"aWA" = (/obj/submachine/chef_sink,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/west)
+"aWB" = (/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
"aWC" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aWD" = (/obj/table/wood{dir = 9},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/hand_labeler,/obj/item/device/audio_log{pixel_x = 3; pixel_y = -3},/turf/simulated/floor{icon_state = "carpetN"},/area/station/security/detectives_office)
"aWE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair,/obj/landmark/start{name = "Detective"},/turf/simulated/floor{icon_state = "carpetN"},/area/station/security/detectives_office)
@@ -2551,16 +2551,16 @@
"aXc" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "carpet"},/area/station/crew_quarters/bar)
"aXd" = (/turf/simulated/floor{icon_state = "carpet"},/area/station/crew_quarters/bar)
"aXe" = (/obj/machinery/partyalarm{pixel_x = 30},/turf/simulated/floor{icon_state = "carpet2"},/area/station/crew_quarters/bar)
-"aXf" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"aXf" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"aXg" = (/obj/machinery/door/unpowered/wood{name = "The Snip"},/turf/simulated/floor,/area/station/crew_quarters/barber_shop)
"aXh" = (/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"aXi" = (/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aXj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/barber_shop)
-"aXk" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aXl" = (/obj/machinery/bathtub{anchored = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/port)
-"aXm" = (/obj/machinery/light/small,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/port)
-"aXn" = (/obj/item/paper_bin,/obj/item/clothing/head/plunger,/obj/machinery/camera{c_tag = "Restrooms"; dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/port)
-"aXo" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/port)
+"aXk" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aXl" = (/obj/machinery/bathtub{anchored = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/west)
+"aXm" = (/obj/machinery/light/small,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/hallway/primary/west)
+"aXn" = (/obj/item/paper_bin,/obj/item/clothing/head/plunger,/obj/machinery/camera{c_tag = "Restrooms"; dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/west)
+"aXo" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/hallway/primary/west)
"aXp" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/security/detectives_office)
"aXq" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aXr" = (/turf/simulated/floor{icon_state = "carpetSW"},/area/station/security/detectives_office)
@@ -2570,7 +2570,7 @@
"aXv" = (/obj/table/wood{tag = "icon-woodentable (SOUTHEAST)"; icon_state = "woodentable"; dir = 6},/obj/item/storage/secure/sbriefcase,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/security/detectives_office)
"aXw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aXx" = (/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/security/detectives_office)
-"aXy" = (/obj/disposalpipe/segment,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aXy" = (/obj/disposalpipe/segment,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aXz" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/science/storage)
"aXA" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/science/storage)
"aXB" = (/turf/simulated/floor/plating,/area/station/science/storage)
@@ -2595,17 +2595,17 @@
"aXU" = (/obj/table,/obj/item/scissors,/turf/simulated/floor{tag = "icon-wooden"; icon_state = "wooden"},/area/station/crew_quarters/barber_shop)
"aXV" = (/obj/table,/obj/item/dye_bottle,/obj/item/mop,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
"aXW" = (/obj/machinery/hair_dye_dispenser,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/barber_shop)
-"aXX" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
-"aXY" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTH)"},/area/station/hallway/primary/aft)
-"aXZ" = (/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/aft)
+"aXX" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
+"aXY" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTH)"},/area/station/hallway/primary/south)
+"aXZ" = (/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/south)
"aYa" = (/turf/simulated/wall/r_wall,/area/station/security/detectives_office)
"aYb" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aYc" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aYd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aYe" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aYf" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aYg" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"aYh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aYg" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"aYh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aYi" = (/obj/lattice,/obj/machinery/camera,/turf/space,/area)
"aYj" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aYk" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/science/storage)
@@ -2624,11 +2624,11 @@
"aYx" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
"aYy" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
"aYz" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
-"aYA" = (/obj/tree1,/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"aYA" = (/obj/tree1,/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"aYB" = (/turf/simulated/wall,/area/station/crew_quarters/arcade)
-"aYC" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aYD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aYE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aYC" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aYD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aYE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aYF" = (/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/storage/primary)
"aYG" = (/obj/item/rods{amount = 50},/obj/item/storage/box/lightbox/tubes,/obj/item/storage/box/lightbox/tubes,/turf/simulated/floor,/area/station/storage/primary)
"aYH" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/storage/primary)
@@ -2656,19 +2656,19 @@
"aZd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door_control{id = "deliverydoor"; name = "Hydroponics Door Control"; pixel_y = 28},/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"aZe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/disposal/mail{mail_tag = "kitchen"; name = "mail chute-'Kitchen'"},/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"aZf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/kitchen)
-"aZg" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"aZg" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"aZh" = (/obj/machinery/computer/arcade{icon_state = "arcadeb"; stat = 1},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"aZi" = (/obj/decal/cleanable/vomit,/obj/machinery/computer/arcade,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"aZj" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"aZk" = (/obj/machinery/sim/vr_bed{name = "VR simulation pod"; network = "arcadevr"},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/crew_quarters/arcade)
"aZl" = (/turf/simulated/floor{icon_state = "carpetN"},/area/station/crew_quarters/arcade)
"aZm" = (/obj/machinery/sim/vr_bed{name = "VR simulation pod"; network = "arcadevr"},/turf/simulated/floor{icon_state = "carpetNE"},/area/station/crew_quarters/arcade)
-"aZn" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aZo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aZn" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aZo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aZp" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor,/area/station/storage/primary)
"aZq" = (/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/storage/primary)
"aZr" = (/obj/machinery/vending/standard,/turf/simulated/floor,/area/station/storage/primary)
-"aZs" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Security Entrance"; dir = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"aZs" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Security Entrance"; dir = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"aZt" = (/obj/machinery/port_a_brig,/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/security/main)
"aZu" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/security/main)
"aZv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/security/main)
@@ -2678,7 +2678,7 @@
"aZz" = (/turf/simulated/floor{icon_state = "dark"},/area/station/security/detectives_office)
"aZA" = (/obj/shrub/captainshrub{desc = "This plant is even older than the detective. Who knew it was possible?"; name = "Faithful Begonia"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/detectives_office)
"aZB" = (/turf/simulated/floor{icon_state = "dark"},/area/station/security/detectives_office)
-"aZC" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"aZC" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"aZD" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; icon_state = "in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/obj/lattice,/turf/space,/area)
"aZE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/bar)
"aZF" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/bar)
@@ -2688,8 +2688,8 @@
"aZJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"aZK" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"aZL" = (/obj/storage/secure/closet/kitchen,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
-"aZM" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/shrub{tag = "icon-shrub (WEST)"; icon_state = "shrub"; dir = 8},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
-"aZN" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"aZM" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/shrub{tag = "icon-shrub (WEST)"; icon_state = "shrub"; dir = 8},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
+"aZN" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"aZO" = (/obj/machinery/door/airlock/glass{name = "True Reality"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/arcade)
"aZP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"aZQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
@@ -2697,13 +2697,13 @@
"aZS" = (/obj/machinery/sim/vr_bed{name = "VR simulation pod"; network = "arcadevr"},/turf/simulated/floor{icon_state = "carpetW"},/area/station/crew_quarters/arcade)
"aZT" = (/turf/simulated/floor{icon_state = "carpet"},/area/station/crew_quarters/arcade)
"aZU" = (/obj/item/device/radio/intercom{pixel_x = 24},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/sim/vr_bed{name = "VR simulation pod"; network = "arcadevr"},/turf/simulated/floor{icon_state = "carpetE"},/area/station/crew_quarters/arcade)
-"aZV" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aZW" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aZX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aZV" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aZW" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aZX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aZY" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/wirecutters,/obj/item/device/flashlight,/obj/item/device/gps,/turf/simulated/floor,/area/station/storage/primary)
"aZZ" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/storage/primary)
"baa" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/storage/belt/utility,/turf/simulated/floor,/area/station/storage/primary)
-"bab" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"bab" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"bac" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/security/main)
"bad" = (/turf/simulated/floor,/area/station/security/main)
"bae" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair,/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/station/security/main)
@@ -2728,8 +2728,8 @@
"bax" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/cable_coil,/obj/item/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/screwdriver,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/storage/primary)
"bay" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/storage/primary)
"baz" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/screwdriver,/obj/item/device/igniter{pixel_x = 14; pixel_y = -4},/obj/item/device/igniter,/turf/simulated/floor,/area/station/storage/primary)
-"baA" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"baB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"baA" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"baB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"baC" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/security/main)
"baD" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/security/main)
"baE" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/security/main)
@@ -2747,13 +2747,13 @@
"baQ" = (/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"baR" = (/obj/reagent_dispensers/still,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"baS" = (/obj/submachine/ice_cream_dispenser,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
-"baT" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/port)
+"baT" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/turf/simulated/floor{dir = 2; icon = 'icons/turf/floors.dmi'; icon_state = "grass"; name = "astroturf"; tag = "icon-grass1"},/area/station/hallway/primary/west)
"baU" = (/obj/storage/crate,/obj/item/clothing/glasses/vr{network = "arcadevr"},/obj/item/clothing/glasses/vr{network = "arcadevr"},/obj/item/clothing/glasses/vr{network = "arcadevr"},/obj/item/clothing/glasses/vr{network = "arcadevr"},/obj/item/clothing/glasses/vr{network = "arcadevr"},/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"baV" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"baW" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/storage/toolbox/electrical,/obj/item/weldingtool,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/camera{c_tag = "Tool Storage"; dir = 4},/turf/simulated/floor,/area/station/storage/primary)
"baX" = (/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/storage/primary)
"baY" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/crowbar,/obj/item/crowbar,/obj/item/device/prox_sensor,/turf/simulated/floor,/area/station/storage/primary)
-"baZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=crossway"; location = "security"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"baZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=crossway"; location = "security"},/turf/simulated/floor,/area/station/hallway/primary/south)
"bba" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Security Port"; dir = 4},/turf/simulated/floor,/area/station/security/main)
"bbb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/security/main)
"bbc" = (/obj/machinery/computer/security,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/main)
@@ -2764,22 +2764,22 @@
"bbh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
"bbi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/main)
"bbj" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/security/main)
-"bbk" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"bbk" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"bbl" = (/obj/item/satchel/hydro,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"bbm" = (/obj/item/reagent_containers/food/snacks/cereal_box,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"bbn" = (/obj/machinery/gibber,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
-"bbo" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/station/hallway/primary/port)
-"bbp" = (/turf/simulated/wall/false_wall,/area/station/hallway/primary/port)
+"bbo" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/station/hallway/primary/west)
+"bbp" = (/turf/simulated/wall/false_wall,/area/station/hallway/primary/west)
"bbq" = (/obj/machinery/vending/snack,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"bbr" = (/obj/decal/cleanable/urine,/turf/simulated/floor{tag = "icon-arcade_carpet"; icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"bbs" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"bbt" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/communications_dish{tag = "MAIN_DISH_SS13"},/turf/simulated/floor/plating/airless,/area)
-"bbu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/apmaint)
+"bbu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/SWmaint)
"bbv" = (/obj/item/device/radio/intercom{pixel_x = -24},/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/wrench,/obj/item/device/analyzer,/turf/simulated/floor,/area/station/storage/primary)
"bbw" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/storage/primary)
-"bbx" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"bby" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; location = "Tool Storage"},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
-"bbz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"bbx" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"bby" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; location = "Tool Storage"},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
+"bbz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"bbA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/r_wall,/area/station/security/main)
"bbB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/security/main)
"bbC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{dir = 4},/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/station/security/main)
@@ -2792,7 +2792,7 @@
"bbJ" = (/obj/machinery/door/window/northleft{dir = 8; name = "Interrogation Room"; req_access_txt = "1"},/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/security/main)
"bbK" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/main)
"bbL" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (EAST)"; icon_state = "door0"; dir = 4},/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "1"},/turf/simulated/floor,/area/station/security/main)
-"bbM" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"bbM" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"bbN" = (/obj/item/reagent_containers/food/snacks/ingredient/gcheese,/obj/item/a_gift/easter{desc = "Easter is over. How old is this?"},/turf/simulated/floor/plating,/area/station/crew_quarters/bar)
"bbO" = (/obj/kitchenspike,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"bbP" = (/obj/storage/secure/closet/fridge,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
@@ -2802,23 +2802,23 @@
"bbT" = (/obj/submachine/chef_oven,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"bbU" = (/obj/submachine/foodprocessor,/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
"bbV" = (/obj/storage/crate/freezer{name = "Fishy Freezer"},/obj/item/fish/bass,/obj/item/fish/bass,/obj/item/fish/carp,/obj/item/fish/carp,/obj/item/fish/salmon,/obj/item/fish/salmon,/obj/machinery/light,/obj/item/device/radio/intercom{broadcasting = 0; pixel_y = -25},/turf/simulated/floor{tag = "icon-cafeteria (WEST)"; icon_state = "cafeteria"; dir = 8},/area/station/crew_quarters/kitchen)
-"bbW" = (/obj/decal/skeleton,/obj/item/clothing/suit/chef,/obj/item/clothing/head/chefhat,/obj/decal/cleanable/cobweb,/turf/simulated/aprilfools,/area/station/hallway/primary/port)
-"bbX" = (/obj/decal/cleanable/tomatosplat,/obj/creepy_sound_trigger,/turf/simulated/aprilfools,/area/station/hallway/primary/port)
-"bbY" = (/obj/machinery/vending/pizza,/turf/simulated/aprilfools,/area/station/hallway/primary/port)
+"bbW" = (/obj/decal/skeleton,/obj/item/clothing/suit/chef,/obj/item/clothing/head/chefhat,/obj/decal/cleanable/cobweb,/turf/simulated/aprilfools,/area/station/hallway/primary/west)
+"bbX" = (/obj/decal/cleanable/tomatosplat,/obj/creepy_sound_trigger,/turf/simulated/aprilfools,/area/station/hallway/primary/west)
+"bbY" = (/obj/machinery/vending/pizza,/turf/simulated/aprilfools,/area/station/hallway/primary/west)
"bbZ" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window/eastright,/obj/submachine/ATM{pixel_x = -28},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/arcade)
"bca" = (/obj/machinery/sim/vr_bed{name = "VR war simulation pod"; network = "gunsim"},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/crew_quarters/arcade)
"bcb" = (/obj/machinery/light,/obj/machinery/sim/vr_bed{name = "VR war simulation pod"; network = "gunsim"},/turf/simulated/floor{icon_state = "carpetN"},/area/station/crew_quarters/arcade)
"bcc" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
"bcd" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/arcade)
-"bce" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bcf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bcg" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Tool Storage"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/maintenance/apmaint)
+"bce" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bcf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bcg" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Tool Storage"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/maintenance/SWmaint)
"bch" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/storage/primary)
"bci" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/landmark/start{name = "Assistant"},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/storage/primary)
"bcj" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/storage/primary)
"bck" = (/obj/reagent_dispensers/fueltank,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/storage/primary)
-"bcl" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "bridge"},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
-"bcm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bcl" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "bridge"},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
+"bcm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"bcn" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (WEST)"; icon_state = "door0"; dir = 8},/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "1"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/security/main)
"bco" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "security"},/turf/simulated/floor,/area/station/security/main)
"bcp" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/main)
@@ -2826,7 +2826,7 @@
"bcr" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/security/main)
"bcs" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/security/main)
"bct" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/security/main)
-"bcu" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
+"bcu" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
"bcv" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"bcw" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
"bcx" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/kitchen)
@@ -2837,8 +2837,8 @@
"bcC" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/storage/primary)
"bcD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/primary)
"bcE" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Tool Storage"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/primary)
-"bcF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
-"bcG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bcF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
+"bcG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"bcH" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/security/main)
"bcI" = (/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/station/security/main)
"bcJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/security/main)
@@ -2847,10 +2847,10 @@
"bcM" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor,/area/station/security/main)
"bcN" = (/obj/stool/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor,/area/station/security/main)
"bcO" = (/obj/item/extinguisher,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/security/main)
-"bcP" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bcQ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bcR" = (/obj/machinery/camera{c_tag = "Courtroom Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bcS" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
+"bcP" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bcQ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bcR" = (/obj/machinery/camera{c_tag = "Courtroom Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bcS" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
"bcT" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/mail{mail_tag = "security"; name = "mail chute-'Security'"},/turf/simulated/floor,/area/station/security/main)
"bcU" = (/obj/machinery/vending/security,/turf/simulated/floor,/area/station/security/main)
"bcV" = (/obj/machinery/light,/obj/disposalpipe/trunk{tag = "icon-pipe-t (NORTH)"; icon_state = "pipe-t"; dir = 1},/obj/machinery/disposal,/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor,/area/station/security/main)
@@ -2859,20 +2859,20 @@
"bcY" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/security/main)
"bcZ" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/reagent_containers/glass/bottle/antitoxin{pixel_x = 4; pixel_y = 9},/obj/item/reagent_containers/syringe,/turf/simulated/floor,/area/station/security/main)
"bda" = (/obj/submachine/chef_sink,/turf/simulated/floor{tag = "icon-neutralcorner"; icon_state = "neutralcorner"; dir = 2},/area/station/security/main)
-"bdb" = (/obj/machinery/camera{c_tag = "Security Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"bdc" = (/obj/item/cable_coil,/obj/item/device/igniter,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bdd" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bde" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/hallway/primary/aft)
-"bdf" = (/turf/simulated/floor{tag = "icon-yellow (NORTH)"; icon_state = "yellow"; dir = 1},/area/station/hallway/primary/aft)
-"bdg" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/aft)
-"bdh" = (/obj/machinery/camera{c_tag = "Brig Entrance"; dir = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"bdb" = (/obj/machinery/camera{c_tag = "Security Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"bdc" = (/obj/item/cable_coil,/obj/item/device/igniter,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bdd" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bde" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/hallway/primary/south)
+"bdf" = (/turf/simulated/floor{tag = "icon-yellow (NORTH)"; icon_state = "yellow"; dir = 1},/area/station/hallway/primary/south)
+"bdg" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/south)
+"bdh" = (/obj/machinery/camera{c_tag = "Brig Entrance"; dir = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"bdi" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "1"},/turf/simulated/floor,/area/station/security/main)
"bdj" = (/obj/cable,/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/security/main)
"bdk" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/storage/firstaid/regular,/obj/item/device/healthanalyzer,/turf/simulated/floor,/area/station/security/main)
"bdl" = (/obj/mopbucket,/obj/item/mop,/obj/machinery/light/small{dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/security/main)
-"bdm" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/asmaint)
-"bdn" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bdo" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bdm" = (/obj/storage/closet/emergency,/turf/simulated/floor/plating,/area/station/maintenance/SEmaint)
+"bdn" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bdo" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
"bdp" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/security/brig)
"bdq" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor,/area/station/security/brig)
"bdr" = (/turf/simulated/floor,/area/station/security/brig)
@@ -2882,8 +2882,8 @@
"bdv" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/security/brig)
"bdw" = (/obj/machinery/door/airlock/security{name = "Brig"; req_access_txt = "1"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/security/brig)
"bdx" = (/turf/simulated/wall,/area/station/security/brig)
-"bdy" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bdz" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
+"bdy" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bdz" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
"bdA" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/security/brig)
"bdB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/security/brig)
"bdC" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/security/brig)
@@ -2896,9 +2896,9 @@
"bdJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Brig - Solitary 3"; dir = 2},/turf/simulated/floor,/area/station/security/brig)
"bdK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/storage/secure/closet/brig/automatic/solitary,/turf/simulated/floor,/area/station/security/brig)
"bdL" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/security/brig)
-"bdM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bdN" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bdO" = (/obj/machinery/vending/snack,/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/aft)
+"bdM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bdN" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bdO" = (/obj/machinery/vending/snack,/turf/simulated/floor{tag = "icon-yellow (WEST)"; icon_state = "yellow"; dir = 8},/area/station/hallway/primary/south)
"bdP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/security/brig)
"bdQ" = (/obj/disposalpipe/trunk{dir = 4},/obj/disposaloutlet{dir = 8},/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/security/brig)
"bdR" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/security/brig)
@@ -2909,14 +2909,14 @@
"bdW" = (/obj/machinery/door/window/eastleft{name = "Solitary Cell 3"; req_access_txt = "2"},/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/floor,/area/station/security/brig)
"bdX" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/floorflusher{id = "solitary3"},/turf/simulated/floor,/area/station/security/brig)
"bdY" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/security/brig)
-"bdZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bea" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"beb" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/machinery/camera{c_tag = "Courtroom Maintenance Entrace"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bec" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bed" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"bdZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bea" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"beb" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/machinery/camera{c_tag = "Courtroom Maintenance Entrace"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bec" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bed" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"bee" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"bef" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
-"beg" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"beg" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"beh" = (/obj/grille,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating,/area/station/security/brig)
"bei" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/security/brig)
"bej" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/security/brig)
diff --git a/maps/destiny.dmm b/maps/destiny.dmm
index f757642..fc5a4cb 100644
--- a/maps/destiny.dmm
+++ b/maps/destiny.dmm
@@ -57,49 +57,49 @@
"abe" = (/obj/wingrille_spawn,/obj/disposalpipe/segment,/turf/simulated/floor/plating/random,/area/station/aviary)
"abf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Aviary'"},/turf/simulated/floor{dir = 1; icon_state = "Stairs_alone"; name = "stairs"},/area/station/aviary)
"abg" = (/obj/wingrille_spawn,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/aviary)
-"abh" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/hallway/primary/fore)
-"abi" = (/obj/shrub{dir = 4; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abj" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour10;desc=Hoot! Hoot! Did you know that your Regional Director is a noted amateur ornithologist? If you're feeling stressed out at work, please enjoy the company and soothing hoots of these majestic beasts. Pardon the darkness, they are nocturnal after all."; freq = 1443; location = "tour9"; name = "tour beacon - owlery"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abn" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abo" = (/obj/shrub{dir = 2; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abp" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abq" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abr" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4},/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/storage/firstaid/regular,/obj/item/device/flashlight,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abs" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abu" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"abh" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/hallway/primary/north)
+"abi" = (/obj/shrub{dir = 4; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abj" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour10;desc=Hoot! Hoot! Did you know that your Regional Director is a noted amateur ornithologist? If you're feeling stressed out at work, please enjoy the company and soothing hoots of these majestic beasts. Pardon the darkness, they are nocturnal after all."; freq = 1443; location = "tour9"; name = "tour beacon - owlery"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abn" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abo" = (/obj/shrub{dir = 2; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abp" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abq" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abr" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4},/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/storage/firstaid/regular,/obj/item/device/flashlight,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abs" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abu" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"abv" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/bridge/captain)
"abw" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/command/alt{name = "airlock-'Captain's Office'"; req_access = list(20)},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge/captain)
-"abx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=command_quarters"; location = "aviary"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"aby" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"abz" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/hallway/primary/fore)
+"abx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=command_quarters"; location = "aviary"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"aby" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"abz" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/hallway/primary/north)
"abA" = (/obj/wingrille_spawn/reinforced,/obj/window_blinds{pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/bridge/captain)
"abB" = (/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abC" = (/obj/item/device/radio/intercom/bridge{broadcasting = 0; pixel_y = 22},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 9},/area/station/bridge/captain)
"abD" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/disposal/mail/small{mail_tag = "captain"; mailgroup = "command"; message = "1"; name = "mail chute-'Captain'"; pixel_y = 32},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 1},/area/station/bridge/captain)
"abE" = (/obj/machinery/computer3/generic/communications{dir = 8},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/device/radio/intercom/security{pixel_x = 0; pixel_y = 22},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 5},/area/station/bridge/captain)
-"abF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"abF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"abG" = (/obj/table/reinforced/bar/auto{name = "table"},/obj/machinery/recharger,/obj/item/paper/book/space_law,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/bridge/captain)
"abH" = (/obj/stool/chair/comfy/blue,/obj/landmark/start{name = "Captain"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/carpet{icon_state = "fblue1"; dir = 8},/area/station/bridge/captain)
"abI" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 4},/area/station/bridge/captain)
"abJ" = (/obj/table/reinforced/bar/auto{name = "table"},/obj/machinery/light/lamp/green{on = 0; pixel_x = -6; pixel_y = 4; switchon = 1},/obj/item/reagent_containers/food/drinks/mug/random_color{pixel_x = 4; pixel_y = 8},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 10},/area/station/bridge/captain)
"abK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/table/reinforced/bar/auto{name = "table"},/obj/item/clipboard,/obj/item/paper_bin,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/pen,/obj/item/pen/fancy,/obj/item/stamp/random,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/bridge/captain)
"abL" = (/obj/table/reinforced/bar/auto{name = "table"},/obj/item/reagent_containers/food/drinks/bottle/thegoodstuff,/obj/shrub/captainshrub{pixel_y = 12},/obj/machinery/firealarm{dir = 4; layer = 4; pixel_x = 24},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/bridge/captain)
-"abM" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"abM" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"abN" = (/obj/stool/chair/moveable{icon_state = "chair"; dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abO" = (/obj/stool/chair/moveable{icon_state = "chair"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abQ" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/command/alt{name = "airlock-'Captain's Office'"; req_access = list(20)},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge/captain)
-"abR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"abR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"abS" = (/obj/stool/chair/comfy{icon_state = "chair_comfy"; dir = 8},/obj/landmark/start{name = "Captain"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abV" = (/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abW" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall/auto/reinforced/gannets,/area/station/bridge/captain)
-"abX" = (/obj/disposalpipe/junction,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"abX" = (/obj/disposalpipe/junction,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"abY" = (/obj/table/wood/auto,/obj/random_item_spawner/desk_stuff,/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"abZ" = (/obj/rack,/obj/item/tank/jetpack,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/suit/space/captain,/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
"aca" = (/obj/storage/secure/closet/command/captain,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable,/obj/blind_switch/area/south{pixel_x = -10},/obj/machinery/light_switch/south{pixel_x = 11},/obj/machinery/power/apc{dir = 2; name = "S APC"; operating = 1; pixel_y = -24},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge/captain)
@@ -115,7 +115,7 @@
"ack" = (/obj/table/wood/auto,/obj/item/storage/photo_album{pixel_y = -10},/obj/item/camera_test{pixel_y = 6},/obj/item/pinpointer,/obj/item/hand_tele,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"acl" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "captain"; desc = "This colorful and somewhat childish bedsheet helps the captain sleep at night."; icon_state = "bedsheet-captain"; name = "special bedsheet"},/obj/landmark/start{name = "Captain"},/obj/item/storage/secure/ssafe{pixel_x = 26},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"acm" = (/obj/item/storage/toilet/random{dir = 4; icon_state = "toilet"; pixel_x = -8},/obj/landmark/start{name = "Captain"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/captain)
-"acn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"acn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aco" = (/obj/table/wood/auto,/obj/machinery/light/lamp/green{on = 0; pixel_x = -6; pixel_y = 4; switchon = 1},/obj/item/card/id/captains_spare,/obj/item/pen/fancy,/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"acp" = (/obj/table/wood/auto,/obj/displaycase{pixel_y = 8},/obj/machinery/light,/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/captain)
"acq" = (/obj/decal/fakeobjects{icon = 'icons/obj/decals.dmi'; icon_state = "drain"; name = "drain"},/obj/item/rubberduck,/obj/machinery/door/window/northleft{name = "shower stall"},/obj/machinery/shower{dir = 8; icon_state = "showerhead"; pixel_y = 6},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/captain)
@@ -129,7 +129,7 @@
"acy" = (/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 2},/area/station/crew_quarters/heads{name = "Head of Personnel's Quarters"})
"acz" = (/obj/machinery/light/emergency,/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 2},/area/station/crew_quarters/heads{name = "Head of Personnel's Quarters"})
"acA" = (/obj/critter/dog/george/blair,/obj/machinery/firealarm{dir = 4; layer = 4; pixel_x = 24},/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 6},/area/station/crew_quarters/heads{name = "Head of Personnel's Quarters"})
-"acB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"acB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"acC" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/heads{name = "Head of Personnel's Quarters"})
"acD" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/gannets/command{name = "airlock-'Head of Personnel's Quarters'"; req_access = list(55); req_access_txt = null},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/heads{name = "Head of Personnel's Quarters"})
"acE" = (/obj/wingrille_spawn/reinforced,/obj/window_blinds{pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/bridge/hos)
@@ -156,24 +156,24 @@
"acZ" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/west,/obj/machinery/cashreg,/obj/machinery/door/window/southleft{req_access = list(15)},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/reagent_containers/food/drinks/mug/random_color{pixel_x = 4; pixel_y = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge/hos)
"ada" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/east,/obj/machinery/door/window/southright{req_access = list(15)},/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/fancy,/obj/item/stamp/random,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge/hos)
"adb" = (/obj/wingrille_spawn/reinforced,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/window_blinds{pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/bridge/hos)
-"adc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/stool/bench/green/auto,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"add" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"ade" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=aviary"; location = "customs"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adg" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adj" = (/obj/stool/bench/green/auto,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adk" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adm" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "captain"; name = "Captain mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adn" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "aviary"; name = "aviary mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"ado" = (/obj/shrub,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"adc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/stool/bench/green/auto,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"add" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"ade" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=aviary"; location = "customs"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adg" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adj" = (/obj/stool/bench/green/auto,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adk" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adm" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "captain"; name = "Captain mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adn" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "aviary"; name = "aviary mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"ado" = (/obj/shrub,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"adp" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/quarters_fore)
"adq" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/quarters_fore)
"adr" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/quarters_fore)
-"ads" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adt" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "hop"; name = "Head of Personnel mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"ads" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adt" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "hop"; name = "Head of Personnel mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"adu" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/hos)
"adv" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/hos)
"adw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/hos)
@@ -189,7 +189,7 @@
"adG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/stool/chair/comfy/blue,/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 8},/area/station/crew_quarters/quarters_fore)
"adH" = (/turf/simulated/floor/carpet{icon_state = "blue2"; dir = 4},/area/station/crew_quarters/quarters_fore)
"adI" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Crew Quarters'"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/quarters_fore)
-"adJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"adJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"adK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/command{name = "airlock-'Head of Security's Quarters'"; req_access = list(37)},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/hos)
"adL" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 8},/area/station/crew_quarters/hos)
"adM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/carpet{icon_state = "fred1"; dir = 8},/area/station/crew_quarters/hos)
@@ -199,8 +199,8 @@
"adQ" = (/obj/storage/secure/closet/command/hos,/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 10},/area/station/crew_quarters/hos)
"adR" = (/obj/table/wood/auto,/obj/item/storage/secure/ssafe{pixel_x = 0; pixel_y = -24},/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 2},/area/station/crew_quarters/hos)
"adS" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "red"; icon_state = "bedsheet-red"},/obj/landmark/start{name = "Head of Security"},/obj/blind_switch/area/south,/turf/simulated/floor/carpet{icon_state = "fred2"; dir = 6},/area/station/crew_quarters/hos)
-"adT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"adU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"adT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"adU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"adV" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/hos)
"adW" = (/obj/table/wood/auto,/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor/carpet{icon_state = "purple2"; dir = 9},/area/station/crew_quarters/quarters_fore)
"adX" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = 26},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor/carpet{icon_state = "purple2"; dir = 5},/area/station/crew_quarters/quarters_fore)
@@ -217,18 +217,18 @@
"aei" = (/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 4},/area/station/crew_quarters/ce)
"aej" = (/obj/blind_switch/area/south,/obj/table/wood/auto,/obj/random_item_spawner/desk_stuff/g_clip_bin_pen,/turf/simulated/floor/carpet{icon_state = "purple2"; dir = 10},/area/station/crew_quarters/quarters_fore)
"aek" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = 26},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor/carpet{icon_state = "purple2"; dir = 6},/area/station/crew_quarters/quarters_fore)
-"ael" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"aem" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"ael" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"aem" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aen" = (/obj/storage/secure/closet/command/chief_engineer,/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 10},/area/station/crew_quarters/ce)
"aeo" = (/obj/table/wood/auto,/obj/item/storage/secure/ssafe{pixel_x = 0; pixel_y = -24},/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 2},/area/station/crew_quarters/ce)
"aep" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "yellow"; icon_state = "bedsheet-yellow"},/obj/landmark/start{name = "Chief Engineer"},/obj/blind_switch/area/south,/turf/simulated/floor/carpet{icon_state = "fgreen2"; dir = 6},/area/station/crew_quarters/ce)
-"aeq" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"aer" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=escape"; location = "command_quarters"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"aeq" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"aer" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=escape"; location = "command_quarters"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aes" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/ce)
"aet" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/ce)
"aeu" = (/obj/table/wood/auto,/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor/carpet{icon_state = "green2"; dir = 9},/area/station/crew_quarters/quarters_fore)
"aev" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = 26},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor/carpet{icon_state = "green2"; dir = 5},/area/station/crew_quarters/quarters_fore)
-"aew" = (/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"aew" = (/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aex" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/hor{icon_state = "RD"; name = "Research Director's Quarters"})
"aey" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/alarm{pixel_y = 20},/obj/machinery/computer3/terminal/zeta{dir = 4; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor/carpet{icon_state = "fpurple2"; dir = 9},/area/station/crew_quarters/hor{icon_state = "RD"; name = "Research Director's Quarters"})
"aez" = (/obj/landmark/start{name = "Research Director"},/obj/machinery/light{dir = 1},/obj/stool/chair/comfy/purple,/turf/simulated/floor/carpet{icon_state = "fpurple2"; dir = 1},/area/station/crew_quarters/hor{icon_state = "RD"; name = "Research Director's Quarters"})
@@ -266,35 +266,35 @@
"aff" = (/obj/table/wood/auto,/obj/item/storage/secure/ssafe{pixel_x = 0; pixel_y = -24},/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 2},/area/station/crew_quarters/md)
"afg" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "black"; icon_state = "bedsheet-black"},/obj/landmark/start{name = "Medical Director"},/obj/blind_switch/area/south,/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 6},/area/station/crew_quarters/md)
"afh" = (/turf/space,/area/shuttle/escape/station)
-"afi" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/fore)
-"afj" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"afi" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/north)
+"afj" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"afk" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/md)
-"afl" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afm" = (/obj/machinery/power/apc{areastring = "Pod Bay"; dir = 1; name = "Pod Bay APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afn" = (/obj/machinery/power/apc{areastring = "Fore Crew Quarters"; dir = 1; name = "Fore Crew Quarters APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afo" = (/obj/machinery/power/apc{areastring = "Fore Maintenance"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afp" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afq" = (/obj/shrub,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"afr" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/fore)
-"afs" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"aft" = (/obj/machinery/power/apc{areastring = "Head of Security's Quarters"; dir = 1; name = "Head of Security's Quarters APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afu" = (/obj/machinery/power/apc{areastring = "Chief Engineer's Quarters"; dir = 1; name = "Chief Engineer's Quarters APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afv" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afw" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afx" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afy" = (/obj/machinery/power/apc{areastring = "Research Director's Quarters"; dir = 2; name = "Research Director's Quarters APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afz" = (/obj/machinery/power/apc{areastring = "Medical Director's Quarters"; dir = 2; name = "Medical Director's Quarters APC"; pixel_y = -24},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"afA" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
+"afl" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afm" = (/obj/machinery/power/apc{areastring = "Pod Bay"; dir = 1; name = "Pod Bay APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afn" = (/obj/machinery/power/apc{areastring = "Fore Crew Quarters"; dir = 1; name = "Fore Crew Quarters APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afo" = (/obj/machinery/power/apc{areastring = "Fore Maintenance"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afp" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afq" = (/obj/shrub,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"afr" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/north)
+"afs" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"aft" = (/obj/machinery/power/apc{areastring = "Head of Security's Quarters"; dir = 1; name = "Head of Security's Quarters APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afu" = (/obj/machinery/power/apc{areastring = "Chief Engineer's Quarters"; dir = 1; name = "Chief Engineer's Quarters APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afv" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afw" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afx" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afy" = (/obj/machinery/power/apc{areastring = "Research Director's Quarters"; dir = 2; name = "Research Director's Quarters APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afz" = (/obj/machinery/power/apc{areastring = "Medical Director's Quarters"; dir = 2; name = "Medical Director's Quarters APC"; pixel_y = -24},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"afA" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
"afB" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/hangar/main)
-"afC" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"afD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/fore)
-"afE" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"afC" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"afD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/north)
+"afE" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"afF" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/hallway/secondary/exit)
"afG" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/hangar/main)
"afH" = (/obj/machinery/manufacturer/general,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor,/area/station/hangar/main)
"afI" = (/obj/machinery/manufacturer/hangar,/turf/simulated/floor,/area/station/hangar/main)
"afJ" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = 22},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/hangar/main)
-"afK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"afK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"afL" = (/obj/decal/poster/wallsign/escape_right,/turf/simulated/wall/auto/reinforced/gannets,/area/station/hallway/secondary/exit)
"afM" = (/obj/machinery/vending/cigarette,/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = 22},/turf/simulated/floor{icon_state = "caution"; dir = 9},/area/station/hallway/secondary/exit)
"afN" = (/obj/machinery/computer/arcade,/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/hallway/secondary/exit)
@@ -313,8 +313,8 @@
"aga" = (/turf/simulated/floor/engine,/area/station/hangar/main)
"agb" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "corner_west"},/area/station/hangar/main)
"agc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Fore Pod Bay'"},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hangar/main)
-"agd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "escape"; name = "escape mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"age" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"agd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "escape"; name = "escape mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"age" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"agf" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Escape'"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/secondary/exit)
"agg" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/hallway/secondary/exit)
"agh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/hallway/secondary/exit)
@@ -333,8 +333,8 @@
"agu" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoormid1"; id = "pod_fore"; layer = 4; name = "Fore Pod Hangar"},/turf/simulated/floor/engine{icon_state = "engine_caution_west"},/area/station/hangar/main)
"agv" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/engine,/area/station/hangar/main)
"agw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/submachine/cargopad{name = "Fore Pod Bay Pad"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hangar/main)
-"agx" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=customs"; location = "podbay"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"agy" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"agx" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=customs"; location = "podbay"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"agy" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"agz" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/hallway/secondary/exit)
"agA" = (/obj/item/device/radio/beacon,/obj/landmark{icon_state = "x3"; name = "peststart"},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour17;desc=In the event of catastrophic station damage or approved shift change, a shuttle will be dispatched from the regional Central Command dock to this location. Should this occur, remember to line up quietly and enter single-file. No shoving please!"; freq = 1443; location = "tour16"; name = "tour beacon - escape"},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"agB" = (/obj/stool/bench/yellow,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=quarters_starboard"; location = "escape"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/station/hallway/secondary/exit)
@@ -346,8 +346,8 @@
"agH" = (/obj/machinery/door_control{id = "pod_fore"; name = "Hangar Door Control"; pixel_x = -24; pixel_y = -8},/obj/random_pod_spawner,/turf/simulated/floor/engine,/area/station/hangar/main)
"agI" = (/turf/simulated/floor{dir = 1; icon_state = "corner_nwest"},/area/station/hangar/main)
"agJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Fore Pod Bay'"},/turf/simulated/floor{icon_state = "dark"},/area/station/hangar/main)
-"agK" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"agL" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"agK" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"agL" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"agM" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Escape'"},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/secondary/exit)
"agN" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "caution"; dir = 8},/area/station/hallway/secondary/exit)
"agO" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/exit)
@@ -360,22 +360,22 @@
"agV" = (/turf/simulated/floor,/area/station/hangar/main)
"agW" = (/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "pod_fore"; name = "mail chute-'Fore Pod Bay'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 4; name = "mail pipe"},/obj/blind_switch/area/south,/obj/machinery/light,/turf/simulated/floor,/area/station/hangar/main)
"agX" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/hangar/main)
-"agY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"agZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"aha" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj1"; mail_tag = "pod_fore"; name = "fore pod bay mail router"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"agY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"agZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"aha" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj1"; mail_tag = "pod_fore"; name = "fore pod bay mail router"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"ahb" = (/obj/machinery/vending/snack,/obj/blind_switch/area/south,/turf/simulated/floor{icon_state = "caution"; dir = 10},/area/station/hallway/secondary/exit)
"ahc" = (/obj/table/auto,/obj/item/decoration/ashtray,/obj/machinery/light,/turf/simulated/floor{icon_state = "caution"},/area/station/hallway/secondary/exit)
"ahd" = (/obj/machinery/vending/cola/blue,/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "caution"; dir = 6},/area/station/hallway/secondary/exit)
"ahe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Pod Bay Storage'"},/turf/simulated/floor,/area/station/hangar/main)
-"ahf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"ahf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"ahg" = (/obj/table/reinforced/auto,/obj/item/storage/belt/utility,/obj/item/storage/toolbox/electrical,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/device/flashlight,/turf/simulated/floor,/area/station/hangar/main)
"ahh" = (/obj/machinery/light{dir = 1},/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/hangar/main)
"ahi" = (/obj/machinery/manufacturer/hangar,/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = 22},/turf/simulated/floor,/area/station/hangar/main)
"ahj" = (/turf/simulated/wall/auto/gannets,/area/station/hangar/main)
-"ahk" = (/obj/machinery/power/apc{areastring = "Fore Primary Hallway"; dir = 1; name = "Fore Primary Hallway APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"ahl" = (/obj/machinery/power/apc{areastring = "Escape Shuttle Hallway"; dir = 1; name = "Escape Shuttle Hallway APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"ahm" = (/obj/machinery/light/small,/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
-"ahn" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/wall/fire{pixel_y = 32},/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/fore)
+"ahk" = (/obj/machinery/power/apc{areastring = "Fore Primary Hallway"; dir = 1; name = "Fore Primary Hallway APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"ahl" = (/obj/machinery/power/apc{areastring = "Escape Shuttle Hallway"; dir = 1; name = "Escape Shuttle Hallway APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"ahm" = (/obj/machinery/light/small,/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/north)
+"ahn" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/wall/fire{pixel_y = 32},/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/north)
"aho" = (/obj/table/reinforced/auto,/obj/item/sheet/steel/fullstack,/obj/item/sheet/glass/fullstack,/obj/item/storage/box/cablesbox,/obj/item/storage/toolbox/mechanical,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hangar/main)
"ahp" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/hangar/main)
"ahq" = (/obj/machinery/manufacturer/general,/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor,/area/station/hangar/main)
@@ -385,8 +385,8 @@
"ahu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hangar/main)
"ahv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hangar/main)
"ahw" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Pod Bay Storage'"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hangar/main)
-"ahx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"ahy" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"ahx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"ahy" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"ahz" = (/obj/submachine/chef_sink/chem_sink{pixel_y = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"ahA" = (/obj/item/storage/toilet/random{pixel_y = 8},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"ahB" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 4},/obj/table/auto,/obj/item/reagent_containers/glass/bottle/bubblebath,/obj/machinery/disposal/small{pixel_y = 32},/obj/disposalpipe/trunk,/obj/item/sponge{name = "loofah"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
@@ -411,8 +411,8 @@
"ahU" = (/obj/machinery/vending/pda,/turf/simulated/floor,/area/station/crew_quarters/lounge_port)
"ahV" = (/obj/machinery/vending/floppy,/turf/simulated/floor,/area/station/crew_quarters/lounge_port)
"ahW" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/vending/computer3,/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/lounge_port)
-"ahX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"ahY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"ahX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"ahY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"ahZ" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/table/auto,/obj/machinery/computer3/generic/personal,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
"aia" = (/obj/table/auto,/obj/machinery/networked/printer{print_id = "Lounge"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/decal/poster/wallsign/poster_rand{pixel_y = 32},/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
"aib" = (/obj/storage/closet/office,/obj/noticeboard{pixel_y = 28},/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
@@ -429,7 +429,7 @@
"aim" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/stool/chair/office{icon_state = "office_chair"; dir = 1},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
"ain" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_x = -28; pixel_y = -3},/turf/simulated/floor{dir = 1; icon_state = "Stairs2_wide"; name = "stairs"},/area/station/crew_quarters/lounge_port)
"aio" = (/turf/simulated/floor{dir = 1; icon_state = "Stairs_wide"; name = "stairs"},/area/station/crew_quarters/lounge_port)
-"aip" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "crew"; name = "crew lounge mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"aip" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "crew"; name = "crew lounge mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aiq" = (/obj/wingrille_spawn,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/crew_quarters/lounge_starboard)
"air" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "Stairs2_wide"; name = "stairs"},/area/station/crew_quarters/lounge_starboard)
"ais" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "crew"; name = "mail chute-'Crew Lounge'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/turf/simulated/floor{dir = 1; icon_state = "Stairs_wide"; name = "stairs"},/area/station/crew_quarters/lounge_starboard)
@@ -440,7 +440,7 @@
"aix" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge_port)
"aiy" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge_port)
"aiz" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Crew Lounge'"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge_port)
-"aiA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour7;desc=We are now in the crew quarters. Need a nap? Need a haircut? Here's your home away from home!"; freq = 1443; location = "tour5"; name = "tour beacon - crew"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"aiA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour7;desc=We are now in the crew quarters. Need a nap? Need a haircut? Here's your home away from home!"; freq = 1443; location = "tour5"; name = "tour beacon - crew"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aiB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Crew Lounge'"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge_starboard)
"aiC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge_starboard)
"aiD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge_starboard)
@@ -462,38 +462,38 @@
"aiT" = (/obj/machinery/vending/pizza,/turf/simulated/floor,/area/station/crew_quarters/lounge_port)
"aiU" = (/obj/machinery/vending/medical_public,/turf/simulated/floor,/area/station/crew_quarters/lounge_port)
"aiV" = (/obj/machinery/firealarm{dir = 4; layer = 4; pixel_x = 24},/obj/machinery/vending/paint/broken,/turf/simulated/floor,/area/station/crew_quarters/lounge_port)
-"aiW" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"aiX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
-"aiY" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/fore)
+"aiW" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"aiX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
+"aiY" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/north)
"aiZ" = (/obj/table/auto,/obj/machinery/computer3/generic/personal,/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
"aja" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
"ajb" = (/obj/table/auto,/obj/random_item_spawner/desk_stuff/g_clip_bin_pen,/obj/item/storage/box/diskbox,/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
"ajc" = (/obj/table/auto,/obj/machinery/computer3/generic/personal,/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor,/area/station/crew_quarters/lounge_starboard)
-"ajd" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/port)
+"ajd" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/west)
"aje" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajg" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"ajh" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/starboard)
-"aji" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajk" = (/obj/machinery/power/apc{areastring = "Central Primary Hallway"; dir = 1; name = "Central Primary Hallway APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajl" = (/obj/machinery/power/apc{areastring = "Port Crew Lounge"; dir = 1; name = "Port Crew Lounge APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajm" = (/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajn" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"ajh" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/east)
+"aji" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajk" = (/obj/machinery/power/apc{areastring = "Central Primary Hallway"; dir = 1; name = "Central Primary Hallway APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajl" = (/obj/machinery/power/apc{areastring = "Port Crew Lounge"; dir = 1; name = "Port Crew Lounge APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajm" = (/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajn" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"ajo" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"ajr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ajs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ajt" = (/obj/machinery/power/apc{areastring = "Starboard Crew Lounge"; dir = 1; name = "Starboard Crew Lounge APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aju" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajv" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"ajr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ajs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ajt" = (/obj/machinery/power/apc{areastring = "Starboard Crew Lounge"; dir = 1; name = "Starboard Crew Lounge APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aju" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajv" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"ajw" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/quarters_port)
"ajx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajz" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajA" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/quarters_star)
-"ajB" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"ajB" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"ajC" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = -28},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
"ajD" = (/obj/table/wood/auto,/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/obj/item/reagent_containers/food/drinks/bottle/hobo_wine,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
"ajE" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = 26},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
@@ -502,7 +502,7 @@
"ajH" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = -28},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_star)
"ajI" = (/obj/table/wood/auto,/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_star)
"ajJ" = (/obj/stool/bed,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = 26},/obj/item/clothing/suit/bedsheet/random,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_star)
-"ajK" = (/obj/machinery/power/apc{areastring = "Port Crew Quarters"; dir = 4; name = "Port Crew Quarters APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"ajK" = (/obj/machinery/power/apc{areastring = "Port Crew Quarters"; dir = 4; name = "Port Crew Quarters APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"ajL" = (/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
"ajM" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
"ajN" = (/obj/machinery/light_switch/south,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
@@ -511,74 +511,74 @@
"ajQ" = (/obj/machinery/light_switch/south,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_star)
"ajR" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_star)
"ajS" = (/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_star)
-"ajT" = (/obj/machinery/power/apc{areastring = "Starboard Crew Quarters"; dir = 8; name = "Starboard Crew Quarters APC"; noalerts = 1; pixel_x = -24; pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"ajT" = (/obj/machinery/power/apc{areastring = "Starboard Crew Quarters"; dir = 8; name = "Starboard Crew Quarters APC"; noalerts = 1; pixel_x = -24; pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"ajU" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ajV" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"ajW" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"ajX" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ajY" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
+"ajW" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"ajX" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ajY" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
"ajZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aka" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"akb" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
-"akc" = (/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
-"akd" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/portsolar)
-"ake" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
+"akb" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
+"akc" = (/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
+"akd" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/westsolar)
+"ake" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
"akf" = (/obj/table/wood/auto,/obj/machinery/light/lamp{pixel_x = 4; pixel_y = 3; switchon = 1},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
"akg" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=podbay"; location = "quarters_port"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"akh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge"; location = "quarters_starboard"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"aki" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akj" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/starboardsolar)
-"akk" = (/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
-"akl" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"ako" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akp" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
+"aki" = (/obj/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akj" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/eastsolar)
+"akk" = (/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
+"akl" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"ako" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes{charge = 2e+007; chargelevel = 15000; output = 10000},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akp" = (/obj/cable{icon_state = "0-2"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
"akr" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"aks" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akt" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
+"aks" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akt" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
"aku" = (/obj/decal/fakeobjects{desc = "Looks like it needs to be replaced."; icon = 'icons/obj/machines/nuclear.dmi'; icon_state = "engineoff"; name = "broken solar panel retractor"; pixel_x = 0; pixel_y = -2},/obj/lattice{icon_state = "lattice-dir-b"; dir = 2},/obj/cable{icon_state = "0-2"},/turf/space,/area/station/shield_zone)
-"akv" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "0-2"},/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/power/solar_control/port,/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akw" = (/obj/machinery/light/small{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/power/data_terminal,/obj/machinery/power/solar_control/starboard,/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akx" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 2},/turf/space,/area/station/solar/starboard)
-"aky" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/tracker/port,/turf/simulated/floor/plating/airless,/area/station/solar/port)
-"akz" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
-"akA" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/port)
+"akv" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "0-2"},/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/power/solar_control/port,/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akw" = (/obj/machinery/light/small{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/power/data_terminal,/obj/machinery/power/solar_control/starboard,/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akx" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 2},/turf/space,/area/station/solar/east)
+"aky" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/tracker/port,/turf/simulated/floor/plating/airless,/area/station/solar/west)
+"akz" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
+"akA" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/west)
"akB" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/shield_zone)
-"akC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
+"akC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
"akI" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-8"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/shield_zone)
-"akJ" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"akK" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/starboard)
-"akL" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tracker/starboard,/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"akJ" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"akK" = (/turf/space,/obj/grille/catwalk{dir = 1; icon_state = "catwalk_cross"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/station/solar/east)
+"akL" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tracker/starboard,/turf/simulated/floor/plating/airless,/area/station/solar/east)
"akM" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 1},/turf/space,/area)
"akN" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 1},/turf/space,/area/station/shield_zone)
-"akO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akP" = (/obj/machinery/light/small{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
+"akO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akP" = (/obj/machinery/light/small{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
"akQ" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"akR" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akS" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akT" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 1},/turf/space,/area/station/solar/starboard)
-"akU" = (/obj/machinery/space_heater,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
+"akR" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akS" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akT" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 1},/turf/space,/area/station/solar/east)
+"akU" = (/obj/machinery/space_heater,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
"akV" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/landmark/start{name = "Staff Assistant"},/obj/landmark/start{name = "Barman"},/obj/landmark/start{name = "Botanist"},/obj/landmark/start{name = "Chef"},/obj/landmark/start{name = "Engineer"},/obj/landmark/start{name = "Geneticist"},/obj/landmark/start{name = "Janitor"},/obj/landmark/start{name = "Mechanic"},/obj/landmark/start{name = "Medical Doctor"},/obj/landmark/start{name = "Miner"},/obj/landmark/start{name = "Quartermaster"},/obj/landmark/start{name = "Roboticist"},/obj/landmark/start{name = "Scientist"},/obj/landmark/start{name = "Security Officer"},/obj/item/storage/secure/ssafe{pixel_x = 26},/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quarters_port)
-"akW" = (/obj/machinery/portable_atmospherics/canister/air/large,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"akX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akY" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"akZ" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
-"ala" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"alb" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"alc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"ald" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/portsolar)
+"akW" = (/obj/machinery/portable_atmospherics/canister/air/large,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"akX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akY" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"akZ" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
+"ala" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; noalerts = 0; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"alb" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"alc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"ald" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/westsolar)
"ale" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/barber_shop)
"alf" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/arcade)
-"alg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboardsolar)
-"alh" = (/obj/cable,/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/port)
-"ali" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"alg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/eastsolar)
+"alh" = (/obj/cable,/obj/machinery/power/solar/port,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/west)
+"ali" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"alj" = (/obj/storage/crate,/obj/item/clothing/mask/horse_mask,/obj/item/clothing/under/misc/barber,/obj/item/clothing/shoes/brown,/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_x = -28; pixel_y = -3},/turf/simulated/floor/wood,/area/station/crew_quarters/barber_shop)
"alk" = (/obj/stool/barber_chair,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor/wood,/area/station/crew_quarters/barber_shop)
"all" = (/obj/machinery/hair_dye_dispenser,/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor/wood,/area/station/crew_quarters/barber_shop)
@@ -590,8 +590,8 @@
"alr" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/computer/arcade,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"als" = (/obj/machinery/sim/vr_bed{dir = 4; name = "VR simulation pod"; network = "arcadevr"},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"alt" = (/obj/machinery/vending/snack,/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_x = 29; pixel_y = -3},/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
-"alu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"alv" = (/obj/cable,/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/starboard)
+"alu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"alv" = (/obj/cable,/obj/machinery/power/solar/starboard,/turf/simulated/floor/airless{icon_state = "solarbase"; name = "solar paneling"},/area/station/solar/east)
"alw" = (/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/station/crew_quarters/barber_shop)
"alx" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/station/crew_quarters/barber_shop)
"aly" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'The Snip'"},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/barber_shop)
@@ -600,7 +600,7 @@
"alB" = (/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"alC" = (/obj/stool/bench/red/auto,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
"alD" = (/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "arcade_carpet"},/area/station/crew_quarters/arcade)
-"alE" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"alE" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"alF" = (/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/crew_quarters/barber_shop)
"alG" = (/obj/wingrille_spawn,/obj/decal/poster/wallsign/barber,/turf/simulated/floor/plating/random,/area/station/crew_quarters/barber_shop)
"alH" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
@@ -608,10 +608,10 @@
"alJ" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"alK" = (/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/crew_quarters/arcade)
"alL" = (/obj/wingrille_spawn,/obj/disposalpipe/segment,/turf/simulated/floor/plating/random,/area/station/crew_quarters/arcade)
-"alM" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"alN" = (/obj/item/storage/wall/emergency{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"alO" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"alP" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"alM" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"alN" = (/obj/item/storage/wall/emergency{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"alO" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"alP" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"alQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"alR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"alS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/disposal/small{pixel_y = 32},/obj/disposalpipe/trunk,/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
@@ -623,12 +623,12 @@
"alY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"alZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour3;desc=Are you in need of spiritual counseling? Your station's theological staff is here to provide counseling and uplifting advice in the Chapel. The pen-and-paper game club meets in here too! Your station's hard-working Janitor's office is down below the Chapel. There's also a fully equipped hydroponics facility on this end of the station, helping to keep everyone healthy with bushels and bushels of tasty fruits and veggies!"; freq = 1443; location = "tour2"; name = "tour beacon - chapel"},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ama" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"amb" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"amc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"amd" = (/obj/item/storage/wall/emergency{pixel_x = 26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ame" = (/obj/item/storage/wall/fire{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"amf" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/device/flashlight,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"amg" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/port)
+"amb" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"amc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"amd" = (/obj/item/storage/wall/emergency{pixel_x = 26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ame" = (/obj/item/storage/wall/fire{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"amf" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/device/flashlight,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"amg" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/west)
"amh" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"ami" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"amj" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
@@ -639,10 +639,10 @@
"amo" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/alarm{dir = 1; pixel_x = 0; pixel_y = -20},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"amp" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"amq" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"amr" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/starboard)
-"ams" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/device/flashlight,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"amt" = (/obj/item/storage/wall/fire{pixel_x = 26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"amu" = (/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"amr" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/east)
+"ams" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/device/flashlight,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"amt" = (/obj/item/storage/wall/fire{pixel_x = 26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"amu" = (/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"amv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Restroom'"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/toilets)
"amw" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"amx" = (/turf/simulated/wall/auto/gannets,/area/station/hallway/primary/central)
@@ -653,7 +653,7 @@
"amC" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Chapel'"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
"amD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Chapel'"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
"amE" = (/turf/simulated/wall/auto/gannets,/area/station/chapel/main)
-"amF" = (/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"amF" = (/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"amG" = (/obj/submachine/chef_sink/chem_sink{pixel_y = 8},/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"amH" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"amI" = (/obj/table/auto,/obj/item/paper_bin,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
@@ -691,7 +691,7 @@
"ano" = (/obj/stool/chair/wooden,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"anp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"anq" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Chapel'"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/chapel/main)
-"anr" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"anr" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"ans" = (/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"ant" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"anu" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
@@ -706,7 +706,7 @@
"anD" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"anE" = (/obj/stool/chair/wooden,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"anF" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
-"anG" = (/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"anG" = (/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"anH" = (/obj/item/storage/toilet/random{dir = 4; icon_state = "toilet"; pixel_x = -8},/obj/machinery/light{icon_state = "tube1"; dir = 1},/obj/landmark/start{name = "Staff Assistant"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"anI" = (/obj/machinery/door/unpowered/wood{icon = 'icons/obj/doors/door_stall.dmi'; name = "stall door"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"anJ" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
@@ -721,9 +721,9 @@
"anS" = (/obj/stool/chair/wooden,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"anT" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"anU" = (/obj/disposalpipe/trunk{dir = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/noticeboard{pixel_y = 28},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
-"anV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"anW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"anX" = (/obj/machinery/power/apc{areastring = "Toilets"; dir = 4; name = "Toilets APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"anV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"anW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"anX" = (/obj/machinery/power/apc{areastring = "Toilets"; dir = 4; name = "Toilets APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"anY" = (/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"anZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/storage/crate,/obj/item/clothing/under/gimmick/macho{color = "#555555"; desc = "They're a little bit tight."; name = "speedo"},/obj/item/clothing/under/shorts/random,/obj/item/clothing/under/swimsuit/random,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"aoa" = (/obj/landmark/start{name = "Head of Security"},/obj/landmark/start{name = "Head of Personnel"},/obj/landmark/start{name = "Chief Engineer"},/obj/landmark/start{name = "Medical Director"},/obj/landmark/start{name = "Research Director"},/obj/stool/chair/comfy/blue{icon_state = "chair_comfy-blue"; dir = 4},/obj/disposalpipe/segment,/obj/machinery/door_control{id = "lockdown"; name = "Bridge Lockdown Control"; pixel_x = -24},/turf/simulated/floor/carpet{icon_state = "fblue2"; dir = 8},/area/station/bridge)
@@ -732,9 +732,9 @@
"aod" = (/obj/machinery/turretid{pixel_x = 24; pixel_y = 0; req_access = null; req_access_txt = "19"},/obj/machinery/door/window/northleft{req_access_txt = "19"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "blueblack"; dir = 1},/area/station/turret_protected/ai)
"aoe" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aof" = (/obj/disposalpipe/segment{icon_state = "pipe-c"; dir = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
-"aog" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aoh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aoi" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aog" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aoh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aoi" = (/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aoj" = (/obj/item/storage/toilet/random{dir = 4; icon_state = "toilet"; pixel_x = -8},/obj/machinery/light{icon_state = "tube1"; dir = 1},/obj/landmark/start{name = "Staff Assistant"},/obj/item/clothing/head/plunger,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"aok" = (/obj/disposalpipe/segment,/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aol" = (/obj/machinery/computer/general_alert{icon_state = "alert:0"; dir = 4},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge)
@@ -772,7 +772,7 @@
"aoR" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light_switch/west,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"aoS" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"aoT" = (/obj/machinery/disposal/small{pixel_y = 32},/obj/disposalpipe/trunk{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
-"aoU" = (/obj/machinery/power/apc{areastring = "Chapel"; dir = 8; name = "Chapel APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aoU" = (/obj/machinery/power/apc{areastring = "Chapel"; dir = 8; name = "Chapel APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aoV" = (/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"aoW" = (/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_x = -28; pixel_y = -3},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"aoX" = (/obj/machinery/computer3/generic/secure_data{dir = 4; icon_state = "datasec"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light_switch/west,/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge)
@@ -785,7 +785,7 @@
"ape" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"apf" = (/obj/stool/chair/wooden,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"apg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
-"aph" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aph" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"api" = (/obj/storage/secure/closet/personal,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"apj" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/computer3/terminal/zeta{dir = 4; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge)
"apk" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge)
@@ -803,10 +803,10 @@
"apw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"apx" = (/obj/table/wood/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"apy" = (/obj/table/wood/auto,/obj/machinery/computer3/generic/personal,/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
-"apz" = (/obj/machinery/power/apc{areastring = "Chapel Office"; dir = 8; name = "Chapel Office APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"apA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"apB" = (/obj/decal/poster/wallsign/space,/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/port)
-"apC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"apz" = (/obj/machinery/power/apc{areastring = "Chapel Office"; dir = 8; name = "Chapel Office APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"apA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"apB" = (/obj/decal/poster/wallsign/space,/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/west)
+"apC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"apD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Restroom'"},/turf/simulated/floor/plating/random,/area/station/crew_quarters/toilets)
"apE" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/light_switch/south,/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
"apF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/bridge)
@@ -823,11 +823,11 @@
"apQ" = (/obj/machinery/disposal/mail/small{dir = 4; icon_state = "mailchute"; mail_tag = "chapel"; name = "mail chute-'Chapel'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 1; name = "mail pipe"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"apR" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 1},/obj/machinery/light,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
"apS" = (/obj/table/wood/auto,/obj/item/storage/toolbox/artistic,/obj/item/card_box/tarot,/obj/item/storage/bible,/obj/item/reagent_containers/glass/bottle/holywater,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/chapel/office)
-"apT" = (/obj/machinery/power/apc{areastring = "Crematorium"; dir = 8; name = "Crematorium APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"apU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"apV" = (/obj/decal/poster/wallsign/space,/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/starboard)
-"apW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"apX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"apT" = (/obj/machinery/power/apc{areastring = "Crematorium"; dir = 8; name = "Crematorium APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"apU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"apV" = (/obj/decal/poster/wallsign/space,/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/east)
+"apW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"apX" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"apY" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/lounge)
"apZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Restroom'"},/turf/simulated/floor,/area/station/crew_quarters/toilets)
"aqa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Showers'"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
@@ -838,9 +838,9 @@
"aqf" = (/obj/machinery/atmospherics/pipe/simple{dir = 6; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/gannets,/area/station/chapel/office)
"aqg" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/gannets,/area/station/chapel/office)
"aqh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/kitchen)
-"aqi" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aqj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aqk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aqi" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aqj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aqk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aql" = (/obj/submachine/ATM{pixel_y = 32},/obj/window/cubicle{icon_state = "cubicle"; dir = 4},/obj/machinery/door/window/southleft,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/lounge)
"aqm" = (/turf/simulated/floor,/area/station/crew_quarters/lounge)
"aqn" = (/obj/landmark/start{name = "Staff Assistant"},/obj/machinery/shower{dir = 8; icon_state = "showerhead"; pixel_y = 6},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
@@ -858,8 +858,8 @@
"aqz" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/kitchen)
"aqA" = (/obj/machinery/atmospherics/pipe/simple/junction,/obj/table/reinforced/auto,/obj/item/kitchen/utensil/knife,/obj/item/kitchen/utensil/knife,/obj/item/clothing/gloves/latex,/obj/item/spraybottle/cleaner,/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"aqB" = (/obj/kitchenspike,/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
-"aqC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aqD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{areastring = "Crew Lounge"; dir = 4; name = "Crew Lounge APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aqC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aqD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{areastring = "Crew Lounge"; dir = 4; name = "Crew Lounge APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aqE" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"aqF" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"aqG" = (/obj/decal/fakeobjects{icon = 'icons/obj/decals.dmi'; icon_state = "drain"; name = "drain"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/station/crew_quarters/toilets)
@@ -879,7 +879,7 @@
"aqU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"aqV" = (/obj/landmark/start{name = "Chef"},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"aqW" = (/obj/machinery/gibber,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
-"aqX" = (/obj/machinery/power/apc{areastring = "Kitchen"; dir = 8; name = "Kitchen APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aqX" = (/obj/machinery/power/apc{areastring = "Kitchen"; dir = 8; name = "Kitchen APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aqY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"aqZ" = (/obj/machinery/manufacturer/uniform,/turf/simulated/floor,/area/station/crew_quarters/lounge)
"ara" = (/obj/storage/closet/dresser/random,/turf/simulated/floor,/area/station/crew_quarters/lounge)
@@ -900,7 +900,7 @@
"arp" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"arq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"arr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/obj/item/device/radio/intercom/catering{pixel_x = 29; pixel_y = -3},/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
-"ars" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"ars" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"art" = (/obj/table/round/auto,/obj/item/decoration/flower_vase{pixel_y = 8},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"aru" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/quartersA)
"arv" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/bar)
@@ -915,9 +915,9 @@
"arE" = (/obj/storage/crate/freezer{name = "Freezer"},/obj/item/fish/bass,/obj/item/fish/bass,/obj/item/fish/carp,/obj/item/fish/carp,/obj/item/fish/salmon,/obj/item/fish/salmon,/obj/item/reagent_containers/food/snacks/yoghurt/frozen,/obj/item/reagent_containers/food/snacks/yoghurt/frozen,/obj/item/reagent_containers/food/snacks/yoghurt/frozen,/obj/item/reagent_containers/food/snacks/yoghurt/frozen,/obj/item/reagent_containers/food/snacks/ice_cream/goodrandom,/obj/item/reagent_containers/food/snacks/ice_cream/goodrandom,/obj/item/storage/box/donkpocket_kit,/obj/item/raw_material/ice,/obj/item/raw_material/ice,/obj/item/raw_material/ice,/obj/item/raw_material/ice,/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"arF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"arG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Freezer'"; req_access = list(28)},/turf/simulated/floor/plating/random,/area/station/crew_quarters/kitchen)
-"arH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"arI" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/gannets,/area/station/maintenance/starboard)
-"arJ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer/kitchen{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"arH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"arI" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/gannets,/area/station/maintenance/east)
+"arJ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer/kitchen{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"arK" = (/obj/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"arL" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"arM" = (/obj/storage/secure/closet/personal,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/crew_quarters/quartersA)
@@ -941,10 +941,10 @@
"ase" = (/obj/cable{icon_state = "1-8"},/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"asf" = (/obj/table/reinforced/auto,/obj/item/reagent_containers/food/drinks/eggnog,/obj/item/clothing/head/helmet/space/santahat,/obj/item/reagent_containers/food/snacks/yoghurt,/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
"asg" = (/obj/machinery/atmospherics/pipe/simple/junction{icon_state = "intact"; dir = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/storage/crate{desc = "A small, cuboid object with a hinged top and empty interior. It smells kinda bad and seems to have an odd stain on it."; icon = 'icons/misc/halloween.dmi'; name = "Dented Crate"},/obj/item/reagent_containers/food/snacks/ingredient/meat{desc = "Ew."; name = "meat of questionable origin"},/turf/simulated/floor{icon_state = "freezerfloor"; name = "freezer floor"; nitrogen = 0; oxygen = 100; temperature = 150},/area/station/crew_quarters/kitchen)
-"ash" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Freezer Temperature Control Room'"; req_access = null},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"asi" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 1; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"asj" = (/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/starboard)
-"ask" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"ash" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Freezer Temperature Control Room'"; req_access = null},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"asi" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 1; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"asj" = (/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/east)
+"ask" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"asl" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Crew Lounge'"},/turf/simulated/floor/plating/random,/area/station/crew_quarters/lounge)
"asm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"asn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/crew_quarters/lounge)
@@ -969,9 +969,9 @@
"asG" = (/obj/storage/secure/closet/kitchen,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/kitchen)
"asH" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2},/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/kitchen)
"asI" = (/obj/machinery/atmospherics/binary/volume_pump{dir = 8; on = 1; transfer_rate = 1000},/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/kitchen)
-"asJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"asK" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"asL" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1; icon_state = "intact"; name = "High-Capacity Pressure Tank (Carbon Dioxide)"; volume = 1000},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"asJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"asK" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"asL" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1; icon_state = "intact"; name = "High-Capacity Pressure Tank (Carbon Dioxide)"; volume = 1000},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"asM" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/security/detectives_office)
"asN" = (/obj/shrub{dir = 1; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_x = -8; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/lounge)
"asO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/lounge)
@@ -993,8 +993,8 @@
"ate" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/east,/obj/machinery/door/window/northright{req_access = list(28)},/obj/machinery/door/window/southright,/obj/machinery/cashreg,/obj/item/plate,/obj/item/reagent_containers/food/snacks/sandwich/meat_m{name = "100% synthetic freerange monkey sandwich"},/turf/simulated/floor,/area/station/crew_quarters/kitchen)
"atf" = (/obj/disposalpipe/trunk,/obj/stool/chair/couch{dir = 8; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/landmark/start{name = "Botanist"},/obj/decal/poster/wallsign/poster_rand{pixel_y = 32},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 1},/obj/item/paper/book/hydroponicsguide,/turf/simulated/floor{icon_state = "blue"; dir = 1},/area/station/hydroponics)
"atg" = (/obj/stool/chair/couch{dir = 4; icon_state = "chair_couch-blue"; name = "ratty blue couch"},/obj/landmark/start{name = "Botanist"},/obj/decal/poster/wallsign/poster_rand{pixel_y = 32},/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 5},/turf/simulated/floor{icon_state = "blue"; dir = 5},/area/station/hydroponics)
-"ath" = (/obj/machinery/power/apc{areastring = "Hydroponics"; dir = 8; name = "Hydroponics APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ati" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"ath" = (/obj/machinery/power/apc{areastring = "Hydroponics"; dir = 8; name = "Hydroponics APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ati" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"atj" = (/obj/table/wood/round/auto,/obj/machinery/light/lamp/green{on = 0; pixel_x = -6; pixel_y = 4; switchon = 1},/obj/decal/cleanable/dirt,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"; pixel_y = 5},/obj/item/cigbutt,/obj/item/cigpacket/propuffs{pixel_x = 4; pixel_y = 3},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"atk" = (/obj/machinery/vending/capsule,/turf/simulated/floor,/area/station/crew_quarters/lounge)
"atl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/crew_quarters/lounge)
@@ -1023,11 +1023,11 @@
"atI" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor,/area/station/hydroponics)
"atJ" = (/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/hydroponics)
"atK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Hydroponics'"; req_access = list(35)},/turf/simulated/floor/plating/random,/area/station/hydroponics)
-"atL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/cigbutt,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"atM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/clothing/shoes/pink{pixel_y = -6},/obj/item/reagent_containers/food/snacks/plant/potato{desc = "Yep, this sure is some potato."; pixel_x = 3; pixel_y = 6},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"atN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"atO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"atP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{areastring = "Detective's Office"; dir = 4; name = "Detective's Office APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"atL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/cigbutt,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"atM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/clothing/shoes/pink{pixel_y = -6},/obj/item/reagent_containers/food/snacks/plant/potato{desc = "Yep, this sure is some potato."; pixel_x = 3; pixel_y = 6},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"atN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/item/decoration/ashtray{butts = 5; icon_state = "ashtray"; name = "grubby old ashtray"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"atO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"atP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{areastring = "Detective's Office"; dir = 4; name = "Detective's Office APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"atQ" = (/obj/storage/secure/closet/security/forensics,/obj/machinery/light_switch/west,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"atR" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet{bcolor = "red"; icon_state = "bedsheet-red"},/obj/landmark/start{name = "Detective"},/obj/item/reagent_containers/food/drinks/bottle/bojackson,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"atS" = (/obj/table/auto,/obj/bedsheetbin{pixel_y = 2},/turf/simulated/floor,/area/station/crew_quarters/lounge)
@@ -1046,9 +1046,9 @@
"auf" = (/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 10},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hydroponics)
"aug" = (/turf/simulated/floor,/area/station/hydroponics)
"auh" = (/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 4},/obj/machinery/hydro_growlamp,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/station/hydroponics)
-"aui" = (/obj/storage/crate,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"auj" = (/obj/item/cigbutt,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"auk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aui" = (/obj/storage/crate,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"auj" = (/obj/item/cigbutt,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"auk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/cigbutt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aul" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/security,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/security/detectives_office)
"aum" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/obj/blind_switch/area/north,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"aun" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
@@ -1103,7 +1103,7 @@
"avk" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/janitor)
"avl" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/submachine/chef_sink/chem_sink{pixel_y = 8},/turf/simulated/floor,/area/station/janitor)
"avm" = (/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 5},/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "janitor"; name = "mail chute-'Janitor'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/janitor)
-"avn" = (/obj/item/storage/wall/emergency{pixel_x = 26; pixel_y = 2},/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"avn" = (/obj/item/storage/wall/emergency{pixel_x = 26; pixel_y = 2},/obj/reagent_dispensers/foamtank,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"avo" = (/obj/machinery/computer/security/wooden_tv,/obj/item/clothing/head/det_hat{pixel_y = 11},/obj/item/clothing/head/fedora{pixel_y = 11},/obj/item/storage/secure/ssafe{pixel_x = -28},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"avp" = (/obj/decal/cleanable/dirt,/obj/item/cigbutt,/obj/landmark/start{name = "Detective"},/obj/machinery/firealarm{dir = 2; layer = 3.5; pixel_y = 24},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"avq" = (/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
@@ -1137,7 +1137,7 @@
"avS" = (/obj/vehicle/floorbuffer{icon_state = "floorbuffer"; dir = 8},/obj/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/station/janitor)
"avT" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/turf/simulated/floor,/area/station/janitor)
"avU" = (/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 5},/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk,/turf/simulated/floor,/area/station/janitor)
-"avV" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/wall/fire{pixel_x = 26; pixel_y = 2},/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"avV" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/wall/fire{pixel_x = 26; pixel_y = 2},/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"avW" = (/obj/table/wood/auto,/obj/item/device/camera_viewer,/obj/item/camera_test,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/storage/box/evidence,/obj/item/storage/box/evidence,/obj/item/storage/secure/sbriefcase,/obj/item/device/audio_log,/obj/item/audio_tape{pixel_y = 5},/obj/item/audio_tape{pixel_y = 5},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"avX" = (/obj/storage/cart/forensic,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
"avY" = (/obj/machinery/computer/secure_data/detective_computer,/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
@@ -1176,8 +1176,8 @@
"awF" = (/obj/stool/chair/moveable{icon_state = "chair"; dir = 8},/obj/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/station/janitor)
"awG" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/janitor)
"awH" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 5},/obj/storage/cart/trash,/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = 22},/turf/simulated/floor,/area/station/janitor)
-"awI" = (/obj/item/storage/wall/fire{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"awJ" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"awI" = (/obj/item/storage/wall/fire{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"awJ" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"awK" = (/turf/simulated/wall/auto/gannets,/area/station/medical/medbay/lobby)
"awL" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/medbay/lobby)
"awM" = (/obj/table/wood/auto,/obj/machinery/computer3/generic/personal,/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{icon_state = "grimy"; name = "cheap carpet"},/area/station/security/detectives_office)
@@ -1205,10 +1205,10 @@
"axi" = (/obj/machinery/bot/cleanbot,/turf/simulated/floor,/area/station/janitor)
"axj" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 6},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/janitor)
"axk" = (/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 6},/obj/storage/cart/trash,/turf/simulated/floor,/area/station/janitor)
-"axl" = (/obj/item/storage/wall/emergency{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"axm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"axn" = (/obj/item/device/glowstick,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"axo" = (/obj/machinery/power/apc{areastring = "Medbay Lobby"; dir = 4; name = "Medbay Lobby APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"axl" = (/obj/item/storage/wall/emergency{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"axm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"axn" = (/obj/item/device/glowstick,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"axo" = (/obj/machinery/power/apc{areastring = "Medbay Lobby"; dir = 4; name = "Medbay Lobby APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"axp" = (/obj/machinery/sleeper,/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"axq" = (/obj/machinery/sleep_console,/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"axr" = (/obj/machinery/sleep_console{dir = 4},/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/item/device/radio/intercom/medical{pixel_x = 0; pixel_y = 22},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
@@ -1230,20 +1230,20 @@
"axH" = (/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 10},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/grass/random,/area/station/hydroponics)
"axI" = (/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 6},/turf/simulated/floor/grass/random,/area/station/hydroponics)
"axJ" = (/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 6},/obj/submachine/seed_manipulator{tag = "icon-geneman-on (WEST)"; icon_state = "geneman-on"; dir = 8},/turf/simulated/floor/grass/random,/area/station/hydroponics)
-"axK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"axL" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"axM" = (/obj/stool/chair/wooden,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"axN" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/stool/chair/wooden,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"axO" = (/obj/stool/chair/wooden,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"axP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"axQ" = (/obj/machinery/vending/cards,/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"axK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"axL" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"axM" = (/obj/stool/chair/wooden,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"axN" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/stool/chair/wooden,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"axO" = (/obj/stool/chair/wooden,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"axP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"axQ" = (/obj/machinery/vending/cards,/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"axR" = (/obj/wingrille_spawn/reinforced,/obj/window_blinds,/turf/simulated/floor/plating/random,/area/station/janitor)
"axS" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 8},/obj/table/reinforced/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/turf/simulated/floor,/area/station/janitor)
"axT" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 4},/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/janitor)
-"axU" = (/obj/machinery/power/apc{areastring = "Janitor's Office"; dir = 8; name = "Janitor's Office APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"axV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"axW" = (/obj/machinery/vending/standard,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"axX" = (/obj/machinery/light/small{dir = 4},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"axU" = (/obj/machinery/power/apc{areastring = "Janitor's Office"; dir = 8; name = "Janitor's Office APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"axV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"axW" = (/obj/machinery/vending/standard,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"axX" = (/obj/machinery/light/small{dir = 4},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"axY" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 1},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 6},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/lobby)
"axZ" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 1},/obj/decal/tile_edge/line/blue{icon_state = "line1"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/lobby)
"aya" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 1},/obj/decal/tile_edge/line/blue{icon_state = "line1"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/lobby)
@@ -1269,23 +1269,23 @@
"ayu" = (/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 10},/obj/machinery/plantpot,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/grass/random,/area/station/hydroponics)
"ayv" = (/obj/decal/tile_edge/line/green{icon_state = "line1"},/obj/machinery/plantpot,/turf/simulated/floor/grass/random,/area/station/hydroponics)
"ayw" = (/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 6},/obj/machinery/plantpot,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/grass/random,/area/station/hydroponics)
-"ayx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ayy" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ayz" = (/obj/table/wood/auto,/obj/item/clipboard,/obj/item/clipboard,/obj/item/clipboard,/obj/item/pen,/obj/item/pen,/obj/item/pen,/obj/item/reagent_containers/food/snacks/chips,/obj/item/reagent_containers/food/drinks/cola,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ayA" = (/obj/table/wood/auto,/obj/item/paper_bin,/obj/item/clothing/suit/cultist{desc = "Neeeeerds."; name = "+2 robes of dungeon mastery"},/obj/item/dice/magic8ball,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ayB" = (/obj/table/wood/auto,/obj/item/storage/box/nerd_kit,/obj/item/clothing/head/apprentice,/obj/item/clothing/mask/skull,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ayC" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ayD" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"ayx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ayy" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ayz" = (/obj/table/wood/auto,/obj/item/clipboard,/obj/item/clipboard,/obj/item/clipboard,/obj/item/pen,/obj/item/pen,/obj/item/pen,/obj/item/reagent_containers/food/snacks/chips,/obj/item/reagent_containers/food/drinks/cola,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ayA" = (/obj/table/wood/auto,/obj/item/paper_bin,/obj/item/clothing/suit/cultist{desc = "Neeeeerds."; name = "+2 robes of dungeon mastery"},/obj/item/dice/magic8ball,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ayB" = (/obj/table/wood/auto,/obj/item/storage/box/nerd_kit,/obj/item/clothing/head/apprentice,/obj/item/clothing/mask/skull,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ayC" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ayD" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"ayE" = (/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 10},/obj/reagent_dispensers/watertank/big,/turf/simulated/floor,/area/station/janitor)
"ayF" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"},/obj/item/caution,/obj/item/caution,/obj/mopbucket,/turf/simulated/floor,/area/station/janitor)
"ayG" = (/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 6},/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/janitor)
-"ayH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ayI" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ayJ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ayK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ayL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ayM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"ayN" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"ayH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ayI" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ayJ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ayK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ayL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ayM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"ayN" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"ayO" = (/turf/simulated/wall/auto/gannets,/area/station/medical/medbay)
"ayP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/medical{name = "airlock-'Cryogenics'"},/turf/simulated/floor/plating/random,/area/station/medical/medbay)
"ayQ" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/medical/medbay/lobby)
@@ -1301,17 +1301,17 @@
"aza" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/central)
"azb" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/central)
"azc" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"; name = "food pipe"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"azd" = (/obj/shrub{dir = 2; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_x = -4; pixel_y = 8},/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aze" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azg" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azh" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azi" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azj" = (/turf/simulated/wall/auto/gannets,/area/station/hallway/primary/starboard)
+"azd" = (/obj/shrub{dir = 2; icon = 'icons/obj/stationobjs.dmi'; icon_state = "plant"; pixel_x = -4; pixel_y = 8},/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aze" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azg" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azh" = (/obj/stool/chair/wooden{icon_state = "chair_wooden"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azi" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azj" = (/turf/simulated/wall/auto/gannets,/area/station/hallway/primary/east)
"azk" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock/gannets{name = "airlock-'Janitor's Office'"; req_access = list(26)},/turf/simulated/floor/plating/random,/area/station/janitor)
-"azl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"azl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"azm" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/turret_protected/Zeta)
-"azn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"azn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"azo" = (/turf/simulated/wall/auto/gannets,/area/station/medical/robotics)
"azp" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/gannets/medical{name = "airlock-'Robotics'"; req_access = list(29)},/turf/simulated/floor/plating/random,/area/station/medical/robotics)
"azq" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 9},/obj/machinery/atmospherics/unary/cryo_cell{pipe_direction = 2},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
@@ -1325,36 +1325,36 @@
"azy" = (/obj/stool/chair/couch/blue{icon_state = "chair_couch-blue"; dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"azz" = (/obj/table/round/auto,/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 6},/obj/machinery/computer/security/wooden_tv/small{pixel_y = 8},/obj/machinery/firealarm{dir = 2; layer = 3.5; pixel_y = 24},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"azA" = (/obj/wingrille_spawn/reinforced,/obj/decal/poster/wallsign/medbay{icon_state = "med"},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/medical/medbay/lobby)
-"azB" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azC" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azE" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azF" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azG" = (/obj/disposalpipe/junction{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.5; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azH" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"azI" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{name = "food pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/port)
+"azB" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azC" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azE" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azF" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azG" = (/obj/disposalpipe/junction{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.5; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azH" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"azI" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{name = "food pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/west)
"azJ" = (/obj/disposalpipe/segment{dir = 4},/obj/shrub,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"azK" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/cryotron{layer = 3.9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"azL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/landmark{name = "JoinLate"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"azM" = (/obj/disposalpipe/segment{dir = 4},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/starboard)
-"azN" = (/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azO" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azP" = (/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azQ" = (/obj/disposalpipe/junction{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azR" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azS" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azT" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"azW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/gannets/maintenance,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"azX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"azY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"azZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"azM" = (/obj/disposalpipe/segment{dir = 4},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/east)
+"azN" = (/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azO" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azP" = (/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azQ" = (/obj/disposalpipe/junction{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azR" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azS" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azT" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"azW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/gannets/maintenance,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"azX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"azY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"azZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aAa" = (/obj/machinery/networked/mainframe/zeta{tag = "ZETA_MAINFRAME"},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "circuit-green"},/area/station/turret_protected/Zeta)
"aAb" = (/obj/machinery/networked/radio,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "circuit-green"},/area/station/turret_protected/Zeta)
"aAc" = (/obj/machinery/networked/storage/tape_drive{bank_id = "Control"; locked = 0; name = "Databank - Control"; read_only = 0; setup_drive_type = /obj/item/disk/data/tape/master},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "circuit-green"},/area/station/turret_protected/Zeta)
-"aAd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aAe" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{areastring = "Robotics"; dir = 2; name = "Robotics APC"; operating = 1; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aAd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aAe" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{areastring = "Robotics"; dir = 2; name = "Robotics APC"; operating = 1; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aAf" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"aAg" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/medical/robotics)
"aAh" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 5},/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light{dir = 8; icon_state = "tube1"; tag = ""},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay)
@@ -1369,35 +1369,35 @@
"aAq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"aAr" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/lobby)
"aAs" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/glass/medical{name = "glass airlock-'Medbay'"; req_access = null},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay/lobby)
-"aAt" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAu" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "detective"; name = "detective mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aAA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aAt" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAu" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "detective"; name = "detective mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aAA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aAB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aAC" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aAD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=research"; location = "arrivals"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aAE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"aAF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "hydroponics"; name = "hydroponics mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "janitor"; name = "janitor mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aAM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aAF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "hydroponics"; name = "hydroponics mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "janitor"; name = "janitor mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aAM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aAN" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/teleporter)
"aAO" = (/turf/simulated/wall/auto/gannets,/area/station/science/teleporter)
"aAP" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "circuit-green"},/area/station/turret_protected/Zeta)
"aAQ" = (/obj/machinery/door/window/southright{req_access = list(19)},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "circuit-green"},/area/station/turret_protected/Zeta)
"aAR" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "circuit-green"},/area/station/turret_protected/Zeta)
"aAS" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/disposalpipe/segment,/obj/machinery/door/airlock/gannets/command/alt{name = "airlock-'Computer Core'"},/turf/simulated/floor/plating/random,/area/station/turret_protected/Zeta)
-"aAT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aAU" = (/obj/machinery/power/apc{areastring = "Toxin Lab"; dir = 2; name = "Toxin Lab APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aAV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aAT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aAU" = (/obj/machinery/power/apc{areastring = "Toxin Lab"; dir = 2; name = "Toxin Lab APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aAV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aAW" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 9},/obj/table/reinforced/auto,/obj/machinery/cashreg,/obj/item/storage/toolbox/mechanical,/obj/item/storage/toolbox/mechanical,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/wrench,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"aAX" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 1},/obj/submachine/robomoduler,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"aAY" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 4},/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 9},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
@@ -1413,32 +1413,32 @@
"aBi" = (/obj/health_scanner/floor{find_in_range = 0; id = "lobby"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/lobby)
"aBj" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/lobby)
"aBk" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/door/airlock/gannets/glass/medical{name = "glass airlock-'Medbay'"; req_access = null},/turf/simulated/floor{icon_state = "fullblue"},/area/station/medical/medbay/lobby)
-"aBl" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "robotics"; name = "robotics mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBn" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBo" = (/obj/machinery/vending/medical_public,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"; name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBp" = (/obj/shrub,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBq" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBr" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBs" = (/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour11;desc=Please keep your hands inside the station at all times! Remember, Safety First! In the event that you do need to go out in space though, you will probably want an EVA suit. Make sure to ask for permission first!"; freq = 1443; location = "tour10"; name = "tour beacon - eva"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBt" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBu" = (/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aBw" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"; name = "food pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/port)
+"aBl" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "robotics"; name = "robotics mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBn" = (/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBo" = (/obj/machinery/vending/medical_public,/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"; name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBp" = (/obj/shrub,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBq" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBr" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBs" = (/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour11;desc=Please keep your hands inside the station at all times! Remember, Safety First! In the event that you do need to go out in space though, you will probably want an EVA suit. Make sure to ask for permission first!"; freq = 1443; location = "tour10"; name = "tour beacon - eva"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBt" = (/obj/machinery/light,/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBu" = (/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aBw" = (/obj/machinery/light/emergency,/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"; name = "food pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/west)
"aBx" = (/obj/machinery/light,/obj/table/round/auto,/obj/item/paper_bin,/obj/item/pen,/obj/item/device/flashlight,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aBy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aBz" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
"aBA" = (/obj/machinery/light,/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/storage/firstaid/regular,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/central)
-"aBB" = (/obj/machinery/light/emergency,/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/starboard)
-"aBC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBD" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBE" = (/obj/table/wood/auto,/obj/item/storage/box/donkpocket_kit,/obj/item/reagent_containers/food/snacks/salad,/obj/item/kitchen/utensil/fork,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBF" = (/obj/disposalpipe/segment,/obj/table/wood/auto,/obj/machinery/microwave,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBG" = (/obj/shrub,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBH" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBI" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aBK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aBB" = (/obj/machinery/light/emergency,/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/east)
+"aBC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBD" = (/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBE" = (/obj/table/wood/auto,/obj/item/storage/box/donkpocket_kit,/obj/item/reagent_containers/food/snacks/salad,/obj/item/kitchen/utensil/fork,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBF" = (/obj/disposalpipe/segment,/obj/table/wood/auto,/obj/machinery/microwave,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBG" = (/obj/shrub,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBH" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBI" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aBK" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aBL" = (/obj/wingrille_spawn/reinforced,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 1; dir = 1; doordir = "left"; icon_state = "bdoorleft1"; id = "scienceteleporter2"; layer = 4; name = "Teleporter Blast Shield"; opacity = 1},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aBM" = (/turf/simulated/floor/engine{allows_vehicles = 0; dir = 8; icon_state = "engine_caution_corners"},/area/station/science/teleporter)
"aBN" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/turf/simulated/floor/engine{allows_vehicles = 0; icon_state = "engine_caution_north"},/area/station/science/teleporter)
@@ -1452,11 +1452,11 @@
"aBV" = (/obj/window/reinforced/east,/obj/decal/tile_edge/line/green{icon_state = "line4"; dir = 5},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/item/device/net_sniffer,/turf/simulated/floor{dir = 5; icon_state = "green"},/area/station/turret_protected/Zeta)
"aBW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 9},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor,/area/station/turret_protected/Zeta)
"aBX" = (/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 5},/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/turf/simulated/floor,/area/station/turret_protected/Zeta)
-"aBY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aBY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aBZ" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/lab)
"aCa" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/storage/tech)
-"aCb" = (/obj/machinery/power/apc{areastring = "Medical Director's Office"; dir = 2; name = "Medical Director's Office APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aCc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aCb" = (/obj/machinery/power/apc{areastring = "Medical Director's Office"; dir = 2; name = "Medical Director's Office APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aCc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aCd" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/medical{name = "airlock-'Robotics'"; req_access = list(29)},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/medical/robotics)
"aCe" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 9},/obj/machinery/manufacturer/robotics,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
"aCf" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 1},/obj/submachine/cargopad{name = "Robotics Workshop Pad"},/obj/machinery/portable_reclaimer,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/robotics)
@@ -1480,9 +1480,9 @@
"aCx" = (/obj/table/reinforced/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/obj/item/reagent_containers/emergency_injector/epinephrine,/obj/item/reagent_containers/emergency_injector/epinephrine,/obj/window/reinforced/north,/turf/simulated/floor,/area/station/medical/medbay/lobby)
"aCy" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 5},/obj/machinery/computer3/generic/med_data,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced/north,/turf/simulated/floor,/area/station/medical/medbay/lobby)
"aCz" = (/obj/wingrille_spawn/reinforced,/obj/decal/poster/wallsign/medbay{icon_state = "med"},/obj/cable,/turf/simulated/floor/plating/random,/area/station/medical/medbay/lobby)
-"aCA" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/disposalpipe/junction{dir = 1},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aCB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aCC" = (/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aCA" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/disposalpipe/junction{dir = 1},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aCB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aCC" = (/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aCD" = (/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/ai_monitored/storage/eva)
"aCE" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/ai_monitored/storage/eva)
"aCF" = (/obj/wingrille_spawn/reinforced,/obj/disposalpipe/segment,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; doordir = "left"; icon_state = "bdoorleft0"; id = "eva_shield"; layer = 4; name = "E.V.A. Security Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/ai_monitored/storage/eva)
@@ -1500,9 +1500,9 @@
"aCR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Atmospherics'"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; icon_state = "bdoormid0"; id = "atmos_shield"; layer = 4; name = "Atmospherics Security Shield"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/atmos)
"aCS" = (/obj/wingrille_spawn/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; icon_state = "bdoormid0"; id = "atmos_shield"; layer = 4; name = "Atmospherics Security Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/atmos)
"aCT" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment,/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; doordir = "right"; icon_state = "bdoorright0"; id = "atmos_shield"; layer = 4; name = "Atmospherics Security Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/atmos)
-"aCU" = (/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aCV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aCW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aCU" = (/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aCV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aCW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aCX" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/door/airlock/gannets/glass/chemistry{name = "glass airlock-'Teleporter Pad'"; req_access = null},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 1; dir = 1; icon_state = "bdoormid1"; id = "scienceteleporter2"; layer = 4; name = "Teleporter Blast Shield"; opacity = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/science/teleporter)
"aCY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine{allows_vehicles = 0; icon_state = "engine_caution_west"},/area/station/science/teleporter)
"aCZ" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/telepad,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor/engine{allows_vehicles = 0},/area/station/science/teleporter)
@@ -1516,20 +1516,20 @@
"aDh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/green{icon_state = "line3"; dir = 1},/obj/machinery/door/window/eastleft{req_access = list(19)},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/station/turret_protected/Zeta)
"aDi" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 8},/turf/simulated/floor,/area/station/turret_protected/Zeta)
"aDj" = (/obj/machinery/turretid{pixel_x = 24},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/turret_protected/Zeta)
-"aDk" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aDl" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aDm" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/reagent_containers/food/drinks/bottle/fancy_beer,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aDk" = (/obj/table/auto,/obj/random_item_spawner/tools,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aDl" = (/obj/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aDm" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/reagent_containers/food/drinks/bottle/fancy_beer,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aDn" = (/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 9},/obj/machinery/atmospherics/portables_connector{name = "Mixing Port"},/turf/simulated/floor,/area/station/science/lab)
"aDo" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 5},/obj/machinery/computer3/terminal/zeta{dir = 2; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor,/area/station/science/lab)
-"aDp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aDq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aDr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aDp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aDq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aDr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aDs" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/clown)
"aDt" = (/obj/machinery/computer3/generic/radio,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aDu" = (/obj/item/device/net_sniffer,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/item/device/audio_log,/obj/item/audio_tape{pixel_y = 5},/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aDv" = (/obj/machinery/computer3/terminal/zeta{dir = 2; setup_os_string = "ZETA_MAINFRAME"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aDw" = (/turf/simulated/wall/auto/gannets,/area/station/storage/tech)
-"aDx" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aDx" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aDy" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/cdc)
"aDz" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/head)
"aDA" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/door/window/eastleft,/mob/living/silicon/hivebot/eyebot,/turf/simulated/floor{icon_state = "circuit"; dir = 2},/area/station/medical/robotics)
@@ -1560,9 +1560,9 @@
"aDZ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/table/reinforced/auto,/obj/machinery/door_control{id = "medbay_door"; name = "Medbay Door Control"; pixel_y = 12},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"aEa" = (/obj/cable{icon_state = "1-8"},/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 1},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"aEb" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/machinery/door/window/eastleft{req_access = list(5)},/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/machinery/cashreg,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/medbay/lobby)
-"aEc" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 9},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aEd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aEe" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aEc" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 9},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aEd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aEe" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aEf" = (/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/obj/machinery/door_control{id = "eva_shield"; name = "E.V.A. Security Shield"; pixel_x = 8; pixel_y = 24},/obj/decal/tile_edge/line/blue{dir = 9; icon_state = "line2"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
"aEg" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
"aEh" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
@@ -1581,9 +1581,9 @@
"aEu" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 1; level = 2},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/atmos)
"aEv" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 1; level = 2},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/atmos)
"aEw" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/machinery/atmospherics/pipe/simple{dir = 10; icon_state = "intact"; level = 2},/obj/machinery/door_control{id = "atmos_shield"; name = "E.V.A. Security Shield"; pixel_x = -8; pixel_y = 24},/obj/decal/tile_edge/line/blue{dir = 5; icon_state = "line2"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/station/atmos)
-"aEx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aEy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aEz" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "computer_core"; name = "computer core mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aEx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aEy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aEz" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "computer_core"; name = "computer core mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aEA" = (/obj/wingrille_spawn/reinforced,/obj/cable,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 1; dir = 1; doordir = "right"; icon_state = "bdoorright1"; id = "scienceteleporter2"; layer = 4; name = "Teleporter Blast Shield"; opacity = 1},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aEB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/engine{allows_vehicles = 0; icon_state = "engine_caution_corners"},/area/station/science/teleporter)
"aEC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/engine{allows_vehicles = 0; icon_state = "engine_caution_south"},/area/station/science/teleporter)
@@ -1598,8 +1598,8 @@
"aEL" = (/obj/window/reinforced/east,/obj/decal/tile_edge/line/green{icon_state = "line4"; dir = 6},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "green"; dir = 6},/area/station/turret_protected/Zeta)
"aEM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 10},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor,/area/station/turret_protected/Zeta)
"aEN" = (/obj/decal/tile_edge/line/green{icon_state = "line2"; dir = 6},/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "computer_core"; mailgroup = "command"; message = "1"; name = "mail chute-'Computer Core'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/turf/simulated/floor,/area/station/turret_protected/Zeta)
-"aEO" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aEP" = (/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = -28},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aEO" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aEP" = (/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = -28},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aEQ" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 8},/obj/machinery/atmospherics/valve{name = "mixing valve"},/turf/simulated/floor,/area/station/science/lab)
"aER" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Scientist"},/obj/stool/chair/office/purple{icon_state = "office_chair_purple"; dir = 4},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/turf/simulated/floor,/area/station/science/lab)
"aES" = (/obj/table/reinforced/auto,/obj/item/device/audio_log,/obj/item/audio_tape{pixel_y = 5},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 1},/obj/item/wrench,/turf/simulated/floor,/area/station/science/lab)
@@ -1613,11 +1613,11 @@
"aFa" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 4},/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/lab)
"aFb" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 1; level = 2},/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/lab)
"aFc" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 10},/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/lab)
-"aFd" = (/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aFe" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aFf" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aFg" = (/obj/machinery/light/small,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aFh" = (/obj/submachine/slot_machine,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aFd" = (/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aFe" = (/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aFf" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aFg" = (/obj/machinery/light/small,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aFh" = (/obj/submachine/slot_machine,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aFi" = (/turf/simulated/wall/auto/gannets,/area/station/crew_quarters/clown)
"aFj" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/cobweb2,/obj/table/auto,/obj/item/pen/crayon/rainbow,/obj/item/storage/goodybag,/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aFk" = (/obj/decal/cleanable/dirt,/obj/table/auto,/obj/decal/cleanable/cobweb,/obj/decal/cleanable/molten_item,/obj/item/reagent_containers/food/snacks/pie/cream,/obj/item/storage/pill_bottle/cyberpunk,/obj/juggleplaque{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
@@ -1628,7 +1628,7 @@
"aFp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-4"},/obj/stool/bench,/obj/cable{icon_state = "2-4"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aFq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-4"},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aFr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Technical Storage'"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/storage/tech)
-"aFs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aFs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aFt" = (/obj/decal/tile_edge/line/green{icon_state = "line4"; dir = 9},/obj/table/reinforced/auto,/obj/item/bloodslide,/obj/item/bloodslide,/obj/item/bloodslide,/obj/item/bloodslide,/obj/item/reagent_containers/glass/petridish,/obj/item/reagent_containers/glass/petridish,/obj/item/reagent_containers/glass/petridish,/obj/item/reagent_containers/glass/petridish,/obj/item/reagent_containers/dropper/mechanical,/obj/item/reagent_containers/glass/vial/prepared,/obj/item/reagent_containers/glass/vial/prepared,/obj/item/reagent_containers/glass/vial/prepared,/obj/item/reagent_containers/glass/vial/prepared,/obj/item/reagent_containers/dropper,/turf/simulated/floor{icon_state = "purplewhitecorner"},/area/station/medical/cdc)
"aFu" = (/obj/decal/tile_edge/line/green{icon_state = "line3"},/obj/table/reinforced/auto,/obj/item/storage/box/patchbox,/obj/item/storage/box/vialbox,/obj/machinery/firealarm{dir = 2; layer = 3.5; pixel_y = 24},/obj/item/device/audio_log,/turf/simulated/floor{icon_state = "purplewhite"},/area/station/medical/cdc)
"aFv" = (/obj/decal/tile_edge/line/green{icon_state = "line4"; dir = 5},/obj/table/reinforced/auto,/obj/item/storage/box/patchbox,/obj/item/storage/box/syringes,/obj/item/hand_labeler,/obj/item/clothing/glasses/spectro,/turf/simulated/floor{icon_state = "purplewhitecorner"; dir = 4},/area/station/medical/cdc)
@@ -1663,9 +1663,9 @@
"aFY" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/health_scanner/wall{find_in_range = 0; id = "lobby"; name = "lobby health status screen"; pixel_y = 32},/turf/simulated/floor,/area/station/medical/medbay/lobby)
"aFZ" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 10},/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "medbay"; mailgroup = "medbay"; mailgroup2 = "medresearch"; name = "mail chute-'Medbay'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 4; name = "mail pipe"},/obj/item/device/radio/intercom/medical{pixel_x = 0; pixel_y = -28},/obj/machinery/light/emergency,/turf/simulated/floor,/area/station/medical/medbay/lobby)
"aGa" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/medbay/lobby)
-"aGb" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/medical{broadcasting = 1; pixel_x = -28; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aGc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aGd" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "medbay"; name = "medbay mail router"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aGb" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/medical{broadcasting = 1; pixel_x = -28; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aGc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aGd" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "medbay"; name = "medbay mail router"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aGe" = (/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/obj/storage/crate/rcd,/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
"aGf" = (/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
"aGg" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
@@ -1691,8 +1691,8 @@
"aGA" = (/obj/machinery/atmospherics/valve,/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 10},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "cautioncorner"; dir = 8},/area/station/atmos)
"aGB" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/station/atmos)
"aGC" = (/obj/machinery/atmospherics/valve,/obj/decal/tile_edge/line/blue{dir = 4; icon_state = "line1"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/atmos)
-"aGD" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aGE" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aGD" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aGE" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aGF" = (/obj/wingrille_spawn/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; doordir = "left"; icon_state = "bdoorleft0"; id = "scienceteleporter"; layer = 4; name = "Teleporter Blast Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aGG" = (/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; icon_state = "bdoormid0"; id = "scienceteleporter"; layer = 4; name = "Teleporter Blast Shield"; opacity = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aGH" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; doordir = "right"; icon_state = "bdoorright0"; id = "scienceteleporter"; layer = 4; name = "Teleporter Blast Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
@@ -1723,8 +1723,8 @@
"aHg" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/gannets,/area/station/maintenance/disposal)
"aHh" = (/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aHi" = (/turf/simulated/wall/auto/gannets,/area/station/maintenance/disposal)
-"aHj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aHk" = (/obj/machinery/power/apc{dir = 4; name = "Starboard Maintenance APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/stool/chair/moveable{icon_state = "chair"; dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aHj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aHk" = (/obj/machinery/power/apc{dir = 4; name = "Starboard Maintenance APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/stool/chair/moveable{icon_state = "chair"; dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aHl" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aHm" = (/obj/decal/cleanable/dirt,/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aHn" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/generic,/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
@@ -1733,7 +1733,7 @@
"aHq" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/rack,/obj/item/circuitboard/teleporter,/obj/item/circuitboard/card,/obj/item/circuitboard/cloning,/obj/item/circuitboard/barcode_qm,/obj/item/circuitboard/barcode,/obj/item/circuitboard/arcade,/obj/item/circuitboard/powermonitor,/obj/item/circuitboard/powermonitor_smes,/obj/item/circuitboard/operating,/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aHr" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer3/luggable,/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aHs" = (/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/bootleg,/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/storage/tech)
-"aHt" = (/obj/machinery/power/apc{areastring = "Port Maintenance"; dir = 8; name = "Port Maintenance APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aHt" = (/obj/machinery/power/apc{areastring = "Port Maintenance"; dir = 8; name = "Port Maintenance APC"; pixel_x = -24; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aHu" = (/obj/storage/secure/closet/animal,/turf/simulated/floor/grass/random,/area/station/medical/cdc)
"aHv" = (/obj/landmark{name = "monkeyspawn_normal"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor/grass/random,/area/station/medical/cdc)
"aHw" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/turf/simulated/floor/grass/random,/area/station/medical/cdc)
@@ -1764,9 +1764,9 @@
"aHV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/medical/medbay/pharmacy)
"aHW" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/machinery/door/window/northright{req_access = list(5,33); req_only_one_required = 1},/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay/pharmacy)
"aHX" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/medbay/pharmacy)
-"aHY" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 10},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aHZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"; name = "food pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/port)
-"aIa" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aHY" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 10},/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aHZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"; name = "food pipe"},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/west)
+"aIa" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aIb" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"; name = "food pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/ai_monitored/storage/eva)
"aIc" = (/obj/table/reinforced/auto,/obj/decal/tile_edge/line/blue{dir = 10; icon_state = "line2"},/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
"aId" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/tank/jetpack,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space,/obj/decal/tile_edge/line/blue{icon_state = "line1"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/ai_monitored/storage/eva)
@@ -1781,9 +1781,9 @@
"aIm" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1},/obj/decal/tile_edge/line/blue{icon_state = "line1"},/turf/simulated/floor{icon_state = "yellow"; dir = 2},/area/station/atmos)
"aIn" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{dir = 1},/obj/decal/tile_edge/line/blue{icon_state = "line1"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "yellow"; dir = 2},/area/station/atmos)
"aIo" = (/obj/machinery/atmospherics/pipe/tank/toxins{dir = 1},/obj/decal/tile_edge/line/blue{dir = 6; icon_state = "line2"},/turf/simulated/floor{icon_state = "yellow"; dir = 6},/area/station/atmos)
-"aIp" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aIq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/starboard)
-"aIr" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "telesci"; name = "science teleporter mail router"},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aIp" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aIq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/wingrille_spawn,/turf/simulated/floor/plating/random,/area/station/hallway/primary/east)
+"aIr" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "telesci"; name = "science teleporter mail router"},/obj/machinery/door/airlock/gannets/glass,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aIs" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/science/teleporter)
"aIt" = (/obj/decal/tile_edge/line/white{icon_state = "line3"; dir = 4},/obj/machinery/disposal/mail/small{dir = 2; icon_state = "mailchute"; layer = 32; mail_tag = "telesci"; mailgroup = "science"; message = "1"; name = "mail chute-'Science Teleporter'"; pixel_y = 32},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/obj/table/reinforced/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/turf/simulated/floor{icon_state = "cautionwhite"; dir = 9},/area/station/science/teleporter)
"aIu" = (/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/storage/crate/adventure,/turf/simulated/floor{icon_state = "cautionwhite"; dir = 1},/area/station/science/teleporter)
@@ -1822,14 +1822,14 @@
"aJb" = (/obj/machinery/conveyor{dir = 4; id = "disposals"; operating = 1},/obj/disposaloutlet{dir = 4},/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aJc" = (/obj/machinery/conveyor{dir = 4; id = "disposals"; operating = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aJd" = (/obj/machinery/conveyor{dir = 2; id = "disposals"; operating = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
-"aJe" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aJe" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aJf" = (/obj/machinery/door/firedoor/border_only,/obj/decal/cleanable/dirt,/obj/creepy_sound_trigger,/obj/item/bananapeel,/obj/machinery/door/airlock/gannets/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aJg" = (/obj/decal/cleanable/dirt,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aJh" = (/obj/decal/cleanable/dirt,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aJi" = (/obj/decal/cleanable/dirt,/obj/storage/crate/clown,/obj/item/bikehorn,/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aJj" = (/obj/table/auto,/obj/item/peripheral/sound_card,/obj/item/peripheral/printer,/obj/item/peripheral/network/powernet_card,/obj/item/peripheral/network/radio/locked,/obj/item/peripheral/drive,/obj/item/peripheral/drive/cart_reader,/obj/item/peripheral/card_scanner,/obj/item/peripheral/card_scanner,/obj/item/disk/data/fixed_disk,/obj/item/disk/data/cartridge/diagnostics{pixel_x = 4; pixel_y = -2},/obj/item/disk/data/cartridge{desc = "A programmable data cartridge for portable microcomputers."; name = "EEPROM Cart"},/obj/item/disk/data/cartridge/atmos{pixel_x = -6; pixel_y = 4},/turf/simulated/floor/plating/random,/area/station/storage/tech)
"aJk" = (/obj/machinery/power/apc{areastring = "Technical Storage"; dir = 4; name = "Technical Storage APC"; pixel_x = 24; pixel_y = 0},/obj/cable,/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/storage/tech)
-"aJl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aJl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aJm" = (/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/grass/random,/area/station/medical/cdc)
"aJn" = (/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/grass/random,/area/station/medical/cdc)
"aJo" = (/obj/landmark{name = "monkeyspawn_normal"},/turf/simulated/floor/grass/random,/area/station/medical/cdc)
@@ -1863,9 +1863,9 @@
"aJQ" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 9},/obj/decal/poster/wallsign/poster_ptoe{pixel_y = 32},/obj/storage/secure/closet/research/chemical{req_access = list(8,10); req_only_one_required = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aJR" = (/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 1},/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aJS" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 5},/obj/machinery/chem_dispenser,/obj/item/reagent_containers/glass/beaker/large,/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
-"aJT" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aJU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aJV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aJT" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aJU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aJV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aJW" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/storage/tools)
"aJX" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 9; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/mining/magnet)
"aJY" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/mining/magnet)
@@ -1873,9 +1873,9 @@
"aKa" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/engineering/ce)
"aKb" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/engineering/ce)
"aKc" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/engineering/ce)
-"aKd" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aKf" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj1"; mail_tag = "chief_engineer"; name = "Chief Engineer mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aKd" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aKf" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj1"; mail_tag = "chief_engineer"; name = "Chief Engineer mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aKg" = (/obj/decal/tile_edge/line/white{icon_state = "line3"; dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "cautionwhite"},/area/station/science/teleporter)
"aKh" = (/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
"aKi" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
@@ -1901,7 +1901,7 @@
"aKC" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/turf/space,/area/station/science/lab)
"aKD" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 9},/turf/space,/area/station/science/lab)
"aKE" = (/obj/machinery/conveyor{dir = 2; id = "disposals"; operating = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
-"aKF" = (/obj/machinery/light/small{dir = 4},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aKF" = (/obj/machinery/light/small{dir = 4},/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aKG" = (/obj/decal/cleanable/dirt,/obj/marker/supplymarker,/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aKH" = (/obj/decal/cleanable/dirt,/obj/reagent_dispensers/heliumtank,/obj/machinery/power/apc{dir = 2; name = "Non-Area APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor/plating/random,/area/station/crew_quarters/clown)
"aKI" = (/obj/machinery/vending/computer3,/turf/simulated/floor/plating/random,/area/station/storage/tech)
@@ -1941,9 +1941,9 @@
"aLq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aLr" = (/obj/stool/chair/office/blue{icon_state = "office_chair_blue"; dir = 4},/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aLs" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/door/window/eastleft{req_access = list(5,33); req_only_one_required = 1},/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/machinery/cashreg,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/medbay/pharmacy)
-"aLt" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aLu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aLv" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "medical_director"; name = "Medical Director mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aLt" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aLu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aLv" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "medical_director"; name = "Medical Director mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aLw" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/storage/tools)
"aLx" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools,/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 9},/obj/item/device/flashlight,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor,/area/station/storage/tools)
"aLy" = (/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.5; pixel_y = 24},/turf/simulated/floor,/area/station/storage/tools)
@@ -1958,8 +1958,8 @@
"aLH" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/table/reinforced/auto,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering/ce)
"aLI" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 1},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering/ce)
"aLJ" = (/obj/machinery/power/monitor{dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/blind_switch/area{pixel_x = 24},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/engine/engineering/ce)
-"aLK" = (/obj/disposalpipe/junction{dir = 1},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 10},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aLL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aLK" = (/obj/disposalpipe/junction{dir = 1},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 10},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aLL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aLM" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall/auto/gannets,/area/station/science/teleporter)
"aLN" = (/obj/decal/tile_edge/line/white{icon_state = "line3"; dir = 4},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/disposalpipe/segment{dir = 4},/obj/rack,/obj/item/clothing/suit/space/emerg,/obj/item/clothing/head/emerg,/obj/item/tank/air,/obj/item/clothing/mask/breath,/obj/item/device/flashlight,/turf/simulated/floor{icon_state = "cautionwhite"; dir = 10},/area/station/science/teleporter)
"aLO" = (/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/disposalpipe/segment{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor{icon_state = "cautionwhite"},/area/station/science/teleporter)
@@ -2028,8 +2028,8 @@
"aMZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/stool/chair/moveable{icon_state = "chair"; dir = 8},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering/ce)
"aNa" = (/turf/simulated/floor{icon_state = "fullcaution"},/area/station/engine/engineering/ce)
"aNb" = (/obj/wingrille_spawn/reinforced,/obj/window_blinds{pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/engine/engineering/ce)
-"aNc" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aNd" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "research_director"; name = "Research Director mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aNc" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aNd" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "research_director"; name = "Research Director mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aNe" = (/obj/wingrille_spawn,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aNf" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/science/teleporter)
"aNg" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/science/teleporter)
@@ -2064,7 +2064,7 @@
"aNJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Disposals'"},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aNK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aNL" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
-"aNM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aNM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aNN" = (/obj/decal/tile_edge/line/green{icon_state = "line3"; dir = 1},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 9},/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/medical/cdc)
"aNO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/synthomatic,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/cdc)
"aNP" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/cdc)
@@ -2096,7 +2096,7 @@
"aOp" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aOq" = (/obj/machinery/chem_heater,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aOr" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
-"aOs" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aOs" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aOt" = (/turf/simulated/wall/auto/gannets,/area/station/storage/tools)
"aOu" = (/obj/storage/closet/welding_supply,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor,/area/station/storage/tools)
"aOv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor,/area/station/storage/tools)
@@ -2136,8 +2136,8 @@
"aPd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aPe" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aPf" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/disposal)
-"aPg" = (/obj/reagent_dispensers/foamtank,/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aPh" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/wall/fire{pixel_y = 32},/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aPg" = (/obj/reagent_dispensers/foamtank,/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aPh" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/item/storage/wall/fire{pixel_y = 32},/obj/item/device/flashlight,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aPi" = (/obj/decal/tile_edge/line/green{icon_state = "line3"; dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/medical/cdc)
"aPj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/cdc)
"aPk" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/cdc)
@@ -2172,9 +2172,9 @@
"aPN" = (/obj/submachine/chem_extractor{dir = 8},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aPO" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 4},/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "pharmacy"; mailgroup = "medresearch"; message = "1"; name = "mail chute-'Pharmacy'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 4; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aPP" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/medbay/pharmacy)
-"aPQ" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 9},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aPR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aPS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "pharmacy"; name = "pharmacy mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aPQ" = (/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 9},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aPR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aPS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "pharmacy"; name = "pharmacy mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aPT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets{name = "airlock-'Tool Storage'"; req_access = list(12)},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/storage/tools)
"aPU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 10},/turf/simulated/floor,/area/station/storage/tools)
"aPV" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 6},/obj/machinery/light_switch/south,/turf/simulated/floor,/area/station/storage/tools)
@@ -2185,8 +2185,8 @@
"aQa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering/ce)
"aQb" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/engine/engineering/ce)
"aQc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/command/alt{name = "airlock-'Chief Engineer's Office'"; req_access = list(49)},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/engineering/ce)
-"aQd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aQe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aQd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aQe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aQf" = (/obj/decal/tile_edge/line/white{icon_state = "line3"; dir = 1},/obj/decal/fakeobjects{density = 1; desc = "What was this thing even supposed to do?"; icon = 'icons/obj/machines/nuclear.dmi'; icon_state = "engineoff"; name = "Active Particle Phase Matrix"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{dir = 8; icon_state = "cautionwhite"},/area/station/science/teleporter)
"aQg" = (/obj/lrteleporter{layer = 3},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
"aQh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/science/teleporter)
@@ -2238,8 +2238,8 @@
"aRb" = (/obj/machinery/computer3/generic/med_data{icon_state = "datamed"; dir = 8},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/decal/tile_edge/line/green{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aRc" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 8},/obj/machinery/light_switch/west,/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aRd" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
-"aRe" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aRf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aRe" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aRf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aRg" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/crew_quarters/courtroom)
"aRh" = (/obj/table/reinforced/bar/auto{name = "table"},/obj/decal/tile_edge/stripe{dir = 8; icon_state = "stripe-edge"; tag = ""},/obj/machinery/light/lamp/green{on = 0; pixel_x = -6; pixel_y = 4; switchon = 1},/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
"aRi" = (/obj/storage/closet/office,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_x = 0; pixel_y = 24},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
@@ -2247,8 +2247,8 @@
"aRk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/command/alt{name = "airlock-'Chief Engineer's Office'"; req_access = list(49)},/turf/simulated/floor,/area/station/engine/engineering/ce)
"aRl" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/storage/crate/rcd,/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering/ce)
"aRm" = (/obj/machinery/power/monitor/smes{dir = 8; name = "Engine Output Monitoring"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/light_switch/east,/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/engine/engineering/ce)
-"aRn" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{dir = 9; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aRo" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "buddy_depot"; name = "robot depot mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aRn" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{dir = 9; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aRo" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "buddy_depot"; name = "robot depot mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aRp" = (/obj/decal/tile_edge/line/white{icon_state = "line3"; dir = 4},/obj/machinery/computer/telescope{dir = 4},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "cautionwhite"; dir = 10},/area/station/science/teleporter)
"aRq" = (/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "cautionwhite"},/area/station/science/teleporter)
"aRr" = (/obj/decal/tile_edge/line/white{icon_state = "line3"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "cautionwhite"},/area/station/science/teleporter)
@@ -2313,7 +2313,7 @@
"aSy" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/obj/table/reinforced/auto,/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/item/hand_labeler,/obj/item/device/reagentscanner,/obj/item/device/reagentscanner,/obj/item/reagent_containers/dropper/mechanical,/obj/item/reagent_containers/dropper/mechanical,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/obj/item/clothing/glasses/spectro,/obj/item/clothing/glasses/spectro,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aSz" = (/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aSA" = (/obj/decal/tile_edge/line/white{icon_state = "line1"; dir = 4},/obj/stool/chair/office/blue,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
-"aSB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aSB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aSC" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/crew_quarters/courtroom)
"aSD" = (/obj/stool/chair/moveable{dir = 4; icon_state = "chair"},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
"aSE" = (/obj/stool/chair/moveable{dir = 4; icon_state = "chair"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
@@ -2325,8 +2325,8 @@
"aSK" = (/obj/machinery/power/apc{dir = 1; name = "Mining Refinery APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 9},/turf/simulated/floor,/area/station/mining/refinery)
"aSL" = (/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 1},/turf/simulated/floor{dir = 6; icon_state = "floor_hazard_corners"},/area/station/mining/refinery)
"aSM" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/mining/refinery)
-"aSN" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aSO" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "toxins"; name = "toxins mail router"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 6},/obj/item/device/radio/intercom/science{pixel_x = 29; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aSN" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aSO" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "toxins"; name = "toxins mail router"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 6},/obj/item/device/radio/intercom/science{pixel_x = 29; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aSP" = (/obj/wingrille_spawn/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aSQ" = (/obj/wingrille_spawn/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/science/teleporter)
"aSR" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Science Teleporter'"},/turf/simulated/floor{icon_state = "dark"},/area/station/science/teleporter)
@@ -2386,7 +2386,7 @@
"aTT" = (/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 10},/obj/table/reinforced/auto,/obj/disposalpipe/segment,/obj/item/storage/box/patchbox,/obj/item/storage/box/patchbox,/obj/item/storage/box/patchbox,/obj/item/storage/box/syringes,/obj/item/storage/box/syringes,/obj/item/storage/box/beakerbox,/obj/item/storage/box/beakerbox,/obj/item/reagent_containers/glass/beaker/large,/obj/item/device/radio/intercom/medical{pixel_x = -28; pixel_y = -3},/obj/machinery/light,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aTU" = (/obj/decal/tile_edge/line/white{icon_state = "line1"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
"aTV" = (/obj/machinery/chem_dispenser,/obj/decal/tile_edge/line/white{icon_state = "line2"; dir = 6},/obj/item/reagent_containers/glass/beaker/large,/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/medical/medbay/pharmacy)
-"aTW" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aTW" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aTX" = (/obj/stool/chair/moveable{dir = 4; icon_state = "chair"},/obj/cable{icon_state = "2-4"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
"aTY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
"aTZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/wood{dir = 4; icon_state = "wood_stairs"; name = "stairs"},/area/station/crew_quarters/courtroom)
@@ -2397,9 +2397,9 @@
"aUe" = (/turf/simulated/floor/engine{icon_state = "engine_caution_corners"; dir = 8},/area/station/mining/refinery)
"aUf" = (/turf/simulated/floor/engine{icon_state = "engine_caution_north"},/area/station/mining/refinery)
"aUg" = (/turf/simulated/floor/engine{icon_state = "engine_caution_corners"; dir = 4},/area/station/mining/refinery)
-"aUh" = (/obj/disposalpipe/junction{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aUi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=depot"; location = "research"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aUj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aUh" = (/obj/disposalpipe/junction{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aUi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=depot"; location = "research"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aUj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aUk" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/gannets/glass/chemistry{name = "glass airlock-'Research'"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
"aUl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/station/science)
"aUm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/science)
@@ -2444,8 +2444,8 @@
"aUZ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/medical/medbay/pharmacy)
"aVa" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/medical/medbay/pharmacy)
"aVb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Pharmacy'"; req_access = list(5,33); req_only_one_required = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/medical/medbay/pharmacy)
-"aVc" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aVd" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "pathology"; name = "pathology mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aVc" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aVd" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "pathology"; name = "pathology mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aVe" = (/obj/cable{icon_state = "1-2"},/obj/stool/chair/moveable{dir = 4; icon_state = "chair"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
"aVf" = (/obj/table/wood/auto,/obj/decal/tile_edge/stripe{dir = 9; icon_state = "stripe-edge"; tag = ""},/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/fancy,/obj/item/stamp/random,/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
"aVg" = (/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/stool/chair/moveable{icon_state = "chair"; dir = 8},/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
@@ -2453,9 +2453,9 @@
"aVi" = (/obj/machinery/smelter,/turf/simulated/floor/engine{icon_state = "engine_caution_west"},/area/station/mining/refinery)
"aVj" = (/turf/simulated/floor/engine,/area/station/mining/refinery)
"aVk" = (/turf/simulated/floor/engine{icon_state = "engine_caution_east"},/area/station/mining/refinery)
-"aVl" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aVm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour13;desc=What would a research station be without a research sector? Beats me! Anyways, that's what's in here. Authorized personnel only! Your station's science team is very busy working on very serious and important sciencey stuff!"; freq = 1443; location = "tour12"; name = "tour beacon - research"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aVn" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "artlab"; name = "artifact lab mail router"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aVl" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aVm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour13;desc=What would a research station be without a research sector? Beats me! Anyways, that's what's in here. Authorized personnel only! Your station's science team is very busy working on very serious and important sciencey stuff!"; freq = 1443; location = "tour12"; name = "tour beacon - research"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aVn" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "artlab"; name = "artifact lab mail router"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aVo" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/airlock/gannets/glass/chemistry{name = "glass airlock-'Research'"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
"aVp" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/purple{icon_state = "line2"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/science)
"aVq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/purple{icon_state = "line1"},/obj/machinery/light/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/science)
@@ -2486,25 +2486,25 @@
"aVP" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 10},/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/storage)
"aVQ" = (/obj/machinery/light/small{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aVR" = (/obj/machinery/launcher_loader/south,/obj/window/reinforced/west,/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
-"aVS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aVT" = (/obj/machinery/power/apc{areastring = "Pathology Research"; dir = 1; name = "Pathology Research APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aVU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aVV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aVW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Crew Lounge'"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aVX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/maintenance/port)
-"aVY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{name = "morgue pipe"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bluewhite"; dir = 8},/area/station/maintenance/port)
-"aVZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWa" = (/obj/machinery/power/apc{areastring = "Treatment Room 1"; dir = 1; name = "Treatment Room 1 APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{areastring = "Cloning"; dir = 2; name = "Cloning APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWc" = (/obj/machinery/power/apc{areastring = "Treatment Room 2"; dir = 1; name = "Treatment Room 2 APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWd" = (/obj/machinery/power/apc{areastring = "Medical Research"; dir = 2; name = "Medical Research APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWf" = (/obj/machinery/power/apc{areastring = "Brig"; dir = 2; name = "Brig APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWg" = (/obj/machinery/power/apc{areastring = "Medbay Operating Theater"; dir = 1; name = "Medbay Operating Theater APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWh" = (/obj/machinery/power/apc{areastring = "Security"; dir = 2; name = "Security APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWi" = (/obj/machinery/power/apc{areastring = "Pharmacy"; dir = 1; name = "Pharmacy APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aWj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aWk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aVS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aVT" = (/obj/machinery/power/apc{areastring = "Pathology Research"; dir = 1; name = "Pathology Research APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aVU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aVV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aVW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Crew Lounge'"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aVX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/maintenance/west)
+"aVY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{name = "morgue pipe"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bluewhite"; dir = 8},/area/station/maintenance/west)
+"aVZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWa" = (/obj/machinery/power/apc{areastring = "Treatment Room 1"; dir = 1; name = "Treatment Room 1 APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{areastring = "Cloning"; dir = 2; name = "Cloning APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWc" = (/obj/machinery/power/apc{areastring = "Treatment Room 2"; dir = 1; name = "Treatment Room 2 APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWd" = (/obj/machinery/power/apc{areastring = "Medical Research"; dir = 2; name = "Medical Research APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWf" = (/obj/machinery/power/apc{areastring = "Brig"; dir = 2; name = "Brig APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWg" = (/obj/machinery/power/apc{areastring = "Medbay Operating Theater"; dir = 1; name = "Medbay Operating Theater APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWh" = (/obj/machinery/power/apc{areastring = "Security"; dir = 2; name = "Security APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWi" = (/obj/machinery/power/apc{areastring = "Pharmacy"; dir = 1; name = "Pharmacy APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/light/small,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aWj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aWk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aWl" = (/obj/reagent_dispensers/watertank/fountain,/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
"aWm" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/wood{icon_state = "wooden"},/area/station/crew_quarters/courtroom)
"aWn" = (/obj/table/wood/auto,/obj/decal/tile_edge/stripe{dir = 8; icon_state = "stripe-edge"; tag = ""},/obj/machinery/light/lamp/green{on = 0; pixel_x = -6; pixel_y = 4; switchon = 1},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6},/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
@@ -2513,8 +2513,8 @@
"aWq" = (/turf/simulated/floor/engine{icon_state = "engine_caution_corners"},/area/station/mining/refinery)
"aWr" = (/obj/landmark/start{name = "Miner"},/turf/simulated/floor/engine{icon_state = "engine_caution_south"},/area/station/mining/refinery)
"aWs" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/item/slag_shovel,/turf/simulated/floor/engine{icon_state = "engine_caution_corners"; dir = 1},/area/station/mining/refinery)
-"aWt" = (/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"aWu" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "test_chamber"; name = "test chamber mail router"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aWt" = (/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"aWu" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "test_chamber"; name = "test chamber mail router"},/obj/decal/tile_edge/line/purple{icon_state = "line1"; dir = 5},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aWv" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/elect)
"aWw" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/elect)
"aWx" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/elect)
@@ -2523,12 +2523,12 @@
"aWA" = (/obj/storage/secure/closet/research/uniform,/obj/machinery/light,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
"aWB" = (/obj/table/reinforced/auto,/obj/random_item_spawner/desk_stuff/g_clip_bin_pen,/obj/item/clothing/mask/gas,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
"aWC" = (/obj/machinery/manufacturer/general,/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science)
-"aWD" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/artifact)
-"aWE" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/artifact)
-"aWF" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/artifact)
-"aWG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Artifact Lab'"; req_access = list(8)},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/artifact)
-"aWH" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Artifact Lab'"; req_access = list(8)},/turf/simulated/floor{icon_state = "dark"},/area/station/artifact)
-"aWI" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/artifact)
+"aWD" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/artifact)
+"aWE" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/science/artifact)
+"aWF" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/science/artifact)
+"aWG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Artifact Lab'"; req_access = list(8)},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/science/artifact)
+"aWH" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Artifact Lab'"; req_access = list(8)},/turf/simulated/floor{icon_state = "dark"},/area/station/science/artifact)
+"aWI" = (/obj/wingrille_spawn/reinforced,/turf/simulated/floor/plating/random,/area/station/science/artifact)
"aWJ" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor/plating/random,/area/station/chemistry)
"aWK" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating/random,/area/station/chemistry)
"aWL" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Chemistry'"; req_access = list(33)},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/chemistry)
@@ -2542,7 +2542,7 @@
"aWT" = (/obj/machinery/light,/obj/cable{icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/science/storage)
"aWU" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/plating/random,/area/station/science/storage)
"aWV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/toxins{name = "airlock-'Toxins'"; req_access = list(7)},/turf/simulated/floor/plating/random,/area/station/science/storage)
-"aWW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aWW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aWX" = (/obj/machinery/mass_driver{id = "disposals_vent"},/obj/window/reinforced/west,/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
"aWY" = (/turf/simulated/wall/auto/gannets,/area/station/medical/medbay/cloner)
"aWZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/medical{id = "medbay_hall"; name = "glass airlock-'Medbay'"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbay/cloner)
@@ -2557,7 +2557,7 @@
"aXi" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/security/main)
"aXj" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/security/main)
"aXk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/security{name = "airlock-'Security'"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/security/main)
-"aXl" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "genetics"; name = "genetics mail router"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aXl" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "genetics"; name = "genetics mail router"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aXm" = (/obj/table/wood/auto,/obj/decal/tile_edge/stripe{dir = 5; icon_state = "stripe-edge"; tag = ""},/obj/item/reagent_containers/food/drinks/bottle/bottledwater{pixel_y = 8},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 4},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6},/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
"aXn" = (/obj/cable{icon_state = "1-2"},/turf/simulated/floor/wood{dir = 1; icon_state = "wood_stairs"; name = "stairs"},/area/station/crew_quarters/courtroom)
"aXo" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/crew_quarters/courtroom)
@@ -2567,21 +2567,21 @@
"aXs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 5; icon_state = "floor_hazard_corners"},/area/station/mining/refinery)
"aXt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/mining/refinery)
"aXu" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_north"; dir = 8},/area/station/mining/refinery)
-"aXv" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "mechanics"; name = "mechanics mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aXv" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "mechanics"; name = "mechanics mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aXw" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/north,/obj/window/reinforced/west,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/elect)
"aXx" = (/obj/machinery/disposal/mail/small{mail_tag = "mechanics"; mailgroup = "mechanic"; message = "1"; name = "mail chute-'Mechanics'"; pixel_y = 32},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 9},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/elect)
"aXy" = (/obj/machinery/disposal/small{pixel_y = 32},/obj/disposalpipe/trunk,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 1},/turf/simulated/floor{dir = 6; icon_state = "floor_hazard_corners"},/area/station/engine/elect)
"aXz" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 1},/turf/simulated/floor{dir = 2; icon_state = "caution_south"},/area/station/engine/elect)
"aXA" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 5},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 0; pixel_y = 22},/obj/machinery/vending/mechanics,/turf/simulated/floor{dir = 10; icon_state = "floor_hazard_corners"},/area/station/engine/elect)
-"aXB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/artifact)
-"aXC" = (/obj/machinery/networked/test_apparatus/xraymachine,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/artifact)
-"aXD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/artifact)
-"aXE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/artifact)
-"aXF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/artifact)
-"aXG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/artifact)
-"aXH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/artifact)
-"aXI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/artifact)
-"aXJ" = (/obj/machinery/networked/test_apparatus/electrobox,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 5},/area/station/artifact)
+"aXB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/artifact)
+"aXC" = (/obj/machinery/networked/test_apparatus/xraymachine,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/science/artifact)
+"aXD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/science/artifact)
+"aXE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/science/artifact)
+"aXF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/science/artifact)
+"aXG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/science/artifact)
+"aXH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/science/artifact)
+"aXI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/science/artifact)
+"aXJ" = (/obj/machinery/networked/test_apparatus/electrobox,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 5},/area/station/science/artifact)
"aXK" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/chemistry)
"aXL" = (/obj/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/chemistry)
"aXM" = (/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/chemistry)
@@ -2591,11 +2591,11 @@
"aXQ" = (/obj/wingrille_spawn/reinforced_crystal/full,/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; doordir = "left"; icon_state = "bdoorleft0"; id = "test_chamber"; layer = 4; name = "Test Chamber Blast Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/testchamber)
"aXR" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/gannets/toxins{name = "airlock-'Test Chamber'"; req_access = list(8)},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 4; doordir = "right"; icon_state = "bdoorright0"; id = "test_chamber"; layer = 4; name = "Test Chamber Blast Shield"; opacity = 0},/turf/simulated/floor/engine,/area/station/testchamber)
"aXS" = (/obj/machinery/atmospherics/binary/pump{dir = 2; icon_state = "intact_on"; on = 1; target_pressure = 250},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating/random,/area/station/science/storage)
-"aXT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aXT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aXU" = (/obj/machinery/mass_driver{id = "disposals_vent"},/obj/machinery/door/poddoor/blast/single{doordir = "noblasts"; icon_state = "bdoornoblasts1"; id = "disposals_vent"; layer = 4; name = "Disposals Vent"},/turf/simulated/floor/plating/random,/area/station/maintenance/disposal)
-"aXV" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/reagent_containers/food/drinks/bottle/hobo_wine,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aXW" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aXX" = (/obj/cable,/obj/machinery/power/apc{areastring = "Medbay"; dir = 4; name = "Medbay APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aXV" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/reagent_containers/food/drinks/bottle/hobo_wine,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aXW" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aXX" = (/obj/cable,/obj/machinery/power/apc{areastring = "Medbay"; dir = 4; name = "Medbay APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aXY" = (/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/machinery/door_control{id = "medbay_hall"; name = "Medbay Door Control"; pixel_x = -24; pixel_y = 8; timer = 100},/turf/simulated/floor{icon_state = "bluewhite"; dir = 4},/area/station/medical/medbay/cloner)
"aXZ" = (/obj/disposalpipe/segment{name = "morgue pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bluewhite"; dir = 10},/area/station/medical/medbay/cloner)
"aYa" = (/turf/simulated/floor{icon_state = "bluewhite"; dir = 2},/area/station/medical/medbay/cloner)
@@ -2624,9 +2624,9 @@
"aYx" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/station/security/main)
"aYy" = (/obj/stool/chair/office/red{icon_state = "office_chair_red"; dir = 4},/obj/decal/tile_edge/line/red{icon_state = "line2"; dir = 5},/obj/landmark/start{name = "Security Officer"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/brig{pixel_y = 22},/turf/simulated/floor,/area/station/security/main)
"aYz" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/machinery/door/window/eastleft{req_access = list(1)},/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/cashreg{name = "bail payment device"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
-"aYA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aYB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"aYC" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "security"; name = "security mail router"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"aYA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aYB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "food pipe"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"aYC" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "security"; name = "security mail router"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"aYD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass{name = "glass airlock-'Courtroom'"},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/courtroom)
"aYE" = (/obj/machinery/light,/obj/cable{icon_state = "4-8"},/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
"aYF" = (/obj/cable{icon_state = "4-8"},/obj/cable{icon_state = "1-8"},/obj/machinery/light_switch/south,/turf/simulated/floor/wood,/area/station/crew_quarters/courtroom)
@@ -2638,7 +2638,7 @@
"aYL" = (/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line1"},/obj/machinery/loom,/turf/simulated/floor,/area/station/mining/refinery)
"aYM" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 10},/turf/simulated/floor,/area/station/mining/refinery)
"aYN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor,/area/station/mining/refinery)
-"aYO" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "chemistry"; name = "chemistry mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"aYO" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "chemistry"; name = "chemistry mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"aYP" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/south,/obj/machinery/door/window/westleft{req_access = list(45)},/obj/machinery/cashreg,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/elect)
"aYQ" = (/obj/stool/chair/office/yellow{icon_state = "office_chair_yellow"; dir = 8},/obj/landmark/start{name = "Mechanic"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/elect)
"aYR" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_east"; dir = 8},/area/station/engine/elect)
@@ -2650,14 +2650,14 @@
"aYX" = (/obj/table/reinforced/auto,/obj/machinery/computer3/generic/personal,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"aYY" = (/obj/storage/secure/closet/engineering/mechanic,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"aYZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/storage/secure/closet/engineering/mechanic,/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 5},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
-"aZa" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/artifact)
-"aZb" = (/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"aZc" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"aZd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"aZe" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"aZf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"aZg" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
-"aZh" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/artifact)
+"aZa" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/science/artifact)
+"aZb" = (/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"aZc" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"aZd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"aZe" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"aZf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"aZg" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
+"aZh" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/science/artifact)
"aZi" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/submachine/chef_sink/chem_sink{dir = 4; pixel_x = -4; pixel_y = 0},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/chemistry)
"aZj" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
"aZk" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
@@ -2671,13 +2671,13 @@
"aZs" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/cable{icon_state = "1-8"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor/engine,/area/station/testchamber)
"aZt" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/testchamber)
"aZu" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/wall/auto/reinforced/gannets,/area/station/science/storage)
-"aZv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"aZw" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"aZv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"aZw" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"aZx" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 4},/turf/simulated/wall/auto/reinforced/gannets,/area/station/maintenance/disposal)
"aZy" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor/plating/airless,/area/station/maintenance/disposal)
-"aZz" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = -28},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aZA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"aZB" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"aZz" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/device/radio/intercom{name = "Station Intercom"; pixel_y = -28},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aZA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/maintenance,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"aZB" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"aZC" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/table/reinforced/auto,/obj/bedsheetbin{pixel_y = 2},/obj/item/reagent_containers/glass/beaker/large/antitox,/obj/item/reagent_containers/glass/beaker/large/epinephrine,/obj/item/reagent_containers/glass/beaker/large/burn,/obj/item/reagent_containers/glass/beaker/large/brute,/obj/item/reagent_containers/hypospray,/obj/item/spraybottle/cleaner,/turf/simulated/floor{icon_state = "bluewhitecorner"; dir = 8},/area/station/medical/medbay/cloner)
"aZD" = (/obj/disposalpipe/segment{name = "morgue pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/storage/closet/office,/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/cloner)
"aZE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{icon_state = "bluewhite"; dir = 1},/area/station/medical/medbay/cloner)
@@ -2706,16 +2706,16 @@
"bab" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
"bac" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/obj/machinery/portableowl/judgementowl{flash_prob = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/security/main)
"bad" = (/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/disposaloutlet{dir = 4; mailgroup = "security"; message = "Automated parole chute activated."; name = "automated parole chute"},/obj/decal/tile_edge/stripe{icon_state = "xtra_bigstripe-edge2"; dir = 6},/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
-"bae" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 10},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"baf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bae" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 10},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"baf" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bag" = (/obj/table/reinforced/auto,/obj/item/reagent_containers/food/drinks/bottle/vintage{pixel_y = 8},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 4},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"bah" = (/obj/machinery/light,/obj/stool/chair/red{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"bai" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/portable_reclaimer,/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 10},/turf/simulated/floor,/area/station/mining/refinery)
"baj" = (/obj/machinery/manufacturer/mining,/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 6},/turf/simulated/floor,/area/station/mining/refinery)
"bak" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/obj/item/device/radio/intercom/engineering{pixel_x = -28; pixel_y = -3},/turf/simulated/floor,/area/station/mining/refinery)
"bal" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/obj/item/device/radio/intercom/cargo{pixel_x = 29; pixel_y = -3},/turf/simulated/floor,/area/station/mining/refinery)
-"bam" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"ban" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bam" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"ban" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bao" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Mechanics'"; req_access = list(45)},/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/elect)
"bap" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 10},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/elect)
"baq" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/turf/simulated/floor{dir = 5; icon_state = "floor_hazard_corners"},/area/station/engine/elect)
@@ -2727,12 +2727,12 @@
"baw" = (/obj/stool/chair/yellow{anchored = 0; dir = 1},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark/start{name = "Mechanic"},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"bax" = (/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"bay" = (/obj/storage/cart/mechcart,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
-"baz" = (/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/artifact)
-"baA" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/artifact)
-"baB" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer3/terminal/zeta{dir = 2; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"baC" = (/obj/machinery/networked/artifact_console,/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"baD" = (/obj/machinery/disposal/mail{mail_tag = "artlab"; mailgroup = "science"; message = "1"; name = "mail chute-'Artifact Lab'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 1; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 5},/area/station/artifact)
-"baE" = (/obj/machinery/networked/test_apparatus/pitching_machine,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/artifact)
+"baz" = (/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_drive_type = /obj/item/disk/data/tape/artifact_research; setup_spawn_with_tape = 1},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/science/artifact)
+"baA" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 9},/area/station/science/artifact)
+"baB" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer3/terminal/zeta{dir = 2; setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"baC" = (/obj/machinery/networked/artifact_console,/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"baD" = (/obj/machinery/disposal/mail{mail_tag = "artlab"; mailgroup = "science"; message = "1"; name = "mail chute-'Artifact Lab'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 1; name = "mail pipe"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 5},/area/station/science/artifact)
+"baE" = (/obj/machinery/networked/test_apparatus/pitching_machine,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/science/artifact)
"baF" = (/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 5; network = "SS13"; c_tag = "autotag"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/chemistry)
"baG" = (/obj/table/reinforced/auto,/obj/disposalpipe/segment,/obj/item/storage/box/patchbox,/obj/item/storage/box/syringes,/obj/item/storage/box/beakerbox,/obj/item/storage/box/beakerbox,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
"baH" = (/obj/table/reinforced/auto,/obj/machinery/cashreg,/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
@@ -2744,10 +2744,10 @@
"baN" = (/obj/cable{icon_state = "1-2"},/obj/landmark/start{name = "Scientist"},/obj/item/device/radio/beacon,/turf/simulated/floor/engine,/area/station/testchamber)
"baO" = (/obj/machinery/optable,/obj/item/device/healthanalyzer,/turf/simulated/floor/engine,/area/station/testchamber)
"baP" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/engine,/area/station/testchamber)
-"baQ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"baR" = (/obj/machinery/power/apc{areastring = "Toxin Storage"; dir = 1; name = "Toxin Storage APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"baS" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/clothing/head/helmet/bucket/red,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"baT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"baQ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"baR" = (/obj/machinery/power/apc{areastring = "Toxin Storage"; dir = 1; name = "Toxin Storage APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"baS" = (/obj/table/auto,/obj/random_item_spawner/tools,/obj/item/clothing/head/helmet/bucket/red,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"baT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"baU" = (/turf/simulated/wall/auto/gannets,/area/station/medical/morgue)
"baV" = (/obj/disposalpipe/segment{name = "morgue pipe"},/turf/simulated/wall/auto/gannets,/area/station/medical/morgue)
"baW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/gannets/medical{name = "airlock-'Morgue'"; req_access = list(6)},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -2765,8 +2765,8 @@
"bbi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
"bbj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/turf/simulated/floor,/area/station/security/main)
"bbk" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/security/alt{name = "airlock-'Security'"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
-"bbl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bbm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour8;desc=Corporate espionage and criminal misdeeds are a sad fact of life out in deep space. If you see something, say something! Your helpful security team is hard at work keeping your station safe."; freq = 1443; location = "tour7"; name = "tour beacon - security"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bbl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bbm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour8;desc=Corporate espionage and criminal misdeeds are a sad fact of life out in deep space. If you see something, say something! Your helpful security team is hard at work keeping your station safe."; freq = 1443; location = "tour7"; name = "tour beacon - security"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bbn" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/gas)
"bbo" = (/obj/machinery/power/monitor,/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 9},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/engine/gas)
"bbp" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 1},/obj/machinery/power/smes,/turf/simulated/floor,/area/station/engine/gas)
@@ -2774,20 +2774,20 @@
"bbr" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/mining)
"bbs" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/engineering{name = "glass airlock-'Arc Smelter'"; req_access = list(50)},/turf/simulated/floor,/area/station/mining)
"bbt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/engineering{name = "glass airlock-'Arc Smelter'"; req_access = list(50)},/turf/simulated/floor,/area/station/mining)
-"bbu" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bbv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bbw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj1"; mail_tag = "mining"; name = "mining mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/obj/item/device/radio/intercom/cargo{pixel_x = 29; pixel_y = -3},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bbu" = (/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bbv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bbw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj1"; mail_tag = "mining"; name = "mining mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/obj/item/device/radio/intercom/cargo{pixel_x = 29; pixel_y = -3},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bbx" = (/turf/simulated/wall/auto/gannets,/area/station/engine/elect)
"bby" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"bbz" = (/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"bbA" = (/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/storage/cart/mechcart,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
-"bbB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/submachine/cargopad{name = "Artifact Lab Pad"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/artifact)
-"bbC" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/artifact)
-"bbD" = (/obj/stool/chair/office/purple{icon_state = "office_chair_purple"; dir = 1},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"bbE" = (/obj/machinery/networked/storage/scanner{bank_id = "research"},/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"bbF" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/artifact)
-"bbG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/artifact)
-"bbH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/chemistry{name = "glass airlock-'Lab Access'"; req_access = list(33)},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
+"bbB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/submachine/cargopad{name = "Artifact Lab Pad"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/science/artifact)
+"bbC" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/science/artifact)
+"bbD" = (/obj/stool/chair/office/purple{icon_state = "office_chair_purple"; dir = 1},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"bbE" = (/obj/machinery/networked/storage/scanner{bank_id = "research"},/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"bbF" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/science/artifact)
+"bbG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/science/artifact)
+"bbH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/chemistry{name = "glass airlock-'Lab Access'"; req_access = list(33)},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
"bbI" = (/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/chemistry)
"bbJ" = (/obj/table/reinforced/auto,/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/item/paper/book/medical_guide,/obj/item/device/audio_log,/obj/item/audio_tape{pixel_y = 5},/obj/item/audio_tape{pixel_y = 5},/obj/item/paper/book/medical_guide,/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
"bbK" = (/obj/machinery/chem_dispenser,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
@@ -2799,9 +2799,9 @@
"bbQ" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/engine,/area/station/testchamber)
"bbR" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/engine,/area/station/testchamber)
"bbS" = (/obj/machinery/networked/test_apparatus/gas_sensor{setup_tag = "TESTCHAMB"},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/device/audio_log/wall_mounted{anchored = 1; max_lines = 350; mode = 1; name = "Test Chamber Recorder"; pixel_x = 0; pixel_y = -28},/obj/machinery/light,/turf/simulated/floor/engine,/area/station/testchamber)
-"bbT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bbU" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bbV" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bbT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bbU" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/portable_atmospherics/canister/air/large,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bbV" = (/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bbW" = (/obj/disposaloutlet{dir = 4; mailgroup = "medbay"; mailgroup2 = "security"; message = "Delivery alert in Morgue."; name = "Morgue Outlet"},/obj/disposalpipe/trunk{dir = 1; name = "morgue pipe"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"bbX" = (/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"bbY" = (/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 1},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 10},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/small{pixel_y = 32},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -2827,8 +2827,8 @@
"bcs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/security/main)
"bct" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/turf/simulated/floor,/area/station/security/main)
"bcu" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/security/alt{name = "airlock-'Security'"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/main)
-"bcv" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bcw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec_podbay"; location = "sec"; name = "bot navigation beacon"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bcv" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bcw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec_podbay"; location = "sec"; name = "bot navigation beacon"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bcx" = (/obj/machinery/light_switch/west,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair/office/yellow{dir = 1; icon_state = "office_chair_yellow"},/obj/landmark/start{name = "Engineer"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor,/area/station/engine/gas)
"bcy" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor,/area/station/engine/gas)
"bcz" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/noticeboard{pixel_y = 28},/obj/cable{icon_state = "4-8"},/turf/simulated/floor{dir = 1; icon_state = "corner_nwest"},/area/station/engine/gas)
@@ -2843,9 +2843,9 @@
"bcI" = (/obj/machinery/power/apc{dir = 1; name = "Mining APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 1},/obj/machinery/oreaccumulator,/turf/simulated/floor,/area/station/mining)
"bcJ" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{dir = 9; icon_state = "line1"},/turf/simulated/floor,/area/station/mining)
"bcK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch/east,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/mining)
-"bcL" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bcM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bcN" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "cargo"; name = "quartermasters mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bcL" = (/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bcM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bcN" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "cargo"; name = "quartermasters mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bcO" = (/obj/machinery/door/firedoor/border_only,/obj/window/reinforced/north,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/machinery/computer/ordercomp{icon_state = "QMreq"; dir = 8},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/quartermaster/office)
"bcP" = (/obj/machinery/computer/supplycomp,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 9},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/quartermaster/office)
"bcQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/disposal/mail/small{mail_tag = "cargo"; mailgroup = "cargo"; message = "1"; name = "mail chute-'Cargo'"; pixel_y = 32},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/quartermaster/office)
@@ -2855,8 +2855,8 @@
"bcU" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"bcV" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"bcW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
-"bcX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/artifact)
-"bcY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/artifact)
+"bcX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/science/artifact)
+"bcY" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullpurple"},/area/station/science/artifact)
"bcZ" = (/obj/machinery/disposal/mail/small{dir = 4; icon_state = "mailchute"; mail_tag = "chemistry"; mailgroup = "science"; message = "1"; name = "mail chute-'Chemistry'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 8; name = "mail pipe"},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/chemistry)
"bda" = (/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
"bdb" = (/obj/stool/chair/office/purple{icon_state = "office_chair_purple"; dir = 1},/obj/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/station/chemistry)
@@ -2865,7 +2865,7 @@
"bde" = (/turf/simulated/floor{icon_state = "purplewhite"; dir = 4},/area/station/chemistry)
"bdf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Test Chamber'"; req_access = list(33)},/obj/machinery/door/poddoor/blast{autoclose = 0; density = 0; dir = 1; doordir = "right"; icon_state = "bdoorright0"; id = "test_chamber"; layer = 4; name = "Test Chamber Blast Shield"; opacity = 0},/turf/simulated/floor/engine,/area/station/testchamber)
"bdg" = (/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor/engine,/area/station/testchamber)
-"bdh" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bdh" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bdi" = (/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 10},/obj/table/reinforced/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/reagent_containers/syringe,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"bdj" = (/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/obj/machinery/computer3/generic/med_data{icon_state = "datamed"; dir = 4},/obj/machinery/power/data_terminal,/obj/cable,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"bdk" = (/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 10},/obj/landmark/start{name = "Medical Doctor"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -2886,8 +2886,8 @@
"bdz" = (/obj/machinery/computer/security{icon_state = "security"; dir = 4},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/audio_log/wall_mounted{anchored = 1; max_lines = 350; mode = 1; name = "Security Recorder"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor,/area/station/security/main)
"bdA" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair/office/red,/obj/landmark/start{name = "Security Officer"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/security/main)
"bdB" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/obj/machinery/light_switch/east,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/computer3/generic/secure_data{dir = 8; icon_state = "datasec"},/turf/simulated/floor,/area/station/security/main)
-"bdC" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 9},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/security{broadcasting = 1; pixel_x = -28; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bdD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "morgue"; name = "morgue mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bdC" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 9},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/radio/intercom/security{broadcasting = 1; pixel_x = -28; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bdD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "morgue"; name = "morgue mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bdE" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/engineering/alt{name = "airlock-'Engineering'"; req_access = list(44)},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/gas)
"bdF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-8"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor,/area/station/engine/gas)
"bdG" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/engine/gas)
@@ -2912,9 +2912,9 @@
"bdZ" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/mining)
"bea" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor,/area/station/mining)
"beb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Mining'"; req_access = list(50)},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/mining)
-"bec" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bed" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour16;desc=Need some new equipment or supplies for your workplace? Come on down to your local Quartermasters' office! If they ain't got it, you probably don't want it anyways."; freq = 1443; location = "tour15"; name = "tour beacon - qm"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bee" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = null; name = "undeliverable mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bec" = (/obj/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bed" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour16;desc=Need some new equipment or supplies for your workplace? Come on down to your local Quartermasters' office! If they ain't got it, you probably don't want it anyways."; freq = 1443; location = "tour15"; name = "tour beacon - qm"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bee" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = null; name = "undeliverable mail router"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bef" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/machinery/door/window/westright{req_access = list(31)},/obj/window/reinforced/north,/obj/machinery/cashreg,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/quartermaster/office)
"beg" = (/obj/stool/chair/office/yellow{icon_state = "office_chair_yellow"; dir = 8},/obj/landmark/start{name = "Quartermaster"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/quartermaster/office)
"beh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/quartermaster/office)
@@ -2925,19 +2925,19 @@
"bem" = (/obj/machinery/rkit,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"ben" = (/obj/machinery/manufacturer/mechanic,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
"beo" = (/obj/machinery/portable_reclaimer,/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 6},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/elect)
-"bep" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/networked/test_apparatus/heater,/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/artifact)
-"beq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{dir = 1; pixel_x = 0; pixel_y = -20},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"ber" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/box/tapebox,/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"bes" = (/obj/table/reinforced/auto,/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 10; c_tag = "autotag"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/obj/item/device/radio/intercom/science{pixel_y = -28},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"bet" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/obj/machinery/light_switch/south,/obj/machinery/light,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"beu" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/hand_labeler,/obj/item/device/audio_log,/obj/item/device/audio_log,/obj/item/audio_tape{pixel_y = 5},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"bev" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/artifact)
-"bew" = (/obj/machinery/networked/test_apparatus/impact_pad,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/artifact)
+"bep" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/networked/test_apparatus/heater,/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/science/artifact)
+"beq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{dir = 1; pixel_x = 0; pixel_y = -20},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"ber" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/box/tapebox,/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"bes" = (/obj/table/reinforced/auto,/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 10; c_tag = "autotag"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/obj/item/device/radio/intercom/science{pixel_y = -28},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"bet" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/obj/machinery/light_switch/south,/obj/machinery/light,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"beu" = (/obj/table/reinforced/auto,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/hand_labeler,/obj/item/device/audio_log,/obj/item/device/audio_log,/obj/item/audio_tape{pixel_y = 5},/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"bev" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/obj/landmark/artifact,/turf/simulated/floor{icon_state = "purplewhite"; dir = 1},/area/station/science/artifact)
+"bew" = (/obj/machinery/networked/test_apparatus/impact_pad,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/science/artifact)
"bex" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 8},/area/station/chemistry)
"bey" = (/turf/simulated/floor{icon_state = "purplewhitecorner"},/area/station/chemistry)
"bez" = (/obj/machinery/light,/obj/submachine/chem_extractor{dir = 8},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/chemistry)
"beA" = (/obj/machinery/vending/monkey,/obj/machinery/door_control{id = "test_chamber"; name = "Test Chamber Blast Shield Control"; pixel_x = 22},/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/chemistry)
-"beB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{areastring = "Research Sector"; dir = 1; name = "Research Sector APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"beB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/power/apc{areastring = "Research Sector"; dir = 1; name = "Research Sector APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"beC" = (/obj/machinery/optable,/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"beD" = (/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 6},/obj/table/reinforced/auto,/obj/item/surgical_spoon,/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/scalpel,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/mask/surgical_shield,/obj/item/device/healthanalyzer,/obj/machinery/alarm{dir = 1; pixel_x = 0; pixel_y = -20},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"beE" = (/obj/morgue,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -2961,9 +2961,9 @@
"beW" = (/obj/table/reinforced/auto,/obj/decal/tile_edge/line/red{icon_state = "line1"},/obj/machinery/light,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/paper_bin,/obj/item/device/audio_log,/obj/item/audio_tape,/obj/item/audio_tape,/obj/item/device/prisoner_scanner,/turf/simulated/floor,/area/station/security/main)
"beX" = (/obj/table/reinforced/auto,/obj/decal/tile_edge/line/red{icon_state = "line2"; dir = 6},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/printer{print_id = "Security"},/turf/simulated/floor,/area/station/security/main)
"beY" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/security/main)
-"beZ" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/decal/poster/wallsign/poster_y4nt{pixel_x = -32},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bfa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour15;desc=Thanks to advances in plasma research, your C-class station has been equipped with a new Thermo-Electric Generator engine! Singularity accidents are a thing of the past! Who ever thought it was a good idea to keep a black hole inside a space station anyways? Yeesh!"; freq = 1443; location = "tour14"; name = "tour beacon - engine"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bfb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"beZ" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/decal/poster/wallsign/poster_y4nt{pixel_x = -32},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bfa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/navbeacon{codes_txt = "tour;next_tour=tour15;desc=Thanks to advances in plasma research, your C-class station has been equipped with a new Thermo-Electric Generator engine! Singularity accidents are a thing of the past! Who ever thought it was a good idea to keep a black hole inside a space station anyways? Yeesh!"; freq = 1443; location = "tour14"; name = "tour beacon - engine"},/obj/disposalpipe/segment{name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bfb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bfc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering/alt{name = "airlock-'Engineering'"; req_access = list(44)},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/gas)
"bfd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor,/area/station/engine/gas)
"bfe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/gas)
@@ -2987,9 +2987,9 @@
"bfw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/mining)
"bfx" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor,/area/station/mining)
"bfy" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Mining'"; req_access = list(50)},/turf/simulated/floor{icon_state = "dark"},/area/station/mining)
-"bfz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bfA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=engine"; location = "qm"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bfB" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bfz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bfA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=engine"; location = "qm"; name = "bot navigation beacon"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bfB" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bfC" = (/obj/machinery/door/firedoor/border_only,/obj/table/reinforced/auto,/obj/window/reinforced/south,/obj/window/reinforced/west,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/stamp/random,/turf/simulated/floor{icon_state = "dark"},/area/station/quartermaster/office)
"bfD" = (/obj/storage/closet/office,/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 10},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/quartermaster/office)
"bfE" = (/obj/decal/tile_edge/line/yellow{icon_state = "line1"},/obj/item/device/radio/intercom/cargo{pixel_x = 0; pixel_y = -28},/turf/simulated/floor{icon_state = "fullcaution"},/area/station/quartermaster/office)
@@ -3002,8 +3002,8 @@
"bfL" = (/obj/storage/crate{desc = "Wow! Crate may or may not still contain bottles."; name = "Bottles in a Crate"},/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/fueltank,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/obj/item/reagent_containers/food/drinks/bottle,/turf/simulated/floor{icon_state = "purplewhitecorner"},/area/station/chemistry)
"bfM" = (/obj/stool/chair/office/purple{icon_state = "office_chair_purple"; dir = 4},/obj/landmark/start{name = "Scientist"},/obj/machinery/alarm{dir = 1; pixel_x = 0; pixel_y = -20},/turf/simulated/floor{icon_state = "purplewhite"},/area/station/chemistry)
"bfN" = (/obj/machinery/chem_dispenser,/obj/item/reagent_containers/glass/beaker/large,/obj/item/device/radio/intercom/science{pixel_x = 29; pixel_y = -3},/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/chemistry)
-"bfO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bfP" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bfO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bfP" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bfQ" = (/obj/morgue,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"bfR" = (/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
"bfS" = (/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 6},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/medical/morgue)
@@ -3023,8 +3023,8 @@
"bgg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/disposalpipe/segment,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor,/area/station/security/main)
"bgh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/disposalpipe/segment{name = "brig pipe"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/security/armory)
"bgi" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/security/armory)
-"bgj" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bgk" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "brig"; name = "brig mail router"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/obj/item/device/radio/intercom/engineering{pixel_x = 29; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bgj" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bgk" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "brig"; name = "brig mail router"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/obj/item/device/radio/intercom/engineering{pixel_x = 29; pixel_y = -3},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bgl" = (/obj/machinery/manufacturer/gas,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 8},/turf/simulated/floor,/area/station/engine/gas)
"bgm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/engine/gas)
"bgn" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "corner_west"; dir = 2},/area/station/engine/gas)
@@ -3044,9 +3044,9 @@
"bgB" = (/obj/workbench,/obj/decal/tile_edge/line/yellow{icon_state = "line1"},/obj/cable{icon_state = "1-8"},/turf/simulated/floor{dir = 9; icon_state = "floor_hazard_corners"},/area/station/mining)
"bgC" = (/obj/table/reinforced/auto,/obj/item/hand_labeler,/obj/random_item_spawner/desk_stuff/g_clip_bin_pen,/obj/decal/tile_edge/line/yellow{icon_state = "line1"},/obj/item/storage/toolbox/emergency,/turf/simulated/floor,/area/station/mining)
"bgD" = (/obj/machinery/conveyor_switch{id = "mining2qm"},/obj/machinery/door_control{id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; pixel_x = 24; pixel_y = 8},/obj/machinery/door_control{id = "mining2qm_sec_door"; name = "QM - Mining Security Doors"; pixel_x = 24; pixel_y = -8},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 6},/turf/simulated/floor,/area/station/mining)
-"bgE" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/decal/tile_edge/stripe/extra_big,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{dir = 9; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bgF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/stripe/extra_big,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bgG" = (/obj/decal/tile_edge/stripe/extra_big,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bgE" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/decal/tile_edge/stripe/extra_big,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment,/obj/decal/tile_edge/line/yellow{dir = 9; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bgF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/stripe/extra_big,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bgG" = (/obj/decal/tile_edge/stripe/extra_big,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bgH" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/gannets,/area/station/quartermaster/office)
"bgI" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/engineering{name = "glass airlock-'Quartermaster's Office'"; req_access = list(31)},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "caution"; dir = 1},/area/station/quartermaster/office)
"bgJ" = (/obj/vehicle/tug,/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/office)
@@ -3060,8 +3060,8 @@
"bgR" = (/turf/simulated/floor{icon_state = "purplewhite"; dir = 10},/area/station/chemistry)
"bgS" = (/obj/machinery/chem_dispenser,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor{icon_state = "purplewhite"},/area/station/chemistry)
"bgT" = (/obj/machinery/light,/obj/machinery/chem_master{dir = 8},/turf/simulated/floor{icon_state = "purplewhite"; dir = 6},/area/station/chemistry)
-"bgU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bgV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"bgU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/camera{c_tag = "autotag"; dir = 0; name = "autoname - SS13"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bgV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"bgW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/medical{name = "airlock-'Morgue'"; req_access = list(6)},/turf/simulated/floor/plating/random,/area/station/medical/morgue)
"bgX" = (/obj/landmark{name = "monkeyspawn_normal"},/obj/overlay{anchored = 1; icon = 'icons/misc/beach2.dmi'; icon_state = "palm1"; layer = 10; name = "palm tree"},/turf/simulated/floor/grass/random,/area/station/medical/research)
"bgY" = (/obj/landmark/start{name = "Geneticist"},/turf/simulated/floor/grass/random,/area/station/medical/research)
@@ -3080,7 +3080,7 @@
"bhl" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/communications,/obj/machinery/power/data_terminal,/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"bhm" = (/obj/decal/tile_edge/line/red{icon_state = "line2"; dir = 5},/obj/storage/secure/closet/security/armory,/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"bhn" = (/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/security/armory)
-"bho" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/hallway/primary/port)
+"bho" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/hallway/primary/west)
"bhp" = (/obj/table/reinforced/auto,/obj/item/storage/toolbox/electrical,/obj/item/storage/toolbox/mechanical,/obj/decal/tile_edge/line/black{icon_state = "line2"; dir = 10},/obj/random_item_spawner/tools_w_igloves{max_amt2spawn = 14; min_amt2spawn = 6},/obj/item/storage/box/cablesbox,/obj/machinery/light,/turf/simulated/floor,/area/station/engine/gas)
"bhq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/turf/simulated/floor,/area/station/engine/gas)
"bhr" = (/obj/machinery/power/apc{dir = 2; name = "Engineering Gas Storage APC"; operating = 1; pixel_y = -24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/turf/simulated/floor,/area/station/engine/gas)
@@ -3108,9 +3108,9 @@
"bhN" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/storage/crate,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/mining)
"bhO" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/storage/crate,/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/mining)
"bhP" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/plasticflaps,/obj/machinery/door/poddoor/blast/single{doordir = "noblasts"; icon_state = "bdoornoblasts1"; id = "mining2qm_sec_door"; layer = 4; name = "Mining Security Door"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/mining)
-"bhQ" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/starboard)
-"bhR" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/starboard)
-"bhS" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/starboard)
+"bhQ" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/east)
+"bhR" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/east)
+"bhS" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/hallway/primary/east)
"bhT" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/plasticflaps,/obj/machinery/door/poddoor/blast/single{doordir = "noblasts"; icon_state = "bdoornoblasts1"; id = "mining2qm_sec_door"; layer = 4; name = "QM Security Door"},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/quartermaster/office)
"bhU" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/storage/cart,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/quartermaster/office)
"bhV" = (/obj/machinery/conveyor{dir = 4; id = "mining2qm"},/obj/machinery/light{dir = 1},/obj/storage/cart,/turf/simulated/floor{icon_state = "caution_ns"},/area/station/quartermaster/office)
@@ -3130,9 +3130,9 @@
"bij" = (/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 5},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 10},/turf/simulated/floor,/area/station/quartermaster/office)
"bik" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/conveyor{dir = 1; id = "cargo_in"},/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
"bil" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/chemistry{name = "airlock-'Chemistry'"; req_access = list(33)},/turf/simulated/floor/plating/random,/area/station/chemistry)
-"bim" = (/obj/machinery/power/apc{areastring = "Chemistry"; dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bin" = (/obj/machinery/light/small,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Morgue"; dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bio" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/item/device/radio/intercom/medical{pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bim" = (/obj/machinery/power/apc{areastring = "Chemistry"; dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bin" = (/obj/machinery/light/small,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Morgue"; dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bio" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/item/device/radio/intercom/medical{pixel_x = 0; pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bip" = (/obj/storage/secure/closet/animal,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/grass/random,/area/station/medical/research)
"biq" = (/obj/machinery/camera{name = "autoname - SS13"; icon_state = "camera"; dir = 10; c_tag = "autotag"},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/grass/random,/area/station/medical/research)
"bir" = (/obj/machinery/vending/monkey,/turf/simulated/floor/grass/random,/area/station/medical/research)
@@ -3150,9 +3150,9 @@
"biD" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"biE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Head of Security"},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"biF" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/obj/storage/secure/closet/security/armory,/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
-"biG" = (/obj/machinery/vending/cigarette,/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"biH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"; name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"biI" = (/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"biG" = (/obj/machinery/vending/cigarette,/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/obj/disposalpipe/segment{dir = 4; name = "food pipe"; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"biH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"; name = "food pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"biI" = (/obj/machinery/camera{c_tag = "autotag"; dir = 8; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"biJ" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/engineering)
"biK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/engineering{name = "glass airlock-'Engine Control Room'"; req_access = list(44)},/turf/simulated/floor,/area/station/engine/engineering)
"biL" = (/obj/disposalpipe/segment,/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/engineering)
@@ -3162,9 +3162,9 @@
"biP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
"biQ" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/binary/pump{dir = 1; frequency = 1225; icon_state = "intact_on"; id = "Cold Loop Purge Pump"; on = 1; target_pressure = 2000},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/glass/engineering/alt{name = "glass airlock-'Engine Room'"; req_access = list(44)},/turf/simulated/floor{icon_state = "caution_ns"},/area/station/engine/core)
"biR" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/core)
-"biS" = (/obj/decal/tile_edge/stripe/extra_big{icon_state = "xtra_bigstripe-edge"; dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"biT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/stripe/extra_big{icon_state = "xtra_bigstripe-edge"; dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"biU" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/decal/tile_edge/stripe/extra_big{icon_state = "xtra_bigstripe-edge"; dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"biS" = (/obj/decal/tile_edge/stripe/extra_big{icon_state = "xtra_bigstripe-edge"; dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"biT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/tile_edge/stripe/extra_big{icon_state = "xtra_bigstripe-edge"; dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"biU" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/decal/tile_edge/stripe/extra_big{icon_state = "xtra_bigstripe-edge"; dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; opacity = 0},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"biV" = (/obj/machinery/conveyor_switch{id = "mining2qm"},/obj/machinery/door_control{id = "mining2qm_door"; name = "QM - Mining Transfer Shutters"; pixel_x = -24; pixel_y = -8},/obj/machinery/door_control{id = "mining2qm_sec_door"; name = "QM - Mining Security Doors"; pixel_x = -24; pixel_y = 8},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 9},/turf/simulated/floor,/area/station/quartermaster/office)
"biW" = (/obj/table/reinforced/auto,/obj/item/hand_labeler,/obj/random_item_spawner/desk_stuff/g_clip_bin_pen,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 1},/obj/item/storage/toolbox/emergency,/turf/simulated/floor,/area/station/quartermaster/office)
"biX" = (/obj/disposalpipe/segment,/obj/workbench,/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 1},/turf/simulated/floor,/area/station/quartermaster/office)
@@ -3181,11 +3181,11 @@
"bji" = (/obj/machinery/conveyor{id = "cargo_out"},/turf/simulated/floor{icon_state = "corner_neast"; dir = 2},/area/station/quartermaster/office)
"bjj" = (/obj/machinery/door_control{id = "cargo_out_inner"; name = "Outbound Cargo - Inner Door"; pixel_x = -8; pixel_y = -24},/obj/machinery/door_control{id = "cargo_in_inner"; name = "Inbound Cargo - Inner Door"; pixel_x = 8; pixel_y = -24},/obj/machinery/door_control{id = "qm_dock_out"; name = "Outbound Cargo - Outer Door"; pixel_x = -8; pixel_y = -40},/obj/machinery/door_control{id = "qm_dock"; name = "Inbound Cargo - Outer Door"; pixel_x = 8; pixel_y = -40},/obj/decal/tile_edge/line/yellow{icon_state = "line2"},/turf/simulated/floor,/area/station/quartermaster/office)
"bjk" = (/obj/machinery/conveyor{dir = 1; id = "cargo_in"},/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
-"bjl" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bjm" = (/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bjn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bjo" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Artifact Lab"; dir = 1; name = "Artifact Lab APC"; pixel_y = 24},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bjp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"bjl" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bjm" = (/obj/item/storage/wall/emergency{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bjn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bjo" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{areastring = "Artifact Lab"; dir = 1; name = "Artifact Lab APC"; pixel_y = 24},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bjp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"bjq" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 9},/turf/space,/area/station/shield_zone)
"bjr" = (/obj/lattice{icon_state = "lattice-dir"; dir = 10},/turf/space,/area/station/shield_zone)
"bjs" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/medical/research)
@@ -3194,8 +3194,8 @@
"bjv" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 8},/obj/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/tank/air,/obj/item/tank/air,/obj/item/tank/air,/obj/item/chem_grenade/pepper,/obj/item/chem_grenade/pepper,/obj/item/chem_grenade/pepper,/obj/item/device/radio/intercom/security{pixel_x = -28; pixel_y = -3},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"bjw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"bjx" = (/obj/decal/tile_edge/line/red{icon_state = "line1"; dir = 4},/obj/rack,/obj/item/shipcomponent/mainweapon/laser,/obj/item/shipcomponent/mainweapon/laser,/obj/item/shipcomponent/mainweapon/laser,/obj/item/storage/box/iv_box,/obj/iv_stand,/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
-"bjy" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bjz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bjy" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bjz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bjA" = (/obj/machinery/light_switch/north,/obj/storage/closet/welding_supply,/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "yellowcorner"},/area/station/engine/engineering)
"bjB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "yellow"},/area/station/engine/engineering)
"bjC" = (/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/machinery/disposal/mail/small{mail_tag = "engineering"; mailgroup = "engineer"; message = "1"; name = "mail chute-'Engineering'"; pixel_y = 32},/turf/simulated/floor{icon_state = "yellow"},/area/station/engine/engineering)
@@ -3218,9 +3218,9 @@
"bjT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 6},/obj/lattice,/turf/space,/area/station/engine/core)
"bjU" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 4},/obj/lattice{icon_state = "lattice-dir"; dir = 4},/turf/space,/area/station/engine/core)
"bjV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/obj/lattice,/turf/space,/area/station/engine/core)
-"bjW" = (/obj/disposalpipe/junction{dir = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bjX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bjY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bjW" = (/obj/disposalpipe/junction{dir = 1},/obj/machinery/camera{c_tag = "autotag"; dir = 4; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bjX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bjY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bjZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Cargo'"; req_access = list(31)},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/quartermaster/office)
"bka" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line2"; dir = 10},/turf/simulated/floor,/area/station/quartermaster/office)
"bkb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/decal/tile_edge/line/yellow{icon_state = "line1"},/turf/simulated/floor,/area/station/quartermaster/office)
@@ -3234,7 +3234,7 @@
"bkj" = (/obj/machinery/conveyor{id = "cargo_out"},/obj/plasticflaps,/obj/machinery/door/poddoor/blast/single{doordir = "noblasts"; icon_state = "bdoornoblasts1"; id = "cargo_out_inner"; layer = 4; name = "Outbound Cargo Belt"},/turf/simulated/floor,/area/station/quartermaster/office)
"bkk" = (/obj/machinery/conveyor{dir = 1; id = "cargo_in"},/obj/plasticflaps,/obj/machinery/door/poddoor/blast/single{doordir = "noblasts"; icon_state = "bdoornoblasts1"; id = "cargo_in_inner"; layer = 4; name = "Inbound Cargo Belt"},/turf/simulated/floor,/area/station/quartermaster/office)
"bkl" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 5},/turf/space,/area/station/shield_zone)
-"bkm" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bkm" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bkn" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/security{name = "airlock-'Port Pod Bay'"},/turf/simulated/floor/plating/random,/area/station/hangar/sec)
"bko" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_east"; dir = 8},/area/station/hangar/sec)
"bkp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "Stairs_alone"; name = "stairs"},/area/station/hangar/sec)
@@ -3250,8 +3250,8 @@
"bkz" = (/obj/decal/tile_edge/line/red{icon_state = "line2"; dir = 10},/obj/table/reinforced/auto,/obj/machinery/power/apc{areastring = null; dir = 8; name = "Armory APC"; noalerts = 1; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/recharger,/obj/item/device/radio/electropack,/obj/item/device/radio/electropack,/obj/item/device/radio/signaler,/obj/item/device/radio/signaler,/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"bkA" = (/obj/decal/tile_edge/line/red{icon_state = "line1"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
"bkB" = (/obj/decal/tile_edge/line/red{icon_state = "line2"; dir = 6},/obj/table/reinforced/auto,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/gun/kinetic/dart_rifle,/obj/item/ammo/bullets/tranq_darts,/obj/item/ammo/bullets/tranq_darts,/obj/item/ammo/bullets/tranq_darts/anti_mutant,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/obj/item/reagent_containers/syringe/haloperidol,/turf/simulated/floor{icon_state = "dark"},/area/station/security/armory)
-"bkC" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
-"bkD" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "engineering"; name = "engineering mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bkC" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
+"bkD" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj1"; mail_tag = "engineering"; name = "engineering mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bkE" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/engineering)
"bkF" = (/obj/storage/secure/closet/engineering/engineer,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"bkG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
@@ -3273,8 +3273,8 @@
"bkW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/obj/lattice,/turf/space,/area/station/engine/core)
"bkX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/obj/lattice{icon_state = "lattice-dir"; dir = 4},/turf/space,/area/station/engine/core)
"bkY" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 1},/obj/lattice,/turf/space,/area/station/engine/core)
-"bkZ" = (/obj/disposalpipe/segment,/obj/machinery/vending/cola/red,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bla" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bkZ" = (/obj/disposalpipe/segment,/obj/machinery/vending/cola/red,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bla" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/yellow{dir = 5; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"blb" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/teleporter)
"blc" = (/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 1},/obj/decal/tile_edge/line/yellow{icon_state = "line1"; dir = 8},/turf/simulated/floor{dir = 6; icon_state = "floor_hazard_corners"},/area/station/quartermaster/office)
"bld" = (/obj/landmark/start{name = "Quartermaster"},/turf/simulated/floor{dir = 2; icon_state = "caution_south"},/area/station/quartermaster/office)
@@ -3292,8 +3292,8 @@
"blp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/tile_edge/line/yellow{dir = 1; icon_state = "line2"},/turf/simulated/floor,/area/station/quartermaster/office)
"blq" = (/obj/machinery/conveyor{dir = 1; id = "cargo_in"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
"blr" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Cargo'"; req_access = list(31,40,50); req_only_one_required = 1},/turf/simulated/floor/plating/random,/area/station/quartermaster/office)
-"bls" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"blt" = (/obj/machinery/power/apc{areastring = "Secure Dock"; dir = 4; name = "Secure Dock APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bls" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"blt" = (/obj/machinery/power/apc{areastring = "Secure Dock"; dir = 4; name = "Secure Dock APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"blu" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/hangar/sec)
"blv" = (/turf/simulated/floor{icon_state = "caution_east"; dir = 8},/area/station/hangar/sec)
"blw" = (/obj/table/reinforced/auto,/obj/decal/tile_edge/line/black{icon_state = "line1"; dir = 2},/obj/item/shipcomponent/mainweapon/taser,/obj/item/shipcomponent/mainweapon/taser,/obj/item/shipcomponent/secondary_system/tractor_beam,/obj/item/shipcomponent/secondary_system/tractor_beam,/turf/simulated/floor{icon_state = "dark"},/area/station/hangar/sec)
@@ -3308,7 +3308,7 @@
"blF" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/door/airlock/gannets/glass/command/alt{aiControlDisabled = 1; name = "glass airlock-'Armory'"; req_access = list(37)},/turf/simulated/floor{icon_state = "fullred"},/area/station/security/armory)
"blG" = (/obj/wingrille_spawn/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window_blinds{pixel_y = 0},/turf/simulated/floor/plating/random,/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"blH" = (/turf/simulated/wall/auto/reinforced/gannets,/area/station/security/hos{icon_state = "HOS"; workplace = 1})
-"blI" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"blI" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"blJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/storage/crate/furnacefuel,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"blK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
"blL" = (/obj/rack,/obj/item/clothing/shoes/magnetic,/obj/item/clothing/suit/space/engineer,/obj/item/tank/jetpack,/obj/item/clothing/head/helmet/space/engineer,/obj/item/clothing/mask/breath,/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
@@ -3331,8 +3331,8 @@
"bmc" = (/obj/machinery/atmospherics/valve{dir = 4; name = "cold loop bypass outlet valve"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
"bmd" = (/obj/machinery/atmospherics/pipe/simple/junction{icon_state = "intact"; dir = 4},/obj/lattice,/turf/space,/area/station/engine/core)
"bme" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 9},/obj/lattice{icon_state = "lattice-dir"; dir = 4},/turf/space,/area/station/engine/core)
-"bmf" = (/obj/disposalpipe/segment,/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bmg" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "pod_star"; name = "starboard pod bay mail router"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bmf" = (/obj/disposalpipe/segment,/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bmg" = (/obj/disposalpipe/switch_junction{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-sj2"; mail_tag = "pod_star"; name = "starboard pod bay mail router"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bmh" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/teleporter)
"bmi" = (/obj/decal/cleanable/cobweb,/obj/machinery/computer/teleporter,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/blue{dir = 9; icon_state = "line2"},/obj/machinery/alarm{pixel_y = 20},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"bmj" = (/obj/machinery/teleport/portal_generator,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
@@ -3352,7 +3352,7 @@
"bmx" = (/obj/machinery/launcher_loader/south,/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
"bmy" = (/obj/storage/crate,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/light,/obj/decal/tile_edge/line/yellow{icon_state = "line2"},/obj/item/storage/pill_bottle/cyberpunk,/obj/item/clothing/head/merchant_hat,/obj/item/football,/turf/simulated/floor,/area/station/quartermaster/office)
"bmz" = (/obj/machinery/conveyor{dir = 1; id = "cargo_in"},/obj/machinery/launcher_loader/north,/turf/simulated/floor{icon_state = "caution_we"},/area/station/quartermaster/office)
-"bmA" = (/obj/machinery/light/small,/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bmA" = (/obj/machinery/light/small,/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bmB" = (/obj/machinery/vehicle/miniputt/nanoputt,/turf/simulated/floor/engine,/area/station/hangar/sec)
"bmC" = (/turf/simulated/floor/engine,/area/station/hangar/sec)
"bmD" = (/turf/simulated/floor{icon_state = "caution_west"},/area/station/hangar/sec)
@@ -3365,7 +3365,7 @@
"bmK" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/table/wood/auto,/obj/machinery/recharger,/obj/item/device/camera_viewer,/obj/item/device/prisoner_scanner,/obj/item/device/detective_scanner,/obj/item/device/radio/headset/security,/obj/item/device/radio/headset/security,/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"bmL" = (/obj/storage/secure/filing_cabinet,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"bmM" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets,/area/station/security/hos{icon_state = "HOS"; workplace = 1})
-"bmN" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "pod_port"; name = "port pod bay mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bmN" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "pod_port"; name = "port pod bay mail router"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bmO" = (/obj/storage/crate/furnacefuel,/obj/item/device/radio/intercom/engineering{pixel_x = -28; pixel_y = -3},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"bmP" = (/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
"bmQ" = (/obj/machinery/power/data_terminal,/obj/machinery/power/monitor/smes{dir = 8; name = "Engine Output Monitoring"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/engineering)
@@ -3385,8 +3385,8 @@
"bne" = (/obj/machinery/atmospherics/valve{name = "cold loop bypass valve"},/turf/simulated/floor/engine,/area/station/engine/core)
"bnf" = (/obj/wingrille_spawn/reinforced_crystal/full,/turf/simulated/floor/plating/random,/area/station/engine/core)
"bng" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 9},/obj/lattice,/turf/space,/area/station/engine/core)
-"bnh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bni" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/blue{dir = 4; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"bnh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/window/cubicle{icon_state = "cubicle"; dir = 2},/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bni" = (/obj/disposalpipe/segment{dir = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/blue{dir = 4; icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"bnj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/command/alt{name = "airlock-'Teleporter'"; req_access = list(17)},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"bnk" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"bnl" = (/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
@@ -3413,7 +3413,7 @@
"bnG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair/red{anchored = 0},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"bnH" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"bnI" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/disposal/small{dir = 8; icon_state = "disposal"},/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
-"bnJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bnJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bnK" = (/obj/machinery/power/apc{dir = 8; name = "Engineering APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/storage/secure/closet/engineering/electrical,/obj/item/clothing/suit/rad,/obj/item/clothing/head/rad_hood,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"bnL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/device/radio/beacon,/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
"bnM" = (/obj/table/reinforced/auto,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/machinery/cell_charger,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/cell/supercell/charged,/obj/item/storage/firstaid/fire{pixel_y = 4},/obj/item/storage/firstaid/toxin,/obj/item/paper/engine,/obj/item/chem_grenade/firefighting,/obj/item/chem_grenade/firefighting,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/engineering)
@@ -3430,8 +3430,8 @@
"bnX" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/obj/machinery/meter,/turf/simulated/floor/engine{dir = 9; icon_state = "engine_caution_corners2"},/area/station/engine/core)
"bnY" = (/obj/machinery/atmospherics/valve{dir = 4; name = "cold loop outlet valve"},/turf/simulated/floor/engine,/area/station/engine/core)
"bnZ" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 10},/turf/simulated/floor/engine,/area/station/engine/core)
-"boa" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bob" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 5},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"boa" = (/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/hallway/primary/east)
+"bob" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/decal/tile_edge/line/blue{icon_state = "line1"; dir = 5},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"boc" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/small{dir = 4; icon_state = "disposal"},/obj/decal/tile_edge/line/blue{dir = 10; icon_state = "line2"},/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"bod" = (/obj/table/auto,/obj/item/hand_tele,/obj/decal/tile_edge/line/blue{icon_state = "line1"},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
"boe" = (/obj/decal/tile_edge/line/blue{dir = 6; icon_state = "line2"},/turf/simulated/floor{icon_state = "dark"},/area/station/teleporter)
@@ -3455,7 +3455,7 @@
"bow" = (/obj/table/wood/auto,/obj/item/clipboard,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/fancy,/obj/item/stamp/random,/obj/item/reagent_containers/food/drinks/mug/random_color,/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"box" = (/obj/table/wood/auto,/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/personal,/obj/cable,/obj/cable{icon_state = "1-2"},/obj/item/paper/book/space_law,/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"boy" = (/obj/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"},/obj/machinery/alarm{dir = 8; pixel_x = 20; pixel_y = 0},/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
-"boz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"boz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 4; pixel_x = -20; pixel_y = 0},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"boA" = (/obj/table/reinforced/auto,/obj/random_item_spawner/tools_w_igloves{max_amt2spawn = 14; min_amt2spawn = 6},/obj/item/device/audio_log/wall_mounted{anchored = 1; max_lines = 350; mode = 1; name = "Engineering Recorder"; pixel_x = -25; pixel_y = 0},/obj/item/storage/toolbox/mechanical,/obj/item/sheet/glass/reinforced/fullstack,/obj/item/sheet/glass/fullstack,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"boB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
"boC" = (/obj/machinery/power/data_terminal,/obj/machinery/shield_generator,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor{icon_state = "fullyellow"},/area/station/engine/engineering)
@@ -3472,14 +3472,14 @@
"boN" = (/obj/machinery/atmospherics/binary/pump{dir = 4; frequency = 1225; icon_state = "intact_on"; id = "Cold Loop Gas Supply 2"; on = 1; target_pressure = 1000},/turf/simulated/floor/engine,/area/station/engine/core)
"boO" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 8; level = 2},/obj/machinery/meter,/turf/simulated/floor/engine,/area/station/engine/core)
"boP" = (/obj/machinery/atmospherics/valve{dir = 4; name = "cold loop bypass inlet valve"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
-"boQ" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
+"boQ" = (/obj/window/cubicle{icon_state = "cubicle"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
"boR" = (/obj/machinery/door_control{id = "pod_port"; name = "Hangar Door Control"; pixel_x = 8; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/engine,/area/station/hangar/sec)
"boS" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/plasticflaps{layer = 3},/obj/machinery/door/airlock/gannets/security,/turf/simulated/floor/plating/random,/area/station/security/main)
"boT" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/blind_switch/area/west{pixel_y = -6},/obj/machinery/light_switch/west{pixel_y = 6},/obj/item/device/radio/intercom/brig{pixel_y = -28},/obj/machinery/computer3/generic/secure_data{dir = 4; icon_state = "datasec"},/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"boU" = (/obj/stool/chair/comfy/red{icon_state = "chair_comfy-red"; dir = 1},/obj/landmark/start{name = "Head of Security"},/obj/item/device/radio/intercom/security{pixel_x = 0; pixel_y = -28},/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"boV" = (/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"boW" = (/obj/cable{icon_state = "1-2"},/obj/machinery/disposal/mail/small{dir = 8; icon_state = "mailchute"; mail_tag = "hos"; mailgroup = "command"; mailgroup2 = "security"; message = "1"; name = "mail chute-'Head of Security'"},/obj/disposalpipe/trunk{desc = "An underfloor mail pipe."; dir = 4; name = "mail pipe"},/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
-"boX" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "hos"; name = "Head of Security mail router"},/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"boX" = (/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "hos"; name = "Head of Security mail router"},/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"boY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/table/reinforced/auto,/obj/item/storage/toolbox/electrical,/obj/random_item_spawner/tools_w_igloves{max_amt2spawn = 14; min_amt2spawn = 6},/obj/item/sheet/steel/reinforced/fullstack,/obj/item/sheet/steel/fullstack,/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"boZ" = (/obj/table/reinforced/auto,/obj/machinery/recharger,/obj/item/device/analyzer,/obj/item/device/t_scanner,/obj/item/device/flashlight,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/engineering)
"bpa" = (/obj/machinery/atmospherics/pipe/simple/insulated,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/engine{icon_state = "engine_caution_west"},/area/station/engine/core)
@@ -3493,12 +3493,12 @@
"bpi" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/engine,/area/station/engine/core)
"bpj" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/engine{dir = 6; icon_state = "engine_caution_corners2"},/area/station/engine/core)
"bpk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/engine{icon_state = "engine_caution_ns"},/area/station/engine/core)
-"bpl" = (/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bpm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Teleporter"; dir = 1; name = "Teleporter APC"; pixel_y = 24},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bpn" = (/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bpo" = (/obj/machinery/power/apc{areastring = "Mechanic's Lab"; dir = 1; name = "Mechanic's Lab APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bpp" = (/obj/machinery/power/apc{areastring = "Quartermaster's Office"; dir = 1; name = "Quartermaster's Office APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bpq" = (/obj/machinery/power/apc{areastring = "Cargo Dock"; dir = 1; name = "Cargo Dock APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"bpl" = (/obj/table/round/auto,/obj/item/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/item/crowbar,/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bpm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{areastring = "Teleporter"; dir = 1; name = "Teleporter APC"; pixel_y = 24},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bpn" = (/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bpo" = (/obj/machinery/power/apc{areastring = "Mechanic's Lab"; dir = 1; name = "Mechanic's Lab APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bpp" = (/obj/machinery/power/apc{areastring = "Quartermaster's Office"; dir = 1; name = "Quartermaster's Office APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/storage/closet/welding_supply,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bpq" = (/obj/machinery/power/apc{areastring = "Cargo Dock"; dir = 1; name = "Cargo Dock APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"bpr" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Starboard Pod Bay'"; req_access = list(31,40,50); req_only_one_required = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/hangar/qm)
"bps" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "caution_east"; dir = 8},/area/station/hangar/qm)
"bpt" = (/obj/machinery/door_control{id = "pod_star"; name = "Hangar Door Control"; pixel_x = -8; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/engine,/area/station/hangar/qm)
@@ -3512,7 +3512,7 @@
"bpB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/random,/area/station/security/beepsky)
"bpC" = (/obj/storage/secure/closet/command/hos,/obj/item/device/radio/intercom/bridge{broadcasting = 0; pixel_y = -28},/obj/machinery/light,/turf/simulated/floor{icon_state = "whitecheck"; dir = 5},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
"bpD" = (/obj/machinery/computer/security{icon_state = "security"; dir = 8},/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{icon_state = "redchecker"; dir = 4},/area/station/security/hos{icon_state = "HOS"; workplace = 1})
-"bpE" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/shrub,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/port)
+"bpE" = (/obj/machinery/light,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/shrub,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/west)
"bpF" = (/obj/storage/secure/closet/engineering/engineer,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/station/engine/engineering)
"bpG" = (/obj/machinery/power/data_terminal,/obj/machinery/computer3/terminal/zeta{dir = 8; setup_os_string = "ZETA_MAINFRAME"},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/station/engine/engineering)
"bpH" = (/obj/cable,/obj/wingrille_spawn/reinforced_crystal/full,/obj/machinery/door/poddoor/blast{density = 0; dir = 1; doordir = "right"; icon_state = "bdoorright0"; id = "engineshield"; layer = 4; name = "Control Room Heat Shield"; opacity = 0},/turf/simulated/floor/plating/random,/area/station/engine/core)
@@ -3533,11 +3533,11 @@
"bpW" = (/obj/machinery/light,/turf/simulated/floor/engine,/area/station/engine/core)
"bpX" = (/turf/simulated/floor/engine{dir = 5; icon_state = "engine_caution_corners2"},/area/station/engine/core)
"bpY" = (/turf/simulated/floor/engine{icon_state = "engine_caution_north"},/area/station/engine/core)
-"bpZ" = (/obj/shrub,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bqa" = (/obj/machinery/light,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/starboard)
-"bqb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bqc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bqd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"bpZ" = (/obj/shrub,/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bqa" = (/obj/machinery/light,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/hallway/primary/east)
+"bqb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bqc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bqd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"bqe" = (/obj/machinery/manufacturer/general,/turf/simulated/floor{dir = 5; icon_state = "floor_hazard_corners"},/area/station/hangar/qm)
"bqf" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 4; doordir = "left"; icon_state = "bdoorleft1"; id = "pod_star"; layer = 4; name = "Starboard Pod Hangar"},/turf/simulated/floor/engine{icon_state = "engine_caution_south"},/area/station/hangar/qm)
"bqg" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 4; icon_state = "bdoormid1"; id = "pod_star"; layer = 4; name = "Starboard Pod Hangar"},/turf/simulated/floor/engine{icon_state = "engine_caution_south"},/area/station/hangar/qm)
@@ -3549,8 +3549,8 @@
"bqm" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/security/beepsky)
"bqn" = (/obj/machinery/power/apc{areastring = "Beepsky's House"; dir = 1; name = "Beepsky's House APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/security/beepsky)
"bqo" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light/small{icon_state = "bulb1"; dir = 4},/turf/simulated/floor/plating/random,/area/station/security/beepsky)
-"bqp" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bqq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/maintenance/port)
+"bqp" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/gannets/maintenance{name = "airlock-'Maintenance'"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bqq" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/maintenance/west)
"bqr" = (/obj/machinery/light_switch/south,/obj/reagent_dispensers/fueltank,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/station/engine/engineering)
"bqs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "1-4"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/engine/engineering)
"bqt" = (/obj/reagent_dispensers/watertank/fountain,/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"},/obj/cable{icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/station/engine/engineering)
@@ -3569,10 +3569,10 @@
"bqG" = (/obj/machinery/atmospherics/valve{dir = 4; name = "gas mix supply valve"},/turf/simulated/floor/engine,/area/station/engine/core)
"bqH" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 9},/turf/simulated/floor/engine,/area/station/engine/core)
"bqI" = (/obj/machinery/light/emergency{icon_state = "ebulb1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/valve{name = "freezer valve"},/turf/simulated/floor/engine{dir = 5; icon_state = "engine_caution_corners2"},/area/station/engine/core)
-"bqJ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/maintenance/starboard)
-"bqK" = (/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bqL" = (/obj/window/reinforced/south,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bqM" = (/obj/storage/crate{desc = "Whoa! What will they think of next?"; name = "Boxes in a Box"},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/window/reinforced/south,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"bqJ" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/wall/auto/gannets,/area/station/maintenance/east)
+"bqK" = (/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bqL" = (/obj/window/reinforced/south,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bqM" = (/obj/storage/crate{desc = "Whoa! What will they think of next?"; name = "Boxes in a Box"},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/window/reinforced/south,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"bqN" = (/obj/lattice{icon_state = "lattice-dir-b"; dir = 5},/obj/machinery/camera{c_tag = "autotag"; dir = 6; icon_state = "camera"; name = "autoname - SS13"; network = "SS13"},/turf/space,/area/station/shield_zone)
"bqO" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-L"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/security/beepsky)
"bqP" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-M"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/security/beepsky)
@@ -3580,9 +3580,9 @@
"bqR" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/security/beepsky)
"bqS" = (/obj/window/reinforced/south,/obj/machinery/power/apc{areastring = "Head of Security's Office"; dir = 1; name = "Head of Security's Office APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/security/beepsky)
"bqT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/plasticflaps{layer = 3},/obj/machinery/door/airlock/gannets/security,/turf/simulated/floor/plating/random,/area/station/security/beepsky)
-"bqU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bqV" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bqW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/storage/wall/emergency{pixel_y = 32},/obj/machinery/power/apc{areastring = "Port Primary Hallway"; dir = 4; name = "Port Primary Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bqU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/wall/fire{pixel_y = 32},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bqV" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bqW" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/obj/item/storage/wall/emergency{pixel_y = 32},/obj/machinery/power/apc{areastring = "Port Primary Hallway"; dir = 4; name = "Port Primary Hallway APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bqX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Port SMES'"; req_access = list(44)},/turf/simulated/floor/plating/random,/area/station/engine/engineering)
"bqY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
"bqZ" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/turf/simulated/floor/engine,/area/station/engine/core)
@@ -3597,27 +3597,27 @@
"bri" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; dir = 1; level = 2},/turf/simulated/floor/engine,/area/station/engine/core)
"brj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/insulated/cold{dir = 9},/turf/simulated/floor/engine,/area/station/engine/core)
"brk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Starboard SMES'"; req_access = list(44)},/turf/simulated/floor/plating/random,/area/station/engine/core)
-"brl" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brm" = (/obj/machinery/power/monitor,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/device/radio/intercom/engineering{pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brn" = (/obj/decal/cleanable/cobweb2,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bro" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Starboard Primary Hallway"; dir = 1; name = "Starboard Primary Hallway APC"; pixel_y = 24},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brr" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brs" = (/obj/window/reinforced/south,/obj/machinery/bot/floorbot{icon = 'icons/obj/toolbots.dmi'},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brt" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-L"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/starboard)
-"bru" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-M"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/starboard)
-"brv" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-R"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/starboard)
+"brl" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brm" = (/obj/machinery/power/monitor,/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/device/radio/intercom/engineering{pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brn" = (/obj/decal/cleanable/cobweb2,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bro" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/head/helmet/hardhat,/obj/item/tank/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{areastring = "Starboard Primary Hallway"; dir = 1; name = "Starboard Primary Hallway APC"; pixel_y = 24},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brr" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brs" = (/obj/window/reinforced/south,/obj/machinery/bot/floorbot{icon = 'icons/obj/toolbots.dmi'},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brt" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-L"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/east)
+"bru" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-M"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/east)
+"brv" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-R"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/east)
"brw" = (/obj/machinery/shuttle/engine/propulsion{dir = 2; icon_state = "alt_propulsion"},/turf/space,/area)
-"brx" = (/obj/window/reinforced/south,/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bry" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brz" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering/alt{name = "airlock-'Port SMES'"; req_access = list(44)},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brC" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/item/device/radio/intercom/engineering{pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"brF" = (/obj/machinery/power/terminal{dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"brx" = (/obj/window/reinforced/south,/obj/machinery/light/small{icon_state = "bulb1"; dir = 8},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bry" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brz" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering/alt{name = "airlock-'Port SMES'"; req_access = list(44)},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brC" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/item/device/radio/intercom/engineering{pixel_y = 22},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"brF" = (/obj/machinery/power/terminal{dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"brG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
"brH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering{name = "airlock-'Port SMES'"; req_access = list(44)},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating/random,/area/station/engine/core)
"brI" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 4},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
@@ -3631,23 +3631,23 @@
"brQ" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 1},/turf/simulated/floor/engine,/area/station/engine/core)
"brR" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
"brS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
-"brT" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brU" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/smes,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brV" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/critter/nicespider{name = "spider"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brW" = (/obj/stool/chair/yellow{anchored = 0; dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering/alt{name = "airlock-'Starboard SMES'"; req_access = list(44)},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"brZ" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bsa" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bsb" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-L"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/port)
-"bsc" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-M"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/port)
-"bsd" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-R"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/port)
-"bse" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsf" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsg" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair/yellow{anchored = 0; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsh" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"brT" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brU" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/smes,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brV" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/critter/nicespider{name = "spider"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brW" = (/obj/stool/chair/yellow{anchored = 0; dir = 1},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/gannets/engineering/alt{name = "airlock-'Starboard SMES'"; req_access = list(44)},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"brZ" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bsa" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 8; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bsb" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-L"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/west)
+"bsc" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-M"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/west)
+"bsd" = (/obj/machinery/shuttle/engine/heater{icon_state = "alt_heater-R"},/obj/window/reinforced/north,/turf/simulated/floor/plating/airless,/area/station/maintenance/west)
+"bse" = (/obj/window/reinforced/south,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsf" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsg" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair/yellow{anchored = 0; dir = 1},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsh" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 2; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bsk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating/random,/area/station/engine/core)
"bsl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/random,/area/station/engine/core)
"bsm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/insulated,/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
@@ -3657,12 +3657,12 @@
"bsq" = (/obj/machinery/networked/test_apparatus/gas_sensor{setup_tag = "ENGINE"},/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 6},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/engine/vacuum,/area/station/engine/core)
"bsr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine/vacuum{icon_state = "engine_caution_east"},/area/station/engine/core)
"bss" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
-"bst" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/decal/cleanable/cobweb,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bsu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bsv" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bsw" = (/obj/window/reinforced/south,/obj/cable{icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/rack,/obj/item/clothing/shoes/magnetic,/obj/item/clothing/suit/space/engineer,/obj/item/tank/jetpack,/obj/item/clothing/head/helmet/space/engineer,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsx" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/port)
-"bsy" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/maintenance/port)
+"bst" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/decal/cleanable/cobweb,/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-c"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bsu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bsv" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bsw" = (/obj/window/reinforced/south,/obj/cable{icon_state = "1-4"},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 1; icon_state = "pipe-c"; name = "mail pipe"},/obj/rack,/obj/item/clothing/shoes/magnetic,/obj/item/clothing/suit/space/engineer,/obj/item/tank/jetpack,/obj/item/clothing/head/helmet/space/engineer,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsx" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/floor/plating/random,/area/station/maintenance/west)
+"bsy" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/landmark/artifact,/turf/simulated/floor/plating/random,/area/station/maintenance/west)
"bsz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/engine/core)
"bsA" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 10},/obj/decal/poster/wallsign/space{pixel_x = 32},/turf/simulated/floor/plating/random,/area/station/engine/core)
"bsB" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
@@ -3671,8 +3671,8 @@
"bsE" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine/vacuum{icon_state = "engine_caution_east"},/area/station/engine/core)
"bsF" = (/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/decal/poster/wallsign/space{pixel_x = -32},/turf/simulated/floor/plating/random,/area/station/engine/core)
"bsG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating/random,/area/station/engine/core)
-"bsH" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/glowstick,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
-"bsI" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/reagent_containers/food/drinks/bottle/fancy_beer,/turf/simulated/floor/plating/random,/area/station/maintenance/starboard)
+"bsH" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/device/glowstick,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
+"bsI" = (/obj/window/reinforced/south,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{desc = "An underfloor mail pipe."; dir = 4; icon_state = "pipe-s"; name = "mail pipe"},/obj/item/reagent_containers/food/drinks/bottle/fancy_beer,/turf/simulated/floor/plating/random,/area/station/maintenance/east)
"bsJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/auto/reinforced/gannets,/area/station/engine/core)
"bsK" = (/obj/machinery/atmospherics/pipe/simple/insulated{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating/random,/area/station/engine/core)
"bsL" = (/obj/machinery/atmospherics/pipe/simple/junction{icon_state = "intact"; dir = 4},/turf/simulated/wall/auto/reinforced/gannets{explosion_resistance = 20; name = "very reinforced wall"},/area/station/engine/core)
diff --git a/maps/halloween.dmm b/maps/halloween.dmm
index b3db38d..3512529 100644
--- a/maps/halloween.dmm
+++ b/maps/halloween.dmm
@@ -192,8 +192,8 @@
"adJ" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/storage/firstaid/regular,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"adK" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"adL" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/vent{dir = 8},/obj/landmark/halloween,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"adM" = (/turf/simulated/wall,/area/station/maintenance/fore)
-"adN" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"adM" = (/turf/simulated/wall,/area/station/maintenance/north)
+"adN" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"adO" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor,/area/station/science/lab)
"adP" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/science/lab)
"adQ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/science/lab)
@@ -211,7 +211,7 @@
"aec" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aed" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/light,/obj/landmark{name = "peststart"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aee" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/medical/research)
-"aef" = (/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aef" = (/turf/simulated/floor/plating,/area/station/maintenance/north)
"aeg" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/mob/living/carbon/human/monkey,/turf/simulated/floor,/area/station/science/lab)
"aeh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/science/lab)
"aei" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/mob/living/carbon/human/monkey,/turf/simulated/floor,/area/station/science/lab)
@@ -240,8 +240,8 @@
"aeF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southright{name = "Med Research"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aeG" = (/obj/securearea{desc = "No smoking"; icon_state = "nosmoking"; layer = 2.5; name = "Sign"; tag = "icon-nosmoking"},/turf/simulated/wall/r_wall,/area/station/medical/research)
"aeH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/medical/research)
-"aeI" = (/turf/simulated/wall/r_wall,/area/station/maintenance/fore)
-"aeJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fore)
+"aeI" = (/turf/simulated/wall/r_wall,/area/station/maintenance/north)
+"aeJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/north)
"aeK" = (/turf/simulated/wall/r_wall,/area/station/science/lab)
"aeL" = (/obj/machinery/door/poddoor{id = "launcher"; name = "Mass Driver Shutter"},/turf/simulated/floor/plating,/area/station/science/lab)
"aeM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/mob/living/carbon/human/monkey,/turf/simulated/floor,/area/station/science/lab)
@@ -253,22 +253,22 @@
"aeS" = (/obj/machinery/chem_master,/turf/simulated/floor{icon_state = "white"},/area/station/science/lab)
"aeT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"aeU" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
-"aeV" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aeW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aeX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aeY" = (/obj/machinery/atmospherics/retrofilter{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aeZ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "Genetics Research Atmospherics Access"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afa" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afb" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/fore)
-"afc" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/fore)
-"afd" = (/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afe" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aff" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afg" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/power/solar_control{id = "foresolar"; name = "Fore Solar Control"; track = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/obj/machinery/camera{c_tag = "North Solar Array Controls"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afi" = (/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afk" = (/obj/landmark/start{name = "Engineer"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aeV" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aeW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aeX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aeY" = (/obj/machinery/atmospherics/retrofilter{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aeZ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "Genetics Research Atmospherics Access"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afa" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afb" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/north)
+"afc" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/north)
+"afd" = (/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afe" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aff" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afg" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/power/solar_control{id = "foresolar"; name = "Fore Solar Control"; track = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/obj/machinery/camera{c_tag = "North Solar Array Controls"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afi" = (/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afj" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afk" = (/obj/landmark/start{name = "Engineer"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"afl" = (/turf/simulated/wall/r_wall,/area/station/quartermaster)
"afm" = (/turf/space,/area{requires_power = 1; sd_lighting = 1})
"afn" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating,/area/station/science/lab)
@@ -280,33 +280,33 @@
"aft" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/lab)
"afu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/chem_dispenser,/turf/simulated/floor{icon_state = "white"},/area/station/science/lab)
"afv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/science/lab)
-"afw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"afF" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"afw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"afF" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"afG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"afH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
-"afI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afM" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afN" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/fore)
-"afO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/fore)
-"afP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"afW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"afI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afM" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afN" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/north)
+"afO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/maintenance/north)
+"afP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"afW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
"afX" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor,/area/station/quartermaster)
"afY" = (/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor,/area/station/quartermaster)
"afZ" = (/obj/crate/internals,/turf/simulated/floor,/area/station/quartermaster)
@@ -323,16 +323,16 @@
"agk" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/screwdriver,/turf/simulated/floor{icon_state = "white"},/area/station/science/lab)
"agl" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/obj/secure_closet/medical1,/turf/simulated/floor{icon_state = "white"},/area/station/science/lab)
"agm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/science/lab)
-"agn" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ago" = (/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"agp" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"agq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"agr" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ags" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"agt" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"agu" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"agv" = (/turf/simulated/wall,/area/station/hallway/primary/fore)
-"agw" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/fore)
+"agn" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ago" = (/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"agp" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"agq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"agr" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ags" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"agt" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"agu" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
+"agv" = (/turf/simulated/wall,/area/station/hallway/primary/north)
+"agw" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/north)
"agx" = (/turf/simulated/wall/r_wall,/area/station/medical/medbay)
"agy" = (/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; name = "BIOHAZARD"; tag = "icon-bio"},/turf/simulated/wall/r_wall,/area/station/medical/medbay)
"agz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/medical/medbay)
@@ -342,8 +342,8 @@
"agD" = (/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"agE" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"agF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/medical/robotics)
-"agG" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"agH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"agG" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"agH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"agI" = (/obj/item/sheet/r_metal{amount = 10},/obj/item/sheet/r_metal{amount = 10},/turf/simulated/floor,/area/station/quartermaster)
"agJ" = (/obj/item/sheet/metal{amount = 20},/obj/item/sheet/metal{amount = 20},/turf/simulated/floor,/area/station/quartermaster)
"agK" = (/obj/crate/medical,/turf/simulated/floor,/area/station/quartermaster)
@@ -368,9 +368,9 @@
"ahd" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/science/storage)
"ahe" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"ahf" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
-"ahg" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ahh" = (/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ahi" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/device/healthanalyzer,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"ahg" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor,/area/station/hallway/primary/north)
+"ahh" = (/turf/simulated/floor,/area/station/hallway/primary/north)
+"ahi" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/device/healthanalyzer,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"ahj" = (/obj/stool/bed,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"ahk" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/secure_closet/medical1,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"ahl" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/obj/item/crowbar,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -392,7 +392,7 @@
"ahB" = (/obj/machinery/computer/operating,/turf/simulated/floor,/area/station/medical/robotics)
"ahC" = (/obj/disposalpipe/trunk,/obj/machinery/disposal,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/medical/robotics)
"ahD" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/scalpel,/turf/simulated/floor,/area/station/medical/robotics)
-"ahE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"ahE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"ahF" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster)
"ahG" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/quartermaster)
"ahH" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/quartermaster)
@@ -415,11 +415,11 @@
"ahY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"ahZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"aia" = (/turf/space,/area/station/science/storage)
-"aib" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
+"aib" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
"aic" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"aid" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
-"aie" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aif" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/device/flashlight,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"aie" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aif" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/device/flashlight,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"aig" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aih" = (/obj/machinery/door/window/eastright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aii" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -433,7 +433,7 @@
"aiq" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/medical/robotics)
"air" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/circular_saw,/turf/simulated/floor,/area/station/medical/robotics)
"ais" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/medical/robotics)
-"ait" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"ait" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/north)
"aiu" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/quartermaster)
"aiv" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/quartermaster)
"aiw" = (/obj/machinery/camera{c_tag = "Cargo Bay West"},/turf/simulated/floor,/area/station/quartermaster)
@@ -461,9 +461,9 @@
"aiS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"aiT" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"aiU" = (/obj/machinery/camera{c_tag = "Chapel South"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"aiV" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window{tag = "icon-right (EAST)"; icon_state = "right"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aiW" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Toxins"; location = "Chapel"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aiX" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/landmark{name = "blobstart"},/obj/item/medical/bruise_pack,/obj/item/medical/bruise_pack,/obj/item/medical/bruise_pack,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"aiV" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/window{tag = "icon-right (EAST)"; icon_state = "right"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aiW" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Toxins"; location = "Chapel"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aiX" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/landmark{name = "blobstart"},/obj/item/medical/bruise_pack,/obj/item/medical/bruise_pack,/obj/item/medical/bruise_pack,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"aiY" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/table,/obj/bedsheetbin,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aiZ" = (/obj/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aja" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -481,8 +481,8 @@
"ajm" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/medical/robotics)
"ajn" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/storage/firstaid/regular,/turf/simulated/floor,/area/station/medical/robotics)
"ajo" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/medical/robotics)
-"ajp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"ajq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"ajp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"ajq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/north)
"ajr" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster)
"ajs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/quartermaster)
"ajt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor,/area/station/quartermaster)
@@ -511,8 +511,8 @@
"ajQ" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/camera{c_tag = "Chemical Lab Storage"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"ajR" = (/obj/securearea{desc = ""; icon_state = "fire"; name = "Warning: Flammable Materials"; tag = "icon-fire"},/turf/simulated/wall/r_wall,/area/station/science/storage)
"ajS" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/wall,/area/station/chapel/main)
-"ajT" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"ajU" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/medical/ointment,/obj/item/medical/ointment,/obj/item/medical/ointment,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"ajT" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
+"ajU" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/medical/ointment,/obj/item/medical/ointment,/obj/item/medical/ointment,/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"ajV" = (/turf/simulated/wall,/area/station/medical/medbay)
"ajW" = (/obj/securearea{desc = "A warning sign which reads 'Biohazard'"; icon_state = "bio"; layer = 2.5; name = "BIOHAZARD"; tag = "icon-bio"},/turf/simulated/wall,/area/station/medical/medbay)
"ajX" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -523,8 +523,8 @@
"akc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/medical/robotics)
"akd" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"ake" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/medical/robotics)
-"akf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"akg" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"akf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"akg" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"akh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/window/southleft{name = "Cargo Office"; req_access_txt = "31"},/turf/simulated/floor,/area/station/quartermaster)
"aki" = (/obj/machinery/door/window/southright{name = "Cargo Office"; req_access_txt = "31"},/turf/simulated/floor,/area/station/quartermaster)
"akj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/quartermaster)
@@ -542,12 +542,12 @@
"akv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"akw" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/door_control{id = "mixvent2"; name = "Mixing Room Vent Control"; pixel_x = 31; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"akx" = (/obj/machinery/door/poddoor{id = "mixvent2"; name = "Mixer Room Vent 2"},/turf/simulated/floor/engine/vacuum,/area/station/science/storage)
-"aky" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akz" = (/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"akA" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"akB" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"akC" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"akD" = (/obj/machinery/camera{c_tag = "Engine Storage"; dir = 8},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"aky" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akz" = (/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"akA" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
+"akB" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"akC" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"akD" = (/obj/machinery/camera{c_tag = "Engine Storage"; dir = 8},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"akE" = (/obj/secure_closet/medical1,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"akF" = (/obj/item/extinguisher,/obj/item/device/radio/intercom{name = "Station Intercom (Medical)"; pixel_y = 27},/obj/machinery/camera{c_tag = "Medical Office"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"akG" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/med_data,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -559,9 +559,9 @@
"akM" = (/obj/machinery/light,/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/medical/robotics)
"akN" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor,/area/station/medical/robotics)
"akO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance"; req_access_txt = "12;29"},/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/medical/robotics)
-"akP" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/camera{c_tag = "Medical Atmospherics Access"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"akQ" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"akR" = (/obj/decal/cleanable/cobweb2,/obj/machinery/camera{c_tag = "North Maint Hallway East"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"akP" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/camera{c_tag = "Medical Atmospherics Access"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"akQ" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"akR" = (/obj/decal/cleanable/cobweb2,/obj/machinery/camera{c_tag = "North Maint Hallway East"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"akS" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/quartermaster)
"akT" = (/obj/machinery/door/window/eastleft{name = "Cargo Office"; req_access_txt = "31"},/turf/simulated/floor,/area/station/quartermaster)
"akU" = (/obj/table/reinforced,/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/quartermaster)
@@ -582,13 +582,13 @@
"alj" = (/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/science/storage)
"alk" = (/turf/simulated/floor/engine/vacuum,/area/station/science/storage)
"all" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/science/storage)
-"alm" = (/obj/machinery/camera{c_tag = "Northeast Maint Hallway South"; dir = 10; icon_state = "camera"; tag = "icon-camera (SOUTHWEST)"},/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"aln" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"alp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"alq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"alr" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
-"als" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/eastright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"alm" = (/obj/machinery/camera{c_tag = "Northeast Maint Hallway South"; dir = 10; icon_state = "camera"; tag = "icon-camera (SOUTHWEST)"},/obj/machinery/atmospherics/retrofilter{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"aln" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"alp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/north)
+"alq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"alr" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
+"als" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/eastright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor,/area/station/hallway/primary/north)
"alt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"alu" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"alv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -599,10 +599,10 @@
"alA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"alB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"alC" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"alD" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"alD" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"alE" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/medical/robotics)
-"alF" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"alG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"alF" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"alG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/north)
"alH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/door_control{desc = "A remote control switch for the cargo bay door."; id = "cargosto"; name = "Storage Door Control"; pixel_x = -26},/turf/simulated/floor,/area/station/quartermaster)
"alI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/conveyor_switch{id = "cargo"},/turf/simulated/floor,/area/station/quartermaster)
"alJ" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/pen,/obj/item/stamp,/turf/simulated/floor,/area/station/quartermaster)
@@ -627,12 +627,12 @@
"amc" = (/obj/machinery/door/airlock/medical{name = "Toxins Research"; req_access_txt = "7"},/turf/simulated/floor{icon_state = "white"},/area/station/science/storage)
"amd" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 2; external_pressure_bound = 0; icon_state = "in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/station/science/storage)
"ame" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/wall,/area/station/science/storage)
-"amf" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"amg" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amh" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"ami" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fpmaint)
-"amj" = (/turf/simulated/wall,/area/station/maintenance/fpmaint)
-"amk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"amf" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"amg" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amh" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"ami" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NWmaint)
+"amj" = (/turf/simulated/wall,/area/station/maintenance/NWmaint)
+"amk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"aml" = (/obj/table/reinforced{dir = 9; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/machinery/light/lamp,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"amm" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"amn" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -646,10 +646,10 @@
"amv" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"amw" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/bottle,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"amx" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/reagent_containers/glass/bottle/antitoxin,/obj/item/reagent_containers/glass/bottle/antitoxin,/obj/item/reagent_containers/dropper,/obj/machinery/camera{c_tag = "Medical East"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"amy" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"amz" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"amA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"amB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"amy" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"amz" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"amA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"amB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"amC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/quartermaster)
"amD" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/conveyor{id = "cargo"},/turf/simulated/floor,/area/station/quartermaster)
"amE" = (/obj/machinery/conveyor{id = "cargo"},/turf/simulated/floor,/area/station/quartermaster)
@@ -677,18 +677,18 @@
"ana" = (/turf/simulated/wall/r_wall,/area/station/storage/secure)
"anb" = (/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/storage/secure)
"anc" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/storage/secure)
-"and" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"and" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"ane" = (/obj/table/reinforced{dir = 8; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir"},/obj/item/storage/lglo_kit,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"anf" = (/obj/stool/chair,/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"ang" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"anh" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"ani" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"anj" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"ank" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"anl" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"anm" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"ann" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"ano" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/under/color/blue,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"ank" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"anl" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"anm" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"ann" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"ano" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/shoes/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/under/color/blue,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/north)
"anp" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/quartermaster)
"anq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/conveyor{id = "cargo"},/turf/simulated/floor,/area/station/quartermaster)
"anr" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/conveyor{id = "cargo"},/turf/simulated/floor,/area/station/quartermaster)
@@ -733,8 +733,8 @@
"aoe" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aof" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aog" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/medical/medbay)
-"aoh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/vent{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aoi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "North Hallway South"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aoh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/vent{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aoi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "North Hallway South"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aoj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/storage/emergency2)
"aok" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/storage/emergency2)
"aol" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/storage/emergency2)
@@ -849,7 +849,7 @@
"aqq" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor{icon_state = "white"},/area/station/storage/secure)
"aqr" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/engine/vacuum,/area/station/storage/secure)
"aqs" = (/obj/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump{dir = 2; external_pressure_bound = 0; icon_state = "in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/station/storage/secure)
-"aqt" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/fore)
+"aqt" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-blue (EAST)"; icon_state = "blue"; dir = 4},/area/station/hallway/primary/north)
"aqu" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aqv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aqw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -901,11 +901,11 @@
"arq" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/storage/secure)
"arr" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/storage/secure)
"ars" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/storage/secure)
-"art" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/port)
-"aru" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"arv" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"arw" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"arx" = (/turf/simulated/wall,/area/station/hallway/primary/port)
+"art" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/west)
+"aru" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"arv" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"arw" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"arx" = (/turf/simulated/wall,/area/station/hallway/primary/west)
"ary" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/medical/medbay)
"arz" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/medbay)
"arA" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/medbay)
@@ -915,7 +915,7 @@
"arE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/disposalpipe/segment,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/medbay)
"arF" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/medical/medbay)
"arG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/medical/medbay)
-"arH" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"arH" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
"arI" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency2)
"arJ" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/storage/emergency2)
"arK" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/storage/emergency2)
@@ -951,34 +951,34 @@
"aso" = (/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor,/area/station/maintenance/storage)
"asp" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/hallway/secondary/exit)
"asq" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"asr" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/obj/item/device/flashlight{desc = "The spookiest!"; icon = 'halloween.dmi'; item_state = "pumpkin"; name = "Jack-o-lantern"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"ass" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor,/area/station/hallway/primary/port)
-"ast" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/device/healthanalyzer,/turf/simulated/floor,/area/station/hallway/primary/port)
-"asu" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/wirecutters,/turf/simulated/floor,/area/station/hallway/primary/port)
-"asv" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "West Hallway North"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"asw" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-bluecorner (EAST)"; icon_state = "bluecorner"; dir = 4},/area/station/hallway/primary/fore)
-"asy" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asz" = (/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asA" = (/obj/disposalpipe/junction{tag = "icon-pipe-y (EAST)"; icon_state = "pipe-y"; dir = 4},/obj/machinery/camera{c_tag = "North Hallway Central"},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/landmark{name = "kudzustart"},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asD" = (/obj/disposalpipe/segment{dir = 4},/obj/joeq/spooky{pixel_y = 31},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asE" = (/obj/disposalpipe/segment{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asF" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/fore)
-"asH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asI" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asJ" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asK" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asL" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"asO" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"asP" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"asQ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"asR" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"asS" = (/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"asr" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/obj/item/device/flashlight{desc = "The spookiest!"; icon = 'halloween.dmi'; item_state = "pumpkin"; name = "Jack-o-lantern"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"ass" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor,/area/station/hallway/primary/west)
+"ast" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/device/healthanalyzer,/turf/simulated/floor,/area/station/hallway/primary/west)
+"asu" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/wirecutters,/turf/simulated/floor,/area/station/hallway/primary/west)
+"asv" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "West Hallway North"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"asw" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-bluecorner (EAST)"; icon_state = "bluecorner"; dir = 4},/area/station/hallway/primary/north)
+"asy" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asz" = (/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asA" = (/obj/disposalpipe/junction{tag = "icon-pipe-y (EAST)"; icon_state = "pipe-y"; dir = 4},/obj/machinery/camera{c_tag = "North Hallway Central"},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asB" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/landmark{name = "kudzustart"},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asD" = (/obj/disposalpipe/segment{dir = 4},/obj/joeq/spooky{pixel_y = 31},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asE" = (/obj/disposalpipe/segment{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asF" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asG" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/station/hallway/primary/north)
+"asH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asI" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asJ" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asK" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asL" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asM" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"asN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"asO" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"asP" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/east)
+"asQ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"asR" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"asS" = (/turf/simulated/floor,/area/station/hallway/primary/east)
"asT" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/eastright{name = "Waste Disposal"; req_access_txt = "26;12"},/turf/simulated/floor,/area/station/maintenance/disposal)
"asU" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor,/area/station/maintenance/disposal)
"asV" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/maintenance/disposal)
@@ -1001,21 +1001,21 @@
"atm" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/storage/lightbox,/obj/item/storage/lightbox,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor,/area/station/maintenance/storage)
"atn" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/maintenance/storage)
"ato" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/maintenance/storage)
-"atp" = (/turf/simulated/floor,/area/station/hallway/primary/port)
-"atq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"atr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"ats" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"att" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atu" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aty" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atz" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"atA" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"atB" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"atC" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"atD" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"atp" = (/turf/simulated/floor,/area/station/hallway/primary/west)
+"atq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"atr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"ats" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"att" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atu" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atx" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aty" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atz" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"atA" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"atB" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"atC" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"atD" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/east)
"atE" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/disposal)
"atF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/wall,/area/station/maintenance/disposal)
"atG" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/disposal)
@@ -1037,33 +1037,33 @@
"atW" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"atX" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"atY" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"atZ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aua" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aub" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
-"auc" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/port)
-"aud" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/port)
-"aue" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"auf" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"aug" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"auh" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"aui" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"auj" = (/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"auk" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"aul" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"aum" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/fore)
-"aun" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/starboard)
-"auo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/starboard)
-"aup" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/starboard)
-"auq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/starboard)
-"aur" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/starboard)
-"aus" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"; tag = "icon-yellowcorner (WEST)"},/area/station/hallway/primary/starboard)
-"aut" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"auu" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "East Hallway North"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"auv" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"auw" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"aux" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/retrofilter{dir = 4; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"auy" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"auz" = (/turf/simulated/wall,/area/station/maintenance/fsmaint)
+"atZ" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aua" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aub" = (/obj/disposalpipe/junction{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
+"auc" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/west)
+"aud" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/west)
+"aue" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"auf" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"aug" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"auh" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"aui" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"auj" = (/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"auk" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"aul" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"aum" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/north)
+"aun" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/east)
+"auo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/east)
+"aup" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/east)
+"auq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/east)
+"aur" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/hallway/primary/east)
+"aus" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "yellowcorner"; tag = "icon-yellowcorner (WEST)"},/area/station/hallway/primary/east)
+"aut" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"auu" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "East Hallway North"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"auv" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/east)
+"auw" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"aux" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/retrofilter{dir = 4; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"auy" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"auz" = (/turf/simulated/wall,/area/station/maintenance/NEmaint)
"auA" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/simulated/floor/plating,/area/station/bridge)
"auB" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/turf/simulated/floor/plating,/area/station/bridge)
"auC" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 4; invisibility = 0; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/simulated/floor/plating,/area/station/bridge)
@@ -1079,28 +1079,28 @@
"auM" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"auN" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/station/hallway/secondary/exit)
"auO" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/secondary/exit)
-"auP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"auQ" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"auR" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"auS" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
-"auT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"auU" = (/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"auP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"auQ" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"auR" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
+"auS" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
+"auT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/east)
+"auU" = (/turf/simulated/wall,/area/station/hallway/primary/east)
"auV" = (/turf/simulated/wall,/area/station/storage/tools)
"auW" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/storage/tools)
"auX" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/storage/tools)
"auY" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/storage/tools)
"auZ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
"ava" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/storage/tools)
-"avb" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/starboard)
-"avc" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"avd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"ave" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avf" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avg" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avh" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avi" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"avj" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"avk" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/fsmaint)
+"avb" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/east)
+"avc" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"avd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"ave" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avf" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avg" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avh" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avi" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"avj" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"avk" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/NEmaint)
"avl" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/lattice,/turf/space,/area)
"avm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/space,/area)
"avn" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/space,/area)
@@ -1123,8 +1123,8 @@
"avE" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor,/area/station/maintenance/storage)
"avF" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/secondary/exit)
"avG" = (/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/turf/simulated/floor,/area/station/teleporter)
-"avH" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"avI" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
+"avH" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"avI" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
"avJ" = (/turf/simulated/wall,/area/mining/miningoutpost{name = "Engine Walls"})
"avK" = (/turf/simulated/wall/r_wall,/area/mining/miningoutpost{name = "Engine Walls"})
"avL" = (/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
@@ -1141,14 +1141,14 @@
"avW" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/clothing/glasses/meson,/obj/item/crowbar,/obj/item/device/t_scanner,/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/storage/tools)
"avX" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/clothing/glasses/meson,/obj/item/crowbar,/obj/item/device/t_scanner,/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/storage/tools)
"avY" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
-"avZ" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"awa" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"awb" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"awc" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"awd" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"awe" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"awf" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor,/area/station/maintenance/fsmaint)
-"awg" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/fsmaint)
+"avZ" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"awa" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"awb" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"awc" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"awd" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"awe" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"awf" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor,/area/station/maintenance/NEmaint)
+"awg" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/maintenance/NEmaint)
"awh" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/obj/lattice,/turf/space,/area)
"awi" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/space,/area)
"awj" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/light/lamp,/turf/simulated/floor,/area/station/bridge)
@@ -1171,10 +1171,10 @@
"awA" = (/turf/simulated/floor,/area/station/teleporter)
"awB" = (/obj/machinery/camera{c_tag = "Teleporter Room"},/turf/simulated/floor,/area/station/teleporter)
"awC" = (/obj/table,/turf/simulated/floor,/area/station/teleporter)
-"awD" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"awE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"awF" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"awG" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"awD" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"awE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"awF" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"awG" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"awH" = (/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
"awI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
"awJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
@@ -1190,11 +1190,11 @@
"awT" = (/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor,/area/station/storage/tools)
"awU" = (/turf/simulated/floor,/area/station/storage/tools)
"awV" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/storage/tools)
-"awW" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"awX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"awY" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"awZ" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"axa" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/station/maintenance/fsmaint)
+"awW" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"awX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"awY" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"awZ" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"axa" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/station/maintenance/NEmaint)
"axb" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/crew_quarters/courtroom)
"axc" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/crew_quarters/courtroom)
"axd" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/obj/lattice,/turf/space,/area)
@@ -1222,7 +1222,7 @@
"axz" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/teleporter)
"axA" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/teleporter)
"axB" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/obj/landmark/halloween,/turf/simulated/floor,/area/station/teleporter)
-"axC" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"axC" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"axD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
"axE" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Engine Solar Control"},/turf/simulated/floor,/area/station/engine/power)
"axF" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/computerframe{anchored = 1; state = 1},/turf/simulated/floor,/area/station/engine/power)
@@ -1237,7 +1237,7 @@
"axO" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "ELECTRICAL HAZARD"; tag = "icon-shock"},/turf/simulated/wall,/area/station/storage/tools)
"axP" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/storage/tools)
"axQ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
-"axR" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/camera{c_tag = "East Hallway North"; dir = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"axR" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/camera{c_tag = "East Hallway North"; dir = 8},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"axS" = (/turf/simulated/wall,/area/station/crew_quarters/courtroom)
"axT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1477; name = "Station Intercom (Coutroom)"; pixel_x = -29; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"axU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair,/obj/landmark/start{name = "Attorney at Space-Law"},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -1268,8 +1268,8 @@
"ayt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/teleporter)
"ayu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/teleporter)
"ayv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/teleporter)
-"ayw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"ayx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"ayw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"ayx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/west)
"ayy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/power)
"ayz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/power)
"ayA" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/engine/power)
@@ -1281,10 +1281,10 @@
"ayG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/tools)
"ayH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/storage/tools)
"ayI" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/window/eastleft{name = "Tool Storage"; req_access_txt = "40"},/turf/simulated/floor,/area/station/storage/tools)
-"ayJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/starboard)
-"ayK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"ayL" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"ayM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"ayJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/east)
+"ayK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"ayL" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"ayM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"ayN" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"ayO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"ayP" = (/obj/table,/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -1340,8 +1340,8 @@
"azN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/tools)
"azO" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/storage/tools)
"azP" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
-"azQ" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"azR" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"azQ" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"azR" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"azS" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"azT" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"azU" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/landmark/halloween,/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -1381,7 +1381,7 @@
"aAC" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/item/cable_coil,/obj/item/cable_coil,/obj/item/cable_coil,/obj/item/cable_coil,/obj/item/cable_coil,/turf/simulated/floor,/area/station/storage/tools)
"aAD" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/storage/tools)
"aAE" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/turf/simulated/floor/plating,/area/station/storage/tools)
-"aAF" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aAF" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aAG" = (/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aAH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aAI" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -1393,7 +1393,7 @@
"aAO" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/bridge)
"aAP" = (/obj/machinery/door/window{dir = 4; icon = 'windoor.dmi'; name = "Captain's Quarters"; req_access_txt = "20"},/turf/simulated/floor,/area/station/bridge)
"aAQ" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/space,/area)
-"aAR" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aAR" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
"aAS" = (/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
"aAT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/station/engine/power)
"aAU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/engine/power)
@@ -1404,8 +1404,8 @@
"aAZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/engine/elect{name = "Engineering Control"})
"aBa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/storage/tools)
"aBb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/storage/tools)
-"aBc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"aBd" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aBc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"aBd" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
"aBe" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aBf" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aBg" = (/obj/stool/chair{dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -1420,7 +1420,7 @@
"aBp" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor,/area/station/bridge)
"aBq" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/turret_protected/ai_upload)
"aBr" = (/turf/simulated/wall,/area/station/turret_protected/ai_upload)
-"aBs" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"aBs" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"aBt" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
"aBu" = (/turf/simulated/wall,/area/station/engine/eva{name = "Engine Halls"})
"aBv" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop Access"},/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/engine/eva{name = "Engine Halls"})
@@ -1437,8 +1437,8 @@
"aBG" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aBH" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall,/area/station/engine/elect{name = "Engineering Control"})
"aBI" = (/obj/grille,/turf/simulated/floor/plating/airless,/area/mining/miningoutpost{name = "Engine Walls"})
-"aBJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"aBK" = (/obj/closet/emcloset,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aBJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"aBK" = (/obj/closet/emcloset,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aBL" = (/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aBM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aBN" = (/turf/simulated/wall,/area/station/security/checkpoint)
@@ -1459,9 +1459,9 @@
"aCc" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload)
"aCd" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload)
"aCe" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/turret_protected/ai_upload)
-"aCf" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/port)
-"aCg" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aCh" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aCf" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/west)
+"aCg" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aCh" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aCi" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/engineering{name = "Engine Monitoring"})
"aCj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/engineering{name = "Engine Monitoring"})
"aCk" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/engine/engineering{name = "Engine Monitoring"})
@@ -1477,9 +1477,9 @@
"aCu" = (/turf/simulated/wall,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aCv" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
"aCw" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
-"aCx" = (/obj/machinery/camera{c_tag = "East Hallway Central"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCy" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCz" = (/obj/disposalpipe/segment{dir = 4},/obj/closet/emcloset,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aCx" = (/obj/machinery/camera{c_tag = "East Hallway Central"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCy" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCz" = (/obj/disposalpipe/segment{dir = 4},/obj/closet/emcloset,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aCA" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aCB" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aCC" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
@@ -1516,9 +1516,9 @@
"aDh" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/rack,/turf/simulated/floor,/area/station/turret_protected/ai_upload)
"aDi" = (/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
"aDj" = (/obj/closet/emcloset,/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
-"aDk" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aDk" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
"aDl" = (/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/emergency)
-"aDm" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
+"aDm" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
"aDn" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/engine/engineering{name = "Engine Monitoring"})
"aDo" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/engine/engineering{name = "Engine Monitoring"})
"aDp" = (/turf/simulated/floor,/area/station/engine/engineering{name = "Engine Monitoring"})
@@ -1534,7 +1534,7 @@
"aDz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aDA" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
"aDB" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
-"aDC" = (/obj/secure_closet/personal,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aDC" = (/obj/secure_closet/personal,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aDD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/obj/machinery/camera{c_tag = "Brig Office"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aDE" = (/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aDF" = (/obj/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
@@ -1574,7 +1574,7 @@
"aEn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/turret_protected/ai)
"aEo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/turret,/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
"aEp" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/station/turret_protected/ai_upload)
-"aEq" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aEq" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aEr" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/station/storage/emergency)
"aEs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/emergency)
"aEt" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/extinguisher,/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/obj/machinery/camera{c_tag = "Emergency Storage"},/turf/simulated/floor,/area/station/storage/emergency)
@@ -1596,7 +1596,7 @@
"aEJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aEK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/wall,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aEL" = (/obj/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
-"aEM" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aEM" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/east)
"aEN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aEO" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aEP" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
@@ -1613,7 +1613,7 @@
"aFa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{frequency = 1483; name = "Station Intercom (AI Upload)"; pixel_x = -27},/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
"aFb" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/turret_protected/ai_upload)
"aFc" = (/obj/machinery/turret,/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
-"aFd" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aFd" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/west)
"aFe" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/storage/emergency)
"aFf" = (/obj/disposalpipe/segment,/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/storage/emergency)
"aFg" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/engine/engineering{name = "Engine Monitoring"})
@@ -1636,7 +1636,7 @@
"aFx" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aFy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aFz" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/shield_gen{name = "Engine Monitoring"})
-"aFA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aFA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
"aFB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aFC" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aFD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
@@ -1661,8 +1661,8 @@
"aFW" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "AI Upload Foyer"; dir = 8},/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
"aFX" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor,/area/station/turret_protected/ai_upload)
"aFY" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/obj/securearea,/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload)
-"aFZ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
-"aGa" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
+"aFZ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
+"aGa" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
"aGb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/storage/emergency)
"aGc" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/storage/emergency)
"aGd" = (/obj/disposalpipe/segment,/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/storage/emergency)
@@ -1683,9 +1683,9 @@
"aGs" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aGt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aGu" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/turf/simulated/floor/plating,/area/station/engine/shield_gen{name = "Engine Monitoring"})
-"aGv" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"aGw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aGx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aGv" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"aGw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aGx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aGy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aGz" = (/obj/stool/bed,/obj/machinery/flasher{id = "cell1"; pixel_x = 0; pixel_y = 24},/obj/item/clothing/suit/bedsheet,/obj/machinery/camera{c_tag = "Brig"},/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aGA" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/item/medical/bruise_pack,/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
@@ -1714,7 +1714,7 @@
"aGX" = (/obj/machinery/door/window/eastleft,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/turret_protected/ai_upload)
"aGY" = (/obj/machinery/door/airlock/command{name = "AI Upload"; req_access_txt = "16"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/turret_protected/ai_upload)
"aGZ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/turretid{layer = 4; pixel_y = 31},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/station/turret_protected/ai_upload)
-"aHa" = (/obj/machinery/door/airlock/command{name = "AI Upload"; req_access_txt = "16"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aHa" = (/obj/machinery/door/airlock/command{name = "AI Upload"; req_access_txt = "16"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aHb" = (/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/emergency)
"aHc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/storage/emergency)
"aHd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/storage/emergency)
@@ -1737,7 +1737,7 @@
"aHu" = (/obj/cable,/obj/decal/fakeobjects{anchored = 1; density = 1; desc = "It looks a little, er, broken."; icon = 'power.dmi'; icon_state = "teg-broken"; name = "Thermo-Electric Generator"},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aHv" = (/obj/machinery/atmospherics/binary/circulator{tag = "icon-circ2-off"; icon_state = "circ2-off"},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aHw" = (/obj/machinery/atmospherics/pipe/simple/junction{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/lattice,/turf/space,/area/mining/miningoutpost{name = "Engine Walls"})
-"aHx" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"aHx" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"aHy" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aHz" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aHA" = (/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
@@ -1763,7 +1763,7 @@
"aHU" = (/turf/simulated/floor,/area/station/turret_protected/ai_upload)
"aHV" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload)
"aHW" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload)
-"aHX" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
+"aHX" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
"aHY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/portable_atmospherics/scrubber,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/storage/emergency)
"aHZ" = (/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/scrubber,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/storage/emergency)
"aIa" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/engine/engineering{name = "Engine Monitoring"})
@@ -1807,8 +1807,8 @@
"aIM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/turret_protected/ai)
"aIN" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/grid,/area/station/turret_protected/ai)
"aIO" = (/obj/machinery/power/data_terminal,/obj/machinery/computer/aiupload,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/grid,/area/station/turret_protected/ai)
-"aIP" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "West Hallway Central"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/port)
+"aIP" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "West Hallway Central"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/west)
"aIR" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/station/engine/engineering{name = "Engine Monitoring"})
"aIS" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/engineering{name = "Engine Monitoring"})
"aIT" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
@@ -1873,7 +1873,7 @@
"aKa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aKb" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aKc" = (/obj/grille,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating/airless,/area/mining/miningoutpost{name = "Engine Walls"})
-"aKd" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aKd" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/east)
"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aKf" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aKg" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/brigdoor/southright{id = "cell3"; name = "Cell 3"; req_access_txt = "2"},/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
@@ -1898,15 +1898,15 @@
"aKz" = (/obj/table{icon_state = "tabledir"; dir = 6},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aKA" = (/turf/simulated/shuttle/floor{icon_state = "floor3"},/turf/simulated/shuttle/wall{tag = "icon-diagonalWall (SOUTHWEST)"; icon_state = "diagonalWall"; dir = 10},/area/recovery_shuttle)
"aKB" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"aKC" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKD" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"aKC" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKD" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"aKE" = (/obj/securearea{desc = "No smoking"; icon_state = "nosmoking"; name = "Sign"; tag = "icon-nosmoking"},/turf/simulated/wall,/area/station/engine/storage)
"aKF" = (/obj/machinery/door/airlock/engineering{name = "Engineering Storage"; req_access_txt = "41"},/turf/simulated/floor,/area/station/engine/storage)
"aKG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/securearea{desc = "No smoking"; icon_state = "nosmoking"; name = "Sign"; tag = "icon-nosmoking"},/turf/simulated/wall,/area/station/engine/shield_gen{name = "Engine Monitoring"})
"aKH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/shield_gen{name = "Engine Monitoring"})
-"aKI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
-"aKJ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aKK" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aKI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
+"aKJ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aKK" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aKL" = (/obj/stool,/obj/machinery/camera{c_tag = "Brig"},/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aKM" = (/obj/machinery/atmospherics/pipe/vent,/obj/item/harmonica,/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aKN" = (/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
@@ -1926,10 +1926,10 @@
"aLb" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/grille,/obj/securearea,/turf/simulated/wall/r_wall,/area/station/turret_protected/ai)
"aLc" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/grille,/turf/simulated/wall/r_wall,/area/station/turret_protected/ai)
"aLd" = (/obj/grille,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/securearea,/turf/simulated/wall/r_wall,/area/station/turret_protected/ai)
-"aLe" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aLf" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aLg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/port)
-"aLh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aLe" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aLf" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aLg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/west)
+"aLh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aLi" = (/turf/simulated/wall/r_wall,/area/station/engine/storage)
"aLj" = (/turf/simulated/wall,/area/station/engine/storage)
"aLk" = (/turf/simulated/floor/airless{tag = "icon-damaged2"; icon_state = "damaged2"},/area/station/engine/storage)
@@ -1938,10 +1938,10 @@
"aLn" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
"aLo" = (/turf/simulated/floor/plating/airless,/area/station/engine/storage)
"aLp" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{cell_type = 200; dir = 4; name = "Worn E APC"; operating = 0; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
-"aLq" = (/obj/machinery/vending/coffee,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aLr" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aLs" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aLt" = (/obj/machinery/vending/cola/red,/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aLq" = (/obj/machinery/vending/coffee,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aLr" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aLs" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aLt" = (/obj/machinery/vending/cola/red,/turf/simulated/floor,/area/station/hallway/primary/east)
"aLu" = (/obj/stool/bed,/obj/machinery/flasher{id = "cell3"; pixel_x = 0; pixel_y = -24},/obj/item/clothing/suit/bedsheet,/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aLv" = (/obj/disposalpipe/segment,/obj/secure_closet/brig{id = "cell3"},/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
"aLw" = (/obj/stool/bed,/obj/machinery/flasher{id = "cell4"; pixel_x = 0; pixel_y = -24},/obj/item/clothing/suit/bedsheet,/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
@@ -1961,14 +1961,14 @@
"aLK" = (/obj/rack,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aLL" = (/obj/rack,/obj/item/wrapping_paper,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aLM" = (/obj/machinery/computer/ATM,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
-"aLN" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aLN" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
"aLO" = (/obj/securearea{desc = ""; icon_state = "fire"; name = "Warning: Flammable Materials"; tag = "icon-fire"},/turf/simulated/wall,/area/station/engine/storage)
"aLP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
"aLQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/lattice,/turf/space,/area/station/engine/storage)
"aLR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
"aLS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Engine Storage"; dir = 8},/turf/simulated/floor/airless{tag = "icon-damaged5"; icon_state = "damaged5"},/area/station/engine/storage)
-"aLT" = (/obj/machinery/camera{c_tag = "East Hallway South"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aLU" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aLT" = (/obj/machinery/camera{c_tag = "East Hallway South"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aLU" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/station/hallway/primary/east)
"aLV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aLW" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aLX" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/security{name = "Gas Storage"; req_access = null; req_access_txt = "2"},/turf/simulated/floor,/area/station/security/prison{name = "Brig"})
@@ -1992,12 +1992,12 @@
"aMp" = (/obj/lattice,/turf/space,/area/station/engine/storage)
"aMq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
"aMr" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/engine/storage)
-"aMs" = (/turf/simulated/floor{tag = "icon-redcorner"; icon_state = "redcorner"},/area/station/hallway/primary/starboard)
-"aMt" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aMu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aMv" = (/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aMw" = (/obj/closet,/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aMx" = (/obj/closet,/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/starboard)
+"aMs" = (/turf/simulated/floor{tag = "icon-redcorner"; icon_state = "redcorner"},/area/station/hallway/primary/east)
+"aMt" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aMu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aMv" = (/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aMw" = (/obj/closet,/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aMx" = (/obj/closet,/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/east)
"aMy" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/obj/closet/emcloset,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aMz" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
"aMA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "Brig Atmospherics Access"},/turf/simulated/floor/plating,/area/station/security/prison{name = "Brig"})
@@ -2012,11 +2012,11 @@
"aMJ" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aMK" = (/obj/item/device/flashlight,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aML" = (/obj/table{icon_state = "tabledir"; dir = 8},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
-"aMM" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aMN" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aMO" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aMP" = (/turf/simulated/wall,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aMQ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
+"aMM" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aMN" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aMO" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aMP" = (/turf/simulated/wall,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aMQ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
"aMR" = (/turf/simulated/floor/engine,/area/station/engine/storage)
"aMS" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/turf/simulated/floor/plating,/area/station/engine/storage)
"aMT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/lattice,/turf/space,/area/station/engine/storage)
@@ -2033,15 +2033,15 @@
"aNe" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/machinery/camera{c_tag = "Recovery Shuttle East"; dir = 8},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aNf" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Arrival Hallway East"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"aNg" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"aNh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNi" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/camera{c_tag = "Arrival Maint Hallway West"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNo" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNp" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "West Hallway South"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aNh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNi" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/camera{c_tag = "Arrival Maint Hallway West"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNo" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNp" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "West Hallway South"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aNq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/camera{c_tag = "Engine Interior South"; dir = 1; icon_state = "camera"; tag = "icon-camera (NORTH)"},/turf/simulated/floor/engine,/area/station/engine/power{name = "Combustion Chamber"})
"aNr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/vent{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
"aNs" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
@@ -2069,27 +2069,27 @@
"aNO" = (/obj/cable,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"aNP" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"aNQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
-"aNR" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNS" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNT" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/item/storage/lightbox,/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNU" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNV" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNX" = (/obj/machinery/atmospherics/retrofilter{dir = 4; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNY" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aNZ" = (/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOa" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOb" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOc" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOd" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOe" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Arrival Maint Hallway East"},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOf" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOg" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOh" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOi" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOj" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOk" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aOl" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aNR" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNS" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNT" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/item/storage/lightbox,/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNU" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNV" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNX" = (/obj/machinery/atmospherics/retrofilter{dir = 4; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNY" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aNZ" = (/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOa" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOb" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOc" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOd" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOe" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Arrival Maint Hallway East"},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOf" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOg" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOh" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOi" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOj" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOk" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aOl" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aOm" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/engineering,/turf/simulated/floor/airless,/area/station/engine/storage)
"aOn" = (/turf/simulated/floor,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/engine/storage)
"aOo" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/airless{tag = "icon-damaged4"; icon_state = "damaged4"},/area/station/engine/storage)
@@ -2099,11 +2099,11 @@
"aOs" = (/obj/stool/chair{dir = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/landmark/start{name = "Detective"},/turf/simulated/floor{icon_state = "carpetN"},/area/station/security/detectives_office)
"aOt" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/security/detectives_office)
"aOu" = (/obj/item/storage/secure/ssafe{pixel_x = 29},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aOv" = (/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"aOw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aOx" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aOy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aOz" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/aft)
+"aOv" = (/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"aOw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aOx" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aOy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aOz" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/maintenance/south)
"aOA" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aOB" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/security/prison{name = "Brig"})
"aOC" = (/obj/machinery/light,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
@@ -2115,18 +2115,18 @@
"aOI" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/crew_quarters/cafeteria)
"aOJ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aOK" = (/turf/simulated/wall,/area/station/crew_quarters/bar)
-"aOL" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOM" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aON" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/portsolar{name = "Bar Maintenance"})
-"aOO" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aOP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aOL" = (/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOM" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aON" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/westsolar{name = "Bar Maintenance"})
+"aOO" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aOP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aOQ" = (/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/engine,/area/station/engine/storage)
"aOR" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/engineering,/turf/simulated/floor/airless{tag = "icon-damaged5"; icon_state = "damaged5"},/area/station/engine/storage)
"aOS" = (/turf/simulated/floor/airless{tag = "icon-damaged5"; icon_state = "damaged5"},/area/station/engine/storage)
"aOT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/airless{tag = "icon-damaged5"; icon_state = "damaged5"},/area/station/engine/storage)
"aOU" = (/obj/machinery/light/small,/obj/lattice,/turf/space,/area/station/engine/storage)
"aOV" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/engine/storage)
-"aOW" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aOW" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aOX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aOY" = (/obj/stool/chair{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/security/detectives_office)
"aOZ" = (/obj/table/woodentable{dir = 10},/obj/item/device/radio,/turf/simulated/floor{icon_state = "carpetS"},/area/station/security/detectives_office)
@@ -2134,11 +2134,11 @@
"aPb" = (/turf/simulated/floor{icon_state = "carpetSE"},/area/station/security/detectives_office)
"aPc" = (/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aPd" = (/obj/machinery/door/airlock/security{name = "Gas Storage"; req_access = null; req_access_txt = "2"},/turf/simulated/floor{icon_state = "dark"},/area/station/security/detectives_office)
-"aPe" = (/obj/landmark{name = "blobstart"; pixel_x = -1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aPf" = (/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aPg" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aPh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aPi" = (/turf/simulated/wall,/area/station/maintenance/aft)
+"aPe" = (/obj/landmark{name = "blobstart"; pixel_x = -1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aPf" = (/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aPg" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aPh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aPi" = (/turf/simulated/wall,/area/station/maintenance/south)
"aPj" = (/turf/simulated/shuttle/wall{dir = 1; icon_state = "wall_floor"},/area/shuttle/arrival/station)
"aPk" = (/obj/stool/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station)
"aPl" = (/turf/simulated/shuttle/wall{dir = 8; icon_state = "wall_floor"},/area/shuttle/arrival/station)
@@ -2166,17 +2166,17 @@
"aPH" = (/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aPI" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/station/crew_quarters/bar)
"aPJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/bar)
-"aPK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aPL" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aPK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aPL" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
"aPM" = (/obj/securearea{desc = ""; icon_state = "fire"; name = "Warning: Flammable Materials"; tag = "icon-fire"},/turf/simulated/wall/r_wall,/area/station/engine/storage)
"aPN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/storage)
"aPO" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/engine/storage)
"aPP" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/eastleft{name = "Detective's Office"; req_access_txt = "4"},/turf/simulated/floor,/area/station/security/detectives_office)
"aPQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aPR" = (/obj/table/woodentable{dir = 9},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aPS" = (/obj/machinery/computer/prison_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aPT" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aPU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aPS" = (/obj/machinery/computer/prison_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aPT" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aPU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aPV" = (/turf/space,/area/shuttle/brig/station)
"aPW" = (/turf/simulated/shuttle/wall{icon_state = "wall_space"},/area/shuttle/arrival/station)
"aPX" = (/obj/machinery/shuttle/engine/propulsion,/turf/simulated/shuttle/wall,/area/shuttle/arrival/station)
@@ -2214,7 +2214,7 @@
"aQD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/detectives_office)
"aQE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/detectives_office)
"aQF" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/security/detectives_office)
-"aQG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aQG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aQH" = (/obj/stool/bed,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aQI" = (/obj/stool/bed,/obj/machinery/light/small,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
"aQJ" = (/obj/stool/bed,/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/recovery_shuttle)
@@ -2232,7 +2232,7 @@
"aQV" = (/obj/table{dir = 5; icon_state = "tabledir"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aQW" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aQX" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aQY" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aQY" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aQZ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/central)
"aRa" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/central)
"aRb" = (/obj/machinery/camera{c_tag = "South Hallway West"},/turf/simulated/floor,/area/station/hallway/primary/central)
@@ -2260,7 +2260,7 @@
"aRx" = (/obj/machinery/camera{c_tag = "Security North"},/turf/simulated/floor,/area/station/security/main)
"aRy" = (/obj/secure_closet/security1,/turf/simulated/floor,/area/station/security/main)
"aRz" = (/obj/secure_closet/security1,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/security/main)
-"aRA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aRA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aRB" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"aRC" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"aRD" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/hallway/secondary/entry)
@@ -2279,8 +2279,8 @@
"aRQ" = (/obj/table{icon_state = "tabledir"; dir = 2},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aRR" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/dice,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aRS" = (/obj/item/device/flashlight{desc = "The spookiest!"; icon = 'halloween.dmi'; item_state = "pumpkin"; name = "Jack-o-lantern"},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aRT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aRU" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aRT" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aRU" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aRV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
"aRW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/central)
"aRX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/central)
@@ -2297,8 +2297,8 @@
"aSi" = (/turf/simulated/floor,/area/station/security/main)
"aSj" = (/obj/stool/chair,/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/station/security/main)
"aSk" = (/obj/machinery/door/airlock/security{name = "Security"; req_access = null; req_access_txt = "1"},/turf/simulated/floor,/area/station/security/main)
-"aSl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aSm" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aSl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aSm" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aSn" = (/turf/simulated/shuttle/wall{icon_state = "wall_space"},/area)
"aSo" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"aSp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/secondary/entry)
@@ -2337,7 +2337,7 @@
"aSW" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/device/detective_scanner,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor,/area/station/security/main)
"aSX" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor,/area/station/security/main)
"aSY" = (/obj/stool/chair{dir = 8},/obj/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/station/security/main)
-"aSZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aSZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aTa" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/turf/simulated/floor/plating,/area/station/hallway/secondary/entry)
"aTb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"aTc" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/secondary/entry)
@@ -2372,11 +2372,11 @@
"aTF" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/security,/turf/simulated/floor,/area/station/security/main)
"aTG" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/kitchen/donut_box,/turf/simulated/floor,/area/station/security/main)
"aTH" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/device/radio/signaler,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor,/area/station/security/main)
-"aTI" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
-"aTJ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aTK" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aTL" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aTM" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/aft)
+"aTI" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall/r_wall,/area/station/maintenance/south)
+"aTJ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aTK" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aTL" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aTM" = (/obj/securearea,/turf/simulated/wall/r_wall,/area/station/maintenance/south)
"aTN" = (/obj/machinery/door/airlock{name = "Maintenance"},/turf/simulated/floor,/area/station/hallway/secondary/entry)
"aTO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/hallway/secondary/entry)
"aTP" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/secondary/entry)
@@ -2393,8 +2393,8 @@
"aUa" = (/obj/landmark/halloween,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aUb" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/bar)
"aUc" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/bar)
-"aUd" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aUe" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/aft)
+"aUd" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aUe" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/south)
"aUf" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"aUg" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock{name = "Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/primary)
"aUh" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
@@ -2420,15 +2420,15 @@
"aUB" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor,/area/station/security/main)
"aUC" = (/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor,/area/station/security/main)
"aUD" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/security/main)
-"aUE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{ai_no_access = 1; name = "Prison Station Shuttle Access"; req_access_txt = "39"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/light,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUI" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUJ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUL" = (/obj/machinery/atmospherics/retrofilter{dir = 4; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aUM" = (/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aUE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{ai_no_access = 1; name = "Prison Station Shuttle Access"; req_access_txt = "39"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/light,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUG" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUI" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUJ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUL" = (/obj/machinery/atmospherics/retrofilter{dir = 4; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aUM" = (/turf/simulated/wall,/area/station/hallway/primary/south)
"aUN" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/cafeteria)
"aUO" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/kitchen/donut_box,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
"aUP" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
@@ -2439,11 +2439,11 @@
"aUU" = (/obj/machinery/computer/arcade,/turf/simulated/floor,/area/station/crew_quarters/cafeteria)
"aUV" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aUW" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aUX" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aUY" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aUZ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aVa" = (/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aVb" = (/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aUX" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aUY" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aUZ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aVa" = (/turf/simulated/floor,/area/station/hallway/primary/south)
+"aVb" = (/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/turf/simulated/floor,/area/station/hallway/primary/south)
"aVc" = (/obj/table/reinforced{dir = 5; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/recharger,/turf/simulated/floor,/area/station/security/checkpoint)
"aVd" = (/obj/stool/chair{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor,/area/station/security/checkpoint)
"aVe" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/card,/obj/machinery/camera{c_tag = "Forward Security Checkpoint"},/turf/simulated/floor,/area/station/security/checkpoint)
@@ -2467,13 +2467,13 @@
"aVw" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/wrench,/obj/item/storage/trackimp_kit,/turf/simulated/floor,/area/station/security/main)
"aVx" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/flasher/portable,/turf/simulated/floor,/area/station/security/main)
"aVy" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/item/crowbar,/turf/simulated/floor,/area/station/security/main)
-"aVz" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/security{name = "Gas Storage"; req_access = null; req_access_txt = "2"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aVA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/security{name = "Gas Storage"; req_access = null; req_access_txt = "2"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aVB" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aVC" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aVD" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aVE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aVF" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aVz" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/security{name = "Gas Storage"; req_access = null; req_access_txt = "2"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aVA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/security{name = "Gas Storage"; req_access = null; req_access_txt = "2"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aVB" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aVC" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aVD" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aVE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aVF" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/south)
"aVG" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/cafeteria)
"aVH" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/kitchen/donut_box,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
"aVI" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
@@ -2486,7 +2486,7 @@
"aVP" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4; level = 2},/turf/simulated/wall,/area/station/crew_quarters/bar)
"aVQ" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/item/device/flashlight{desc = "The spookiest!"; icon = 'halloween.dmi'; item_state = "pumpkin"; name = "Jack-o-lantern"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aVR" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aVS" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "Checkpoint1"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aVS" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "Checkpoint1"},/turf/simulated/floor,/area/station/hallway/primary/south)
"aVT" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (EAST)"; icon_state = "reinf_tabledir"; dir = 4},/turf/simulated/floor,/area/station/security/checkpoint)
"aVU" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/security/checkpoint)
"aVV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor,/area/station/security/checkpoint)
@@ -2501,17 +2501,17 @@
"aWe" = (/turf/simulated/wall,/area/station/crew_quarters/observatory)
"aWf" = (/obj/machinery/door/airlock{name = "Observatory"; req_access_txt = "0"},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aWg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/crew_quarters/observatory)
-"aWh" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWi" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWj" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWk" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aWh" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWi" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWj" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWk" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"aWl" = (/turf/simulated/floor,/area/station/crew_quarters/toilets)
"aWm" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/crew_quarters/toilets)
"aWn" = (/turf/simulated/wall,/area/station/crew_quarters/toilets)
"aWo" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/crew_quarters/toilets)
"aWp" = (/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aWq" = (/obj/machinery/door/window/eastright,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aWr" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aWr" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/station/hallway/primary/south)
"aWs" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (SOUTHEAST)"; icon_state = "reinf_tabledir"; dir = 6},/obj/machinery/light,/turf/simulated/floor,/area/station/security/checkpoint)
"aWt" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/security/checkpoint)
"aWu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/item/device/flash,/turf/simulated/floor,/area/station/security/checkpoint)
@@ -2524,23 +2524,23 @@
"aWB" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/table,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aWC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/tank/jetpack,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aWD" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
-"aWE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWF" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWG" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWH" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWI" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "Southeast External Airlock"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWJ" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWK" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aWE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWF" = (/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWG" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWH" = (/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWI" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "Southeast External Airlock"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWJ" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWK" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aWL" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"aWM" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aWN" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aWO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Observatory"},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aWP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aWQ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor,/area/station/crew_quarters/observatory)
-"aWR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/wirecutters,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWS" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aWT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"aWU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aWR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/wirecutters,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWS" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aWT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/wall,/area/station/hallway/primary/south)
+"aWU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
"aWV" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/cafeteria)
"aWW" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
"aWX" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
@@ -2552,9 +2552,9 @@
"aXd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aXe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aXf" = (/obj/disposalpipe/segment{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/wall,/area/station/crew_quarters/bar)
-"aXg" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXi" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aXg" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXi" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"aXj" = (/turf/simulated/wall/r_wall,/area/station/security/checkpoint)
"aXk" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall/r_wall,/area/station/security/checkpoint)
"aXl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/security/checkpoint)
@@ -2564,22 +2564,22 @@
"aXp" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/central)
"aXq" = (/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/eva)
"aXr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/eva)
-"aXs" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXu" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXv" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXw" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXx" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "South Security Atmospherics Access"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXz" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aXs" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXu" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXv" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXw" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXx" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "South Security Atmospherics Access"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXz" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/south)
"aXA" = (/turf/space,/area/meteor/station{requires_power = 1; sd_lighting = 1})
"aXB" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"aXC" = (/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aXD" = (/obj/stool/chair,/obj/landmark/halloween,/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aXE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/observatory)
-"aXF" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXG" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"aXH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aXF" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXG" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"aXH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/south)
"aXI" = (/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aXJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aXK" = (/obj/machinery/door/window/southleft,/turf/simulated/floor{tag = "icon-cafeteria"; icon_state = "cafeteria"},/area/station/crew_quarters/cafeteria)
@@ -2591,37 +2591,37 @@
"aXQ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/crew_quarters/bar)
"aXR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/wall,/area/station/crew_quarters/bar)
"aXS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/crew_quarters/bar)
-"aXT" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXV" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aXZ" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/obj/item/screwdriver,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYa" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/closet,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYc" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYd" = (/obj/machinery/atmospherics/retrofilter,/obj/machinery/camera{c_tag = "South Hallway Central Atmospherics Access"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYe" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYf" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYg" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "South Solar Panel Control"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYh" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYi" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYj" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYk" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYl" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYm" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYn" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYo" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall,/area/station/maintenance/aft)
-"aYp" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYr" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYs" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aXT" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXV" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aXZ" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/obj/item/screwdriver,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYa" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/closet,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYc" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYd" = (/obj/machinery/atmospherics/retrofilter,/obj/machinery/camera{c_tag = "South Hallway Central Atmospherics Access"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYe" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYf" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYg" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/camera{c_tag = "South Solar Panel Control"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYh" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYi" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYj" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYk" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYl" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYm" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYn" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYo" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall,/area/station/maintenance/south)
+"aYp" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYq" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYr" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYs" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aYt" = (/obj/table,/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aYu" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"aYv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/observatory)
-"aYw" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYx" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"aYw" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYx" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"aYy" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aYz" = (/obj/closet/wardrobe/pink,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aYA" = (/obj/closet/gmcloset,/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -2633,36 +2633,36 @@
"aYG" = (/obj/cable,/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor,/area/station/janitor)
"aYH" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor,/area/station/janitor)
"aYI" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/simulated/floor,/area/station/janitor)
-"aYJ" = (/obj/machinery/atmospherics/pipe/vent{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aYK" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"aYL" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYM" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYO" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYP" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYQ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYR" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYS" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYT" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYU" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYV" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYW" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYX" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYY" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aYZ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZa" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar_control{id = "aftsolar"; name = "Aft Solar Control"; track = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZb" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZc" = (/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZe" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZi" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aYJ" = (/obj/machinery/atmospherics/pipe/vent{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aYK" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/wall,/area/station/hallway/primary/south)
+"aYL" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYM" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYN" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYO" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYP" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYQ" = (/obj/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYR" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYS" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYT" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYU" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYV" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYW" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYX" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYY" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aYZ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZa" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar_control{id = "aftsolar"; name = "Aft Solar Control"; track = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZb" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZc" = (/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZe" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZh" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZi" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/south)
"aZj" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"aZk" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"aZl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/crew_quarters/observatory)
-"aZm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Arrival Shuttle Hallway Atmospherics Access"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"aZm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Arrival Shuttle Hallway Atmospherics Access"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"aZn" = (/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aZo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aZp" = (/obj/stool/chair,/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -2674,28 +2674,28 @@
"aZv" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/obj/stool,/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/storage/lightbox,/obj/item/storage/mousetraps,/obj/item/storage/mousetraps,/obj/machinery/vending/monkey,/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/janitor)
"aZw" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/janitor)
"aZx" = (/turf/simulated/wall,/area/station/janitor)
-"aZy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aZz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aZA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"aZB" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZC" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "South Construction Atmospherics Access"; dir = 1; icon_state = "camera"; tag = "icon-camera (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZH" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZI" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZJ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZK" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/aft)
-"aZM" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZN" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZO" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/maintenance/aft)
-"aZP" = (/obj/securearea,/turf/simulated/wall,/area/station/maintenance/aft)
-"aZQ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZR" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"aZS" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"aZT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aZy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aZz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aZA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/south)
+"aZB" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZC" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "South Construction Atmospherics Access"; dir = 1; icon_state = "camera"; tag = "icon-camera (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZH" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZI" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZJ" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZK" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/south)
+"aZM" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZN" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZO" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/maintenance/south)
+"aZP" = (/obj/securearea,/turf/simulated/wall,/area/station/maintenance/south)
+"aZQ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZR" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"aZS" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"aZT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"aZU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aZV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/machinery/camera{c_tag = "Barracks West"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aZW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -2709,9 +2709,9 @@
"bae" = (/obj/closet/jcloset,/turf/simulated/floor,/area/station/janitor)
"baf" = (/obj/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/station/janitor)
"bag" = (/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/turf/simulated/floor{icon_state = "white"},/area/station/janitor)
-"bah" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bai" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baj" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bah" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bai" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baj" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bak" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bal" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bam" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
@@ -2723,7 +2723,7 @@
"bas" = (/turf/space,/area/shuttle/mining/station{requires_power = 1; sd_lighting = 1})
"bat" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"bau" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
-"bav" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bav" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
"baw" = (/obj/machinery/door/window/northleft,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"bax" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/crew_quarters/quarters)
"bay" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -2733,11 +2733,11 @@
"baC" = (/obj/closet/wardrobe/mixed,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"baD" = (/turf/simulated/floor,/area/station/janitor)
"baE" = (/obj/mopbucket,/turf/simulated/floor{icon_state = "white"},/area/station/janitor)
-"baF" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"baG" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"baH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"baI" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baJ" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"baF" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"baG" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"baH" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/hallway/primary/south)
+"baI" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baJ" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
"baK" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"baL" = (/obj/machinery/computer/arcade,/turf/simulated/floor,/area/station/crew_quarters/fitness)
"baM" = (/turf/simulated/floor,/area/station/crew_quarters/fitness)
@@ -2749,10 +2749,10 @@
"baS" = (/obj/closet/wardrobe,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"baT" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"baU" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/quarters)
-"baV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock{name = "Maintenance"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"baW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baX" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"baY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/aft)
+"baV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock{name = "Maintenance"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"baW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baX" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"baY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/south)
"baZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bba" = (/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/simulated/floor{icon_state = "yellowcorner"; tag = "icon-yellowcorner"},/area/station/crew_quarters/fitness)
"bbb" = (/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/station/crew_quarters/fitness)
@@ -2767,7 +2767,7 @@
"bbk" = (/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/quarters)
"bbl" = (/obj/mirror,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/quarters)
"bbm" = (/obj/stool/barber_chair,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/quarters)
-"bbn" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bbn" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bbo" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock{name = "Fitness Room"},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bbp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bbq" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/crew_quarters/fitness)
@@ -2780,11 +2780,11 @@
"bbx" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
"bby" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
"bbz" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area)
-"bbA" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbB" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bbC" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bbD" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bbE" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bbA" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/retrofilter{dir = 8; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (WEST)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbB" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bbC" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; layer = 3; level = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bbD" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bbE" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/station/hallway/primary/south)
"bbF" = (/obj/closet,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"bbG" = (/obj/machinery/hair_dye_dispenser,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/quarters)
"bbH" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/crew_quarters/fitness)
@@ -2794,27 +2794,27 @@
"bbL" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bbM" = (/obj/cable,/obj/machinery/power/solar{id = "aftsolar"; name = "Aft Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area)
"bbN" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
-"bbO" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbP" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bbO" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbP" = (/obj/machinery/atmospherics/pipe/vent{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
"bbQ" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"bbR" = (/obj/machinery/atmospherics/pipe/vent,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"bbS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Fitness Room"; dir = 4; icon_state = "camera"; tag = "icon-camera (EAST)"},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bbT" = (/obj/landmark/halloween,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/fitness)
-"bbU" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbV" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bbW" = (/obj/item/extinguisher,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bbX" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bbY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bbU" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbV" = (/obj/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bbW" = (/obj/item/extinguisher,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bbX" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bbY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/hallway/primary/south)
"bbZ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor,/area/station/crew_quarters/quarters)
-"bca" = (/obj/machinery/camera{c_tag = "South Hallway Southwest"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcb" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"bca" = (/obj/machinery/camera{c_tag = "South Hallway Southwest"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcb" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"bcc" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bcd" = (/obj/machinery/door/window/eastright,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/fitness)
"bce" = (/turf/simulated/wall,/area/station/crew_quarters/juryroom{name = "Conference"})
"bcf" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/juryroom{name = "Conference"})
"bcg" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/juryroom{name = "Conference"})
"bch" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/juryroom{name = "Conference"})
-"bci" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"bci" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"bcj" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bck" = (/obj/window/reinforced,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/fitness)
"bcl" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced,/obj/stool,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/fitness)
@@ -2827,10 +2827,10 @@
"bcs" = (/obj/stool/chair,/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bct" = (/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bcu" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
-"bcv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcw" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcx" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcy" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bcv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcw" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcx" = (/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcy" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
"bcz" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bcA" = (/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"; tag = "icon-yellowcorner (EAST)"},/area/station/crew_quarters/fitness)
"bcB" = (/obj/stool,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/crew_quarters/fitness)
@@ -2845,11 +2845,11 @@
"bcK" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bcL" = (/turf/simulated/floor{icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bcM" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom{name = "Conference"})
-"bcN" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcO" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcP" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcQ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"bcR" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bcN" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcO" = (/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcP" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcQ" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/hallway/primary/south)
+"bcR" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bcS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bcT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bcU" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/fitness)
@@ -2862,10 +2862,10 @@
"bdb" = (/obj/machinery/atmospherics/pipe/vent,/obj/table{icon_state = "tabledir"; dir = 2},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bdc" = (/obj/table{icon_state = "tabledir"; dir = 6},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bdd" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
-"bde" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdf" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdg" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bde" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdf" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdg" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bdi" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/medical/bruise_pack,/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bdj" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/storage/firstaid/regular,/turf/simulated/floor,/area/station/crew_quarters/fitness)
"bdk" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/crew_quarters/fitness)
@@ -2877,10 +2877,10 @@
"bdq" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bdr" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/stool/chair{dir = 1},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bds" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/crew_quarters/juryroom{name = "Conference"})
-"bdt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdu" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bdt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdu" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bdx" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bdy" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"bdz" = (/obj/grille,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
@@ -2888,34 +2888,34 @@
"bdB" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor{icon_state = "dark"},/area/station/crew_quarters/juryroom{name = "Conference"})
"bdC" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/wall,/area/station/crew_quarters/juryroom{name = "Conference"})
"bdD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/crew_quarters/juryroom{name = "Conference"})
-"bdE" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/item/storage/firstaid/fire,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdF" = (/obj/machinery/atmospherics/retrofilter,/obj/machinery/camera{c_tag = "South Maint Hallway Firesuit Storage"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdH" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdT" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bdE" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/item/storage/firstaid/fire,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdF" = (/obj/machinery/atmospherics/retrofilter,/obj/machinery/camera{c_tag = "South Maint Hallway Firesuit Storage"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdH" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold{dir = 1; icon_state = "manifold"; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/retrofilter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/meter,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/retrofilter{dir = 1; icon_state = "filter-off"; level = 2; tag = "icon-filter-off (NORTH)"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; layer = 3; level = 2},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/landmark/halloween,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdT" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4; pixel_y = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bdU" = (/obj/machinery/camera{c_tag = "South Maint Hallway Airlock"},/turf/simulated/floor/plating/airless,/area)
-"bdV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdX" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdY" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bdZ" = (/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bea" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/glasses/meson,/obj/item/clothing/under/color/blue,/obj/item/clothing/shoes/black,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beb" = (/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bec" = (/obj/item/storage/lightbox,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bed" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bee" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bef" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; tag = "icon-space"},/turf/simulated/wall,/area/station/maintenance/aft)
+"bdV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdX" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdY" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bdZ" = (/obj/item/extinguisher,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bea" = (/obj/rack,/obj/item/clothing/suit/fire,/obj/item/clothing/glasses/meson,/obj/item/clothing/under/color/blue,/obj/item/clothing/shoes/black,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beb" = (/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bec" = (/obj/item/storage/lightbox,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bed" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bee" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bef" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; tag = "icon-space"},/turf/simulated/wall,/area/station/maintenance/south)
"beg" = (/obj/grille,/turf/simulated/floor/plating,/area)
"beh" = (/obj/grille,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area)
"bei" = (/obj/landmark{name = "Loot spawn"},/turf/simulated/floor/plating,/area)
diff --git a/maps/halloween12.dmm b/maps/halloween12.dmm
index edeb7e9..350311c 100644
--- a/maps/halloween12.dmm
+++ b/maps/halloween12.dmm
@@ -321,12 +321,12 @@
"agi" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/research_shuttle,/turf/simulated/floor,/area/station/science)
"agj" = (/obj/closet/emcloset,/turf/simulated/floor,/area/station/science)
"agk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/science)
-"agl" = (/turf/simulated/wall,/area/station/artifact)
-"agm" = (/obj/machinery/status_display/research,/turf/simulated/wall,/area/station/artifact)
-"agn" = (/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ago" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
-"agp" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
-"agq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
+"agl" = (/turf/simulated/wall,/area/station/science/artifact)
+"agm" = (/obj/machinery/status_display/research,/turf/simulated/wall,/area/station/science/artifact)
+"agn" = (/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ago" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
+"agp" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
+"agq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
"agr" = (/turf/simulated/wall,/area/station/science)
"ags" = (/obj/machinery/status_display/research,/turf/simulated/wall,/area/station/science)
"agt" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (NORTH)"; icon_state = "door0"; dir = 1},/obj/machinery/door/airlock/medical{name = "Patient Quarters"; req_access = null},/turf/simulated/floor,/area/station/crew_quarters/observatory)
@@ -347,13 +347,13 @@
"agI" = (/obj/machinery/door/window/northright,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
"agJ" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/table,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
"agK" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science)
-"agL" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"agM" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/storage/tapebox,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"agN" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"agO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"agP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"agQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"agR" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"agL" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"agM" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/storage/tapebox,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"agN" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"agO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"agP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"agQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"agR" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"agS" = (/turf/simulated/wall,/area/station/crew_quarters/observatory)
"agT" = (/obj/item/storage/toilet,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"agU" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
@@ -379,11 +379,11 @@
"aho" = (/obj/machinery/shuttle/engine/propulsion{id = "zeta"},/turf/space,/area/shuttle/research/outpost)
"ahp" = (/obj/stool/bed,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
"ahq" = (/obj/secure_closet/medical2,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
-"ahr" = (/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahs" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aht" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahv" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"ahr" = (/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahs" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aht" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahu" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahv" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"ahw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"ahx" = (/obj/machinery/door/window/westleft{name = "Specimen Cell"; req_access_txt = "8"},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"ahy" = (/turf/simulated/floor,/area/station/crew_quarters/observatory)
@@ -395,8 +395,8 @@
"ahE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/secure)
"ahF" = (/turf/simulated/shuttle/wall{icon_state = "wall_space"},/area/shuttle/research/outpost)
"ahG" = (/turf/simulated/shuttle/wall{dir = 4; icon_state = "wall_space"},/area/shuttle/research/outpost)
-"ahH" = (/obj/machinery/artifact{name = "Test Artifact"},/turf/simulated/floor{icon_state = "bot_white"},/area/station/artifact)
-"ahI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"ahH" = (/obj/machinery/artifact{name = "Test Artifact"},/turf/simulated/floor{icon_state = "bot_white"},/area/station/science/artifact)
+"ahI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"ahJ" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"ahK" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"ahL" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
@@ -405,12 +405,12 @@
"ahO" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor,/area/station/science/bot_storage)
"ahP" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/syringe,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
"ahQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area)
-"ahR" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_spawn_with_tape = 0},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahS" = (/obj/machinery/light,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahT" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Artifact Lab"; dir = 1; name = "Outpost Camera"; network = "Zeta"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahU" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ahV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{icon_state = "solarpanel"; name = "Artifact Analysis Pad"; tag = "icon-solarpanel"},/area/station/artifact)
-"ahW" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/submachine{name = "ugh!!"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"ahR" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_spawn_with_tape = 0},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahS" = (/obj/machinery/light,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahT" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Artifact Lab"; dir = 1; name = "Outpost Camera"; network = "Zeta"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahU" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ahV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{icon_state = "solarpanel"; name = "Artifact Analysis Pad"; tag = "icon-solarpanel"},/area/station/science/artifact)
+"ahW" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/submachine{name = "ugh!!"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"ahX" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Specimen Containment"; dir = 4; name = "Outpost Camera"; network = "Zeta"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"ahY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"ahZ" = (/obj/stool/bed,/turf/simulated/floor,/area/station/crew_quarters/observatory)
@@ -419,8 +419,8 @@
"aic" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/science/bot_storage)
"aid" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/gunner,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
"aie" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "rozetasolar"; name = "Outpost Zeta Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area)
-"aif" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; tag = "icon-space"},/turf/simulated/wall,/area/station/artifact)
-"aig" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/artifact)
+"aif" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; tag = "icon-space"},/turf/simulated/wall,/area/station/science/artifact)
+"aig" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/science/artifact)
"aih" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"aii" = (/obj/machinery/navbeacon{codes_txt = "patrol"; location = "bar"; name = "buddytime beacon"},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"aij" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/science/bot_storage)
@@ -434,7 +434,7 @@
"air" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"ais" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area)
"ait" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
-"aiu" = (/turf/simulated/floor/plating,/area/station/artifact)
+"aiu" = (/turf/simulated/floor/plating,/area/station/science/artifact)
"aiv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"aiw" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"aix" = (/obj/stool/chair,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
@@ -594,9 +594,9 @@
"alv" = (/turf/simulated/wall/r_wall,/area/station/quartermaster/storage)
"alw" = (/obj/submachine/cargopad{name = "Cargo Bay Pad"},/turf/simulated/floor,/area/station/quartermaster/storage)
"alx" = (/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/quartermaster/storage)
-"aly" = (/turf/simulated/wall,/area/station/maintenance/fore)
-"alz" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"alA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aly" = (/turf/simulated/wall,/area/station/maintenance/north)
+"alz" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"alA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"alB" = (/turf/space,/area/shuttle/research/station)
"alC" = (/turf/simulated/floor{tag = "icon-toxshuttle (NORTHWEST)"; icon_state = "toxshuttle"; dir = 9},/area/station/hallway/secondary/shuttle)
"alD" = (/turf/simulated/floor{tag = "icon-toxshuttle (NORTH)"; icon_state = "toxshuttle"; dir = 1},/area/station/hallway/secondary/shuttle)
@@ -609,8 +609,8 @@
"alK" = (/obj/machinery/conveyor{dir = 2; id = "QMLoad"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/quartermaster/storage)
"alL" = (/obj/machinery/conveyor_switch{id = "QMLoad"},/turf/simulated/floor,/area/station/quartermaster/storage)
"alM" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/door_control{id = "QMLoaddoor"; name = "Loading Door Control"; pixel_x = 24},/turf/simulated/floor,/area/station/quartermaster/storage)
-"alN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"alO" = (/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"alN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"alO" = (/turf/simulated/floor/plating,/area/station/maintenance/north)
"alP" = (/turf/simulated/floor{tag = "icon-toxshuttle (WEST)"; icon_state = "toxshuttle"; dir = 8},/area/station/hallway/secondary/shuttle)
"alQ" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"alR" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -625,7 +625,7 @@
"ama" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"amb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Cargo Bay Port"; dir = 4; name = "Security Camera"; network = "SS13"},/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/paper_bin{pixel_x = -5; pixel_y = 3},/turf/simulated/floor,/area/station/quartermaster/storage)
"amc" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/obj/machinery/camera{c_tag = "Cargo Bay Starboard"; dir = 8},/turf/simulated/floor,/area/station/quartermaster/storage)
-"amd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"amd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"ame" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"amf" = (/turf/simulated/floor{tag = "icon-escapecorner (EAST)"; icon_state = "escapecorner"; dir = 4},/area/station/hallway/secondary/shuttle)
"amg" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/station/hallway/secondary/shuttle)
@@ -641,13 +641,13 @@
"amq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/halloween,/turf/simulated/floor,/area/station/quartermaster/storage)
"amr" = (/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/quartermaster/storage)
"ams" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "12;31"},/turf/simulated/floor/plating,/area/station/quartermaster/storage)
-"amt" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"amu" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"amv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"amw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"amt" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"amu" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"amv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"amw" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"amx" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"amy" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"amz" = (/turf/simulated/floor/plating,/area/station/maintenance/port)
+"amz" = (/turf/simulated/floor/plating,/area/station/maintenance/west)
"amA" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "escape"; tag = "icon-escape (WEST)"},/area/station/hallway/secondary/shuttle)
"amB" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/computer/card,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"amC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -663,9 +663,9 @@
"amM" = (/obj/machinery/door/airlock/external{name = "Outpost Shuttle Airlock"; req_access_txt = "24"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/secondary/shuttle)
"amN" = (/obj/machinery/door/airlock/external{name = "Outpost Shuttle Airlock"; req_access_txt = "24"},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"amO" = (/obj/machinery/camera{c_tag = "Research Shuttle Dock"; dir = 8},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"amP" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"amQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"amR" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"amP" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"amQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"amR" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"amS" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"amT" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"amU" = (/obj/table/reinforced{tag = "icon-reinf_tabledir"; icon_state = "reinf_tabledir"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -686,10 +686,10 @@
"anj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster)
"ank" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "QM #1"},/obj/machinery/bot/mulebot{home_destination = "QM #1"},/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/storage)
"anl" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/storage)
-"anm" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"ann" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"anm" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"ann" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"ano" = (/obj/machinery/camera{dir = 1},/turf/space,/area)
-"anp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"anp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"anq" = (/turf/simulated/wall,/area/station/crew_quarters/locker)
"anr" = (/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"ans" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -707,8 +707,8 @@
"anE" = (/obj/submachine/ATM{pixel_x = 0; pixel_y = 32},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/station/quartermaster)
"anF" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/turf/simulated/floor/plating,/area/station/quartermaster)
"anG" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "QM #2"},/obj/machinery/light,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/storage)
-"anH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"anI" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"anH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"anI" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"anJ" = (/turf/simulated/floor{tag = "icon-toxshuttlecorner (NORTH)"; icon_state = "toxshuttlecorner"; dir = 1},/area/station/hallway/secondary/shuttle)
"anK" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"anL" = (/obj/machinery/bathtub{anchored = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
@@ -730,16 +730,16 @@
"aob" = (/turf/simulated/wall/r_wall,/area/station/quartermaster)
"aoc" = (/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"aod" = (/turf/simulated/wall,/area/station/maintenance/storage{name = "Renovation Area"})
-"aoe" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aoe" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aof" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/research_shuttle,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aog" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aoh" = (/obj/machinery/shower{tag = "icon-showerhead (WEST)"; icon_state = "showerhead"; dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"aoi" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"aoj" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"aok" = (/obj/item/paper{info = "Step One: Fill the tub with water or cleansant of your choice. Step 2: Drag yourself or another person onto the bath to clean them. Take them out again with an empty hand, and drain the tub when finished likewise."; name = "Bathing Instructions"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
-"aol" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aom" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aon" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aol" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aom" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aon" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aoo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/secondary/shuttle)
"aop" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aoq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-L2"; icon_state = "L2"},/area/station/hallway/secondary/shuttle)
@@ -761,7 +761,7 @@
"aoG" = (/turf/simulated/wall,/area/station/quartermaster)
"aoH" = (/obj/stool/barber_chair{desc = "A traditional barbershop chair, obviously a very old one at that. What it is doing on a space station you haven't the foggiest."; name = "Old Barber Chair"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"aoI" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
-"aoJ" = (/obj/item/wirecutters,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aoJ" = (/obj/item/wirecutters,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aoK" = (/obj/stool/chair{dir = 4},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aoL" = (/obj/stool/chair{dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aoM" = (/obj/stool/chair{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -769,19 +769,19 @@
"aoO" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/quartermaster)
"aoP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/quartermaster)
"aoQ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/computer/ordercomp,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/quartermaster)
-"aoR" = (/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aoR" = (/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aoS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"aoT" = (/turf/simulated/wall,/area/station/chapel/office)
"aoU" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/office)
"aoV" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/office)
"aoW" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/chapel/office)
-"aoX" = (/turf/simulated/wall,/area/station/maintenance/port)
-"aoY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aoZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aoX" = (/turf/simulated/wall,/area/station/maintenance/west)
+"aoY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aoZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"apa" = (/obj/machinery/door/window{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/locker)
"apb" = (/turf/simulated/wall,/area/station/crew_quarters/toilets)
-"apc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"apd" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"apc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"apd" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"ape" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Shuttle Bay"},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"apf" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/disposalpipe/segment,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"apg" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/secondary/shuttle)
@@ -793,8 +793,8 @@
"apm" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/quartermaster)
"apn" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/quartermaster)
"apo" = (/obj/machinery/status_display/supply_shuttle,/turf/simulated/wall,/area/station/quartermaster)
-"app" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"apq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fore)
+"app" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"apq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/north)
"apr" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"aps" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"apt" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
@@ -809,20 +809,20 @@
"apC" = (/obj/item/storage/toilet,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"apD" = (/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/machinery/light/small{dir = 1},/obj/mirror,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"apE" = (/obj/chem_sink,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
-"apF" = (/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/fore)
-"apG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apH" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apI" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apJ" = (/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apK" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apL" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apM" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apN" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apO" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apR" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"apS" = (/turf/simulated/floor{dir = 0; icon_state = "neutralcorner"; tag = "icon-neutralcorner (WEST)"},/area/station/hallway/primary/fore)
+"apF" = (/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/north)
+"apG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apH" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apI" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apJ" = (/turf/simulated/floor,/area/station/hallway/primary/north)
+"apK" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"apL" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apM" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apN" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apO" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"apR" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"apS" = (/turf/simulated/floor{dir = 0; icon_state = "neutralcorner"; tag = "icon-neutralcorner (WEST)"},/area/station/hallway/primary/north)
"apT" = (/turf/simulated/wall,/area/station/storage/emergency2)
"apU" = (/obj/decal/skeleton,/obj/decal/cleanable/blood,/turf/simulated/floor/plating,/area/station/storage/emergency2)
"apV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/clothing/shoes/moon,/turf/simulated/floor/plating,/area/station/storage/emergency2)
@@ -839,19 +839,19 @@
"aqg" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aqh" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aqi" = (/turf/simulated/wall,/area/station/chapel/main)
-"aqj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/luggable_computer,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aqj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/luggable_computer,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aqk" = (/obj/table{icon_state = "tabledir"; dir = 9},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aql" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aqm" = (/obj/machinery/shower{tag = "icon-showerhead (WEST)"; icon_state = "showerhead"; dir = 8},/obj/machinery/door/window/eastright,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/toilets)
"aqn" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"aqo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"aqp" = (/obj/machinery/door/airlock{name = "Toilet Cubicle"; req_access_txt = "0"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/station/crew_quarters/toilets)
-"aqq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"aqr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqs" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Quartermasters"; location = "Shuttle Bay Hallway"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqt" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqu" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Chapel Hallway"; location = "Quartermasters"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqv" = (/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"aqq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"aqr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqs" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Quartermasters"; location = "Shuttle Bay Hallway"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqt" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqu" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Chapel Hallway"; location = "Quartermasters"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqv" = (/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"aqw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/storage/emergency2)
"aqx" = (/obj/machinery/door/airlock/maintenance{name = "Renovation Area"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/maintenance/storage{name = "Renovation Area"})
"aqy" = (/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/office)
@@ -865,27 +865,27 @@
"aqG" = (/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"aqH" = (/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
"aqI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/chapel/main)
-"aqJ" = (/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aqJ" = (/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aqK" = (/obj/closet/wardrobe/black,/turf/simulated/floor,/area/station/crew_quarters/locker)
"aqL" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aqM" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aqN" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/storage/belt/utility,/turf/simulated/floor,/area/station/crew_quarters/locker)
"aqO" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aqP" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/crew_quarters/locker)
-"aqQ" = (/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"aqR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqU" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "shuttlebay"; tag = "icon-pipe-sj1 (WEST)"},/obj/machinery/camera{c_tag = "Fore Hallway Middle"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqV" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aqZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 0; icon_state = "neutralcorner"; tag = "icon-neutralcorner (WEST)"},/area/station/hallway/primary/fore)
-"ara" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "cargo"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"arb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"arc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"ard" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/fore)
+"aqQ" = (/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"aqR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqU" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "shuttlebay"; tag = "icon-pipe-sj1 (WEST)"},/obj/machinery/camera{c_tag = "Fore Hallway Middle"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqV" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqW" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aqZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 0; icon_state = "neutralcorner"; tag = "icon-neutralcorner (WEST)"},/area/station/hallway/primary/north)
+"ara" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "cargo"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"arb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"arc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"ard" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/north)
"are" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/station/storage/emergency2)
"arf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/securearea{desc = "A poster that reads 'CLEAN HANDS SAVE LIVES'."; icon_state = "chsl"; name = "CLEAN HANDS SAVE LIVES"; pixel_y = 32},/turf/simulated/floor,/area/station/storage/emergency2)
"arg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/rack,/obj/item/tank/oxygen,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor,/area/station/storage/emergency2)
@@ -905,8 +905,8 @@
"aru" = (/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"arv" = (/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"arw" = (/obj/machinery/camera{c_tag = "Chapel Starboard"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"arx" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ary" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"arx" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ary" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"arz" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/closet/wardrobe/grey,/turf/simulated/floor,/area/station/crew_quarters/locker)
"arA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/locker)
"arB" = (/obj/table{icon_state = "tabledir"; dir = 10},/turf/simulated/floor,/area/station/crew_quarters/locker)
@@ -916,17 +916,17 @@
"arF" = (/obj/machinery/camera{c_tag = "Bathrooms"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/obj/item/clothing/head/plunger,/obj/mirror,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"arG" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"arH" = (/obj/machinery/door/airlock{name = "Toilet Cubicle"; req_access_txt = "0"},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/station/crew_quarters/toilets)
-"arI" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Port"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"arJ" = (/turf/simulated/wall,/area/station/hallway/primary/fore)
+"arI" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Port"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"arJ" = (/turf/simulated/wall,/area/station/hallway/primary/north)
"arK" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/inner)
-"arL" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/fore)
-"arM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
+"arL" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/north)
+"arM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
"arN" = (/turf/simulated/wall,/area/station/storage/emergency)
"arO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/emergency)
"arP" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/emergency)
"arQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/emergency)
"arR" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency)
-"arS" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
+"arS" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
"arT" = (/obj/machinery/camera{c_tag = "Barbershop"; dir = 4},/obj/machinery/space_heater,/turf/simulated/floor,/area/station/storage/emergency2)
"arU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/emergency2)
"arV" = (/turf/simulated/floor,/area/station/storage/emergency2)
@@ -946,8 +946,8 @@
"asj" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/communications_dish{name = "Auxiliary Communications dish"},/turf/simulated/floor/plating/airless,/area)
"ask" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area)
"asl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/plating/airless,/area)
-"asm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/port)
-"asn" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"asm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/west)
+"asn" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aso" = (/turf/simulated/wall,/area/station/crew_quarters/quarters)
"asp" = (/obj/closet/wardrobe/mixed,/turf/simulated/floor,/area/station/crew_quarters/locker)
"asq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/crew_quarters/locker)
@@ -957,10 +957,10 @@
"asu" = (/obj/closet/emcloset,/turf/simulated/floor,/area/station/crew_quarters/locker)
"asv" = (/obj/item/storage/toilet,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"asw" = (/obj/machinery/light/small,/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
-"asx" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"asy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"asA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/fore)
+"asx" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"asy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/north)
+"asz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"asA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/north)
"asB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"asC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"asD" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -974,7 +974,7 @@
"asL" = (/obj/item/extinguisher{pixel_y = 8},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/storage/emergency)
"asM" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/storage/emergency)
"asN" = (/turf/simulated/floor,/area/station/storage/emergency)
-"asO" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"asO" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"asP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/station/storage/emergency2)
"asQ" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/storage/emergency2)
"asR" = (/obj/table,/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/storage/emergency2)
@@ -1002,8 +1002,8 @@
"atn" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/crate,/obj/item/clothing/shoes/cowboy,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"ato" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"atp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor,/area/station/crew_quarters/locker)
-"atq" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"atr" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"atq" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"atr" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
"ats" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"att" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"atu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1013,60 +1013,60 @@
"aty" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/storage/emergency)
"atz" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/station/storage/emergency)
"atA" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/storage/emergency)
-"atB" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"atC" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"atB" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"atC" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"atD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency2)
"atE" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"atF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 4; icon_state = "chapel"},/area/station/chapel/main)
"atG" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"atH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
"atI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/chapel/main)
-"atJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"atK" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"atJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"atK" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
"atL" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/crew_quarters/quarters)
"atM" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"atN" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"atO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor,/area/station/crew_quarters/locker)
-"atP" = (/turf/simulated/floor{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/station/hallway/primary/fore)
-"atQ" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"atR" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"atS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"atT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"atU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"atV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"atW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/station/hallway/primary/fore)
-"atX" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atY" = (/obj/machinery/vending/coffee,/turf/simulated/floor,/area/station/hallway/primary/fore)
+"atP" = (/turf/simulated/floor{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/station/hallway/primary/north)
+"atQ" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"atR" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"atS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"atT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"atU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"atV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"atW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/station/hallway/primary/north)
+"atX" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atY" = (/obj/machinery/vending/coffee,/turf/simulated/floor,/area/station/hallway/primary/north)
"atZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aua" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
-"aub" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
-"auc" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
+"aua" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
+"aub" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/north)
+"auc" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/north)
"aud" = (/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"aue" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"auf" = (/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor,/area/station/storage/emergency)
"aug" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency)
-"auh" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/fore)
-"aui" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"auj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/station/hallway/primary/fore)
+"auh" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/north)
+"aui" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"auj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/station/hallway/primary/north)
"auk" = (/obj/machinery/camera{c_tag = "Chapel Entrance"; dir = 4},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/chapel/main)
"aul" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "carpetNE"},/area/station/chapel/main)
"aum" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aun" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"auo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"aup" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"auq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"auq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aur" = (/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aus" = (/obj/stool/chair{dir = 4},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aut" = (/obj/table,/obj/machinery/light/lamp,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"auu" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"auv" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/turf/simulated/floor,/area/station/crew_quarters/locker)
-"auw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aux" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/fore)
+"auw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"aux" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/north)
+"auy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/north)
"auz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"auA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"auB" = (/turf/simulated/floor,/area/station/engine/substation/fore)
-"auC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/fore)
+"auB" = (/turf/simulated/floor,/area/station/engine/substation/north)
+"auC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/north)
"auD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"auE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/storage/emergency)
"auF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor,/area/station/storage/emergency)
@@ -1074,21 +1074,21 @@
"auH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/storage/emergency)
"auI" = (/obj/item/extinguisher{pixel_y = 8},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/storage/emergency)
"auJ" = (/obj/closet/emcloset,/turf/simulated/floor,/area/station/storage/emergency)
-"auK" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Starboard"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"auL" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"auK" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Starboard"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"auL" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/north)
+"auM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"auN" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"auO" = (/turf/simulated/floor{icon_state = "carpetW"},/area/station/chapel/main)
"auP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpet2"},/area/station/chapel/main)
"auQ" = (/turf/simulated/floor{icon_state = "carpetN"},/area/station/chapel/main)
"auR" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/chapel/main)
"auS" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
-"auT" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"auU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"auV" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"auW" = (/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"auX" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"auY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"auT" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"auU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"auV" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"auW" = (/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"auX" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"auY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"auZ" = (/obj/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 6},/obj/item/pen,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"ava" = (/obj/machinery/door/window/northleft,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"avb" = (/obj/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -1097,13 +1097,13 @@
"ave" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"avf" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"avg" = (/obj/secure_closet/personal,/turf/simulated/floor,/area/station/crew_quarters/locker)
-"avh" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"avi" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"avj" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/fore)
-"avk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/fore)
+"avh" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/north)
+"avi" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/north)
+"avj" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/north)
+"avk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/north)
"avl" = (/turf/simulated/wall,/area/station/maintenance/inner)
-"avm" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"avn" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"avm" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"avn" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/north)
"avo" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/chapel/main)
"avp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpet"},/area/station/chapel/main)
"avq" = (/turf/simulated/floor{icon_state = "carpet"},/area/station/chapel/main)
@@ -1112,11 +1112,11 @@
"avt" = (/obj/machinery/light/small,/obj/stool,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"avu" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"avv" = (/obj/machinery/light/small,/obj/stool,/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"avw" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avx" = (/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"avz" = (/obj/machinery/camera{c_tag = "Port Maintenance External Access"; dir = 4; name = "Security Camera"; network = "SS13"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"avA" = (/obj/cable,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"avw" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avx" = (/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"avz" = (/obj/machinery/camera{c_tag = "Port Maintenance External Access"; dir = 4; name = "Security Camera"; network = "SS13"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"avA" = (/obj/cable,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"avB" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"avC" = (/turf/simulated/floor{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/station/crew_quarters/quarters)
"avD" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/securearea{desc = "You have no idea who these people are. Who's poster is this, anyway?"; icon_state = "rush"; name = "historic artifact"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -1126,18 +1126,18 @@
"avH" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/station/crew_quarters/quarters)
"avI" = (/obj/secure_closet/personal,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/crew_quarters/locker)
"avJ" = (/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/eva)
-"avK" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/fore)
-"avL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/fore)
-"avM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"avK" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/north)
+"avL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/north)
+"avM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"avN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"avO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"avP" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"avQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"avR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"avS" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"avT" = (/turf/simulated/floor{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/station/hallway/primary/fore)
-"avU" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"avV" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
+"avT" = (/turf/simulated/floor{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/station/hallway/primary/north)
+"avU" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"avV" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
"avW" = (/turf/simulated/wall,/area/station/crew_quarters/pool)
"avX" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/eastright,/turf/simulated/floor,/area/station/chapel/main)
"avY" = (/obj/stool,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -1145,9 +1145,9 @@
"awa" = (/obj/machinery/door{icon = 'icons/obj/doors/Door1.dmi'; name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
"awb" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (NORTH)"; icon_state = "door0"; dir = 1},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"awc" = (/turf/simulated/wall,/area/station/medical/morgue)
-"awd" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"awe" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"awf" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"awd" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"awe" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"awf" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"awg" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"awh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/crew_quarters/quarters)
"awi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/quarters)
@@ -1156,7 +1156,7 @@
"awl" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/crew_quarters/quarters)
"awm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/locker)
"awn" = (/obj/secure_closet/personal,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/crew_quarters/locker)
-"awo" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Shuttle Bay Hallway"; location = "Cafeteria"},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"awo" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Shuttle Bay Hallway"; location = "Cafeteria"},/turf/simulated/floor,/area/station/hallway/primary/north)
"awp" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "eva"; name = "EVA Blast Doors"; opacity = 0; p_open = 1},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
"awq" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/storage/belt/utility,/obj/item/device/gps,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"awr" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/device/prox_sensor,/obj/item/device/prox_sensor,/obj/item/device/radio,/obj/item/device/t_scanner,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
@@ -1165,8 +1165,8 @@
"awu" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"awv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aww" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/crate,/obj/item/dice,/obj/item/mousetrap,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"awx" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/substation/fore)
-"awy" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/substation/fore)
+"awx" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/substation/north)
+"awy" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/substation/north)
"awz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"awA" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"awB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1174,8 +1174,8 @@
"awD" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/glass{name = "Pool"},/turf/simulated/floor,/area/station/crew_quarters/pool)
"awE" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/clothing/under/shorts/blue{desc = "In space?"; name = "swimming trunks"},/turf/simulated/floor,/area/station/crew_quarters/pool)
"awF" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/clothing/under/shorts/blue{desc = "In space?"; name = "swimming trunks"},/turf/simulated/floor,/area/station/crew_quarters/pool)
-"awG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"awH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bridge Hallway"; location = "Chapel Hallway"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"awG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"awH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bridge Hallway"; location = "Chapel Hallway"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"awI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"awJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetW"},/area/station/chapel/main)
"awK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "carpet2"},/area/station/chapel/main)
@@ -1186,10 +1186,10 @@
"awP" = (/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"awQ" = (/obj/crematorium,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"awR" = (/obj/machinery/crema_switch{pixel_x = 24},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"awS" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"awT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"awU" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"awV" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"awS" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"awT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"awU" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"awV" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
"awW" = (/turf/simulated/floor{tag = "icon-greencorner (EAST)"; icon_state = "greencorner"; dir = 4},/area/station/crew_quarters/quarters)
"awX" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/crew_quarters/quarters)
"awY" = (/obj/machinery/camera{c_tag = "Crew Quarters"},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/crew_quarters/quarters)
@@ -1206,16 +1206,16 @@
"axj" = (/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"axk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"axl" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"axm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/fore)
-"axn" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/power/terminal,/obj/machinery/camera{c_tag = "Fore Electrical Substation"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/fore)
-"axo" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"axm" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/north)
+"axn" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/power/terminal,/obj/machinery/camera{c_tag = "Fore Electrical Substation"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/north)
+"axo" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"axp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/inner)
"axq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/inner)
"axr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/crew_quarters/pool)
"axs" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor,/area/station/crew_quarters/pool)
"axt" = (/turf/simulated/floor,/area/station/crew_quarters/pool)
-"axu" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "chapel"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"axv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"axu" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "chapel"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"axv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"axw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/chapel/main)
"axx" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/main)
"axy" = (/obj/item/device/radio/intercom{frequency = 1443; name = "Confession Intercom"; pixel_x = -27; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
@@ -1224,11 +1224,11 @@
"axB" = (/obj/table,/obj/item/device/radio/intercom{frequency = 1443; name = "Confession Intercom"; pixel_x = 27; pixel_y = 0},/obj/item/paper,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
"axC" = (/obj/machinery/camera{c_tag = "Morgue"; dir = 4},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"axD" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"axE" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"axF" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"axG" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axH" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axI" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"axE" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"axF" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"axG" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axH" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axI" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/west)
"axJ" = (/obj/submachine/ATM{pixel_x = -30},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"axK" = (/obj/stool/chair,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"axL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/quarters)
@@ -1238,14 +1238,14 @@
"axP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/crate/rcd,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"axQ" = (/obj/machinery/dispenser{pltanks = 0},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"axR" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"axS" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/fore)
-"axT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"axS" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/north)
+"axT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"axU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area)
"axV" = (/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/crew_quarters/pool)
"axW" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/obj/item/beach_ball,/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/crew_quarters/pool)
-"axX" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"axY" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"axZ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"axX" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"axY" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"axZ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"aya" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"ayb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Chapel"},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"ayc" = (/turf/simulated/wall,/area/station/storage/tech)
@@ -1261,20 +1261,20 @@
"aym" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table,/obj/item/game_kit,/turf/simulated/floor,/area/station/crew_quarters/quarters)
"ayn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"ayo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/crew_quarters/quarters)
-"ayp" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"ayp" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/north)
"ayq" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"ayr" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/storage/lightbox/tubes,/obj/item/storage/lightbox/tubes,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"ays" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/item/rods{amount = 50},/obj/item/sheet/glass{amount = 50},/obj/item/weldingtool,/obj/item/wrench,/obj/item/storage/firstaid/oxygen,/obj/machinery/camera{c_tag = "EVA"; dir = 8},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
-"ayt" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/substation/fore)
-"ayu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/substation/fore)
+"ayt" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/substation/north)
+"ayu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/substation/north)
"ayv" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"ayw" = (/obj/pool{tag = "icon-pool (NORTHWEST)"; icon_state = "pool"; dir = 9},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"ayx" = (/obj/pool{tag = "icon-pool (NORTH)"; icon_state = "pool"; dir = 1},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"ayy" = (/obj/pool{tag = "icon-pool (NORTHEAST)"; icon_state = "pool"; dir = 5},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"ayz" = (/obj/machinery/camera{c_tag = "Pool"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"ayA" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"ayB" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"ayC" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/starboard)
+"ayA" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"ayB" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"ayC" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/east)
"ayD" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/mail{mail_tag = "chapel"; name = "mail chute-'Chapel'"},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"ayE" = (/turf/simulated/wall/r_wall,/area/station/chapel/main)
"ayF" = (/turf/simulated/wall/r_wall,/area/station/teleporter)
@@ -1284,11 +1284,11 @@
"ayJ" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/disk/data/floppy/read_only/engine_prog,/obj/item/disk/data/floppy/read_only/medical_progs,/obj/item/disk/data/floppy/read_only/communications,/obj/item/disk/data/floppy/read_only/network_progs,/obj/item/disk/data/floppy/read_only/security_progs,/obj/item/disk/data/floppy/computer3boot,/turf/simulated/floor/plating,/area/station/storage/tech)
"ayK" = (/obj/morgue,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"ayL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/morgue)
-"ayM" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayN" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayO" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayP" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ayQ" = (/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"ayM" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayN" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayO" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayP" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ayQ" = (/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/west)
"ayR" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"ayS" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/quarters)
"ayT" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = null; req_access_txt = "18"},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
@@ -1302,11 +1302,11 @@
"azb" = (/obj/poolwater,/turf/unsimulated/floor/pool,/area/station/crew_quarters/pool)
"azc" = (/obj/pool{tag = "icon-pool (EAST)"; icon_state = "pool"; dir = 4},/obj/pool_springboard,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"azd" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"aze" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"azf" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"azg" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/starboard)
-"azh" = (/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"azi" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"aze" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"azf" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"azg" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/east)
+"azh" = (/turf/simulated/wall,/area/station/hallway/primary/east)
+"azi" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"azj" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer/teleporter,/turf/simulated/floor,/area/station/teleporter)
"azk" = (/obj/machinery/teleport/portal_generator,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Teleporter"; dir = 2},/turf/simulated/floor,/area/station/teleporter)
"azl" = (/obj/machinery/teleport/portal_ring,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/teleporter)
@@ -1315,15 +1315,15 @@
"azo" = (/turf/simulated/floor/plating,/area/station/storage/tech)
"azp" = (/obj/rack,/obj/item/circuitboard/robotics,/obj/item/circuitboard/teleporter,/obj/item/circuitboard/arcade,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/storage/tech)
"azq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"azr" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azu" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azv" = (/obj/disposalpipe/junction{dir = 0; icon_state = "pipe-y"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azy" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"azr" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azt" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azu" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azv" = (/obj/disposalpipe/junction{dir = 0; icon_state = "pipe-y"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azy" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/west)
"azA" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"azB" = (/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/screwdriver,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"azC" = (/obj/rack,/obj/item/tank/jetpack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
@@ -1331,10 +1331,10 @@
"azE" = (/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"azF" = (/obj/poolwater,/obj/landmark/halloween,/turf/unsimulated/floor/pool,/area/station/crew_quarters/pool)
"azG" = (/obj/pool{tag = "icon-pool (EAST)"; icon_state = "pool"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"azH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Starboard Hallway Fore"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"azI" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/starboard)
-"azJ" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/starboard)
-"azK" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/starboard)
+"azH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Starboard Hallway Fore"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"azI" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/east)
+"azJ" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/east)
+"azK" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/east)
"azL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/teleporter)
"azM" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/teleporter)
"azN" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/teleporter)
@@ -1344,13 +1344,13 @@
"azR" = (/obj/rack,/obj/item/circuitboard/cloning,/obj/item/circuitboard/aiupload,/obj/item/circuitboard/card,/turf/simulated/floor/plating,/area/station/storage/tech)
"azS" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"azT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"azU" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azV" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azW" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azY" = (/turf/simulated/wall/r_wall,/area/station/maintenance/port)
+"azU" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azV" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azW" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azY" = (/turf/simulated/wall/r_wall,/area/station/maintenance/west)
"azZ" = (/turf/simulated/wall/r_wall,/area/station/medical/head)
-"aAa" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/port)
+"aAa" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/west)
"aAb" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/crowbar,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aAc" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aAd" = (/obj/pool{tag = "icon-pool (SOUTHWEST)"; icon_state = "pool"; dir = 10},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
@@ -1358,11 +1358,11 @@
"aAf" = (/obj/pool{density = 0},/obj/pool{density = 0; dir = 8; icon_state = "ladder"; name = "ladder"; tag = "icon-ladder (WEST)"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aAg" = (/obj/pool{tag = "icon-pool (SOUTHEAST)"; icon_state = "pool"; dir = 6},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aAh" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"aAi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aAj" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aAk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aAl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aAm" = (/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aAi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aAj" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aAk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aAl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aAm" = (/turf/simulated/floor,/area/station/hallway/primary/east)
"aAn" = (/obj/item/device/radio/beacon,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/teleporter)
"aAo" = (/turf/simulated/floor,/area/station/teleporter)
"aAp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/station/teleporter)
@@ -1375,53 +1375,53 @@
"aAw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/morgue,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aAx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aAy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aAz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"aAA" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aAB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aAC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aAD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/port)
-"aAE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/wrench/monkey,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aAF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/maintenance/port)
+"aAz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"aAA" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aAB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aAC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aAD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/west)
+"aAE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/wrench/monkey,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aAF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/maintenance/west)
"aAG" = (/obj/item/storage/firstaid/regular,/obj/table,/obj/item/storage/firstaid/regular,/obj/item/hand_labeler,/obj/item/reagent_containers/food/snacks/cookie/jaffa,/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aAH" = (/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aAI" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aAJ" = (/obj/closet/wardrobe/white{anchored = 1; desc = "A classic wooden dresser. Comes prestocked with 6 changes of clothes."; icon_closed = "dresser"; icon_opened = "dresser_open"; icon_state = "dresser"; name = "Medical Dresser"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aAK" = (/obj/stool/bed,/obj/disposalpipe/segment,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
-"aAL" = (/turf/simulated/wall,/area/station/hallway/primary/port)
-"aAM" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/port)
-"aAN" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/port)
+"aAL" = (/turf/simulated/wall,/area/station/hallway/primary/west)
+"aAM" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/west)
+"aAN" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/west)
"aAO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAP" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aAR" = (/obj/stool,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aAS" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aAT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/pool)
-"aAU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aAV" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aAU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aAV" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
"aAW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/turf/simulated/floor,/area/station/teleporter)
-"aAX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"aAX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"aAY" = (/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/turf/simulated/floor,/area/station/storage/tech)
"aAZ" = (/obj/machinery/camera{c_tag = "Morgue"; dir = 10},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aBa" = (/obj/item/storage/lglo_kit,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aBb" = (/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBd" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBe" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBf" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBg" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aBh" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aBb" = (/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBd" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBe" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBf" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBg" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aBh" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aBi" = (/turf/simulated/wall,/area/station/medical/robotics)
"aBj" = (/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"aBk" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/medical/head)
"aBl" = (/obj/stool/chair,/obj/landmark/start{name = "Head Surgeon"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aBm" = (/obj/disposalpipe/segment,/obj/chem_sink,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
-"aBn" = (/turf/simulated/floor,/area/station/hallway/primary/port)
-"aBo" = (/obj/disposalpipe/segment,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aBp" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aBq" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aBr" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aBs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aBt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aBn" = (/turf/simulated/floor,/area/station/hallway/primary/west)
+"aBo" = (/obj/disposalpipe/segment,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aBp" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aBq" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/north)
+"aBr" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aBs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aBt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/north)
"aBu" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aBv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aBw" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
@@ -1430,20 +1430,20 @@
"aBz" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aBA" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/vending/coffee,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aBB" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/maintenance/inner)
-"aBC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aBD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aBE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aBF" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBG" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBI" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBJ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBK" = (/obj/machinery/camera{c_tag = "Comm Station"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aBC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aBD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aBE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aBF" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBG" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBH" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBI" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBJ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBK" = (/obj/machinery/camera{c_tag = "Comm Station"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aBN" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/communications_dish{tag = "MAIN_DISH_SS13"},/turf/simulated/floor/plating/airless,/area)
-"aBO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aBP" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aBO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aBP" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aBQ" = (/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance"; req_access_txt = "12;29"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aBR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/medical/robotics)
"aBS" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1456,41 +1456,41 @@
"aBZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aCa" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/head_surgeon,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aCb" = (/obj/machinery/door/airlock/command{name = "Head Surgeon's Office"; req_access = null; req_access_txt = "53"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/station/medical/head)
-"aCc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aCd" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
+"aCc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aCd" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
"aCe" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCf" = (/obj/machinery/camera{c_tag = "Inner Maintenance Fore Port"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCg" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aCh" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aCi" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aCj" = (/obj/closet,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aCk" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCl" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCm" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCn" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCo" = (/obj/stool/chair{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCp" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aCk" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCl" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCm" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCn" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCo" = (/obj/stool/chair{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCp" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aCr" = (/obj/crate,/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cable_coil,/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,/area/station/medical/robotics)
"aCs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/medical/robotics)
"aCt" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/circular_saw,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/scalpel,/obj/item/scalpel,/turf/simulated/floor,/area/station/medical/robotics)
"aCu" = (/obj/machinery/door/airlock/glass{name = "Head Surgeon's Office"; req_access_txt = "53"},/turf/simulated/floor{tag = "icon-whitehall (NORTH)"; icon_state = "whitehall"; dir = 1},/area/station/medical/head)
"aCv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/head)
-"aCw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aCw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
"aCx" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCy" = (/obj/machinery/camera{c_tag = "Inner Maintenance"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCz" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Inner Maintenance"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aCC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCI" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCJ" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aCK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aCC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCI" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCJ" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aCK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aCL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aCM" = (/obj/machinery/computer3/generic/robotics_research,/turf/simulated/floor,/area/station/medical/robotics)
"aCN" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/cell_charger,/obj/item/crowbar,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/device/prox_sensor,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1499,23 +1499,23 @@
"aCQ" = (/obj/landmark/start{name = "Roboticist"},/turf/simulated/floor,/area/station/medical/robotics)
"aCR" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/medical/robotics)
"aCS" = (/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/medical/robotics)
-"aCT" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aCU" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aCT" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aCU" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
"aCV" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCW" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCX" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aCY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aCZ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aDa" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
-"aDb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"aDc" = (/obj/machinery/camera{c_tag = "Starboard Hallway MidFore"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aDb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/east)
+"aDc" = (/obj/machinery/camera{c_tag = "Starboard Hallway MidFore"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
"aDd" = (/turf/simulated/wall,/area/station/security/detectives_office)
"aDe" = (/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aDf" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aDg" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aDf" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aDg" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aDh" = (/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aDi" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/command{name = "AI Module Storage"; req_access_txt = "16"},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
-"aDj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aDj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aDk" = (/obj/machinery/beacon{anchored = 1; sname = "Station"},/turf/simulated/floor/plating/airless,/area)
"aDl" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aDm" = (/obj/machinery/manufacturer/robotics,/turf/simulated/floor,/area/station/medical/robotics)
@@ -1523,7 +1523,7 @@
"aDo" = (/obj/machinery/optable,/turf/simulated/floor,/area/station/medical/robotics)
"aDp" = (/obj/machinery/computer/operating,/turf/simulated/floor,/area/station/medical/robotics)
"aDq" = (/obj/submachine/robomoduler,/turf/simulated/floor,/area/station/medical/robotics)
-"aDr" = (/obj/machinery/camera{c_tag = "Port Hallway Fore"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aDr" = (/obj/machinery/camera{c_tag = "Port Hallway Fore"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/west)
"aDs" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aDt" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aDu" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1542,23 +1542,23 @@
"aDH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aDI" = (/obj/machinery/turretid{pixel_x = -24},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aDJ" = (/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
-"aDK" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aDK" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aDN" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aDO" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/medical/robotics)
"aDP" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/medical/robotics)
"aDQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/medical/robotics)
-"aDR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/port)
-"aDS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aDT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aDU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aDR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/west)
+"aDS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aDT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aDU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aDV" = (/obj/decal/boxingrope{tag = "icon-ringrope (NORTHWEST)"; icon_state = "ringrope"; dir = 9},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aDW" = (/obj/decal/boxingrope,/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aDX" = (/obj/decal/boxingrope{tag = "icon-ringrope (NORTHEAST)"; icon_state = "ringrope"; dir = 5},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aDY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"aDZ" = (/obj/machinery/door/window/westright,/turf/simulated/floor,/area/station/crew_quarters/fitness)
-"aEa" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aEa" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
"aEb" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aEc" = (/turf/simulated/floor{icon_state = "carpetNW"},/area/station/security/detectives_office)
"aEd" = (/obj/table/woodentable{dir = 9},/obj/item/hand_labeler,/obj/item/device/audio_log{pixel_x = 3; pixel_y = -3},/turf/simulated/floor{icon_state = "carpetN"},/area/station/security/detectives_office)
@@ -1570,7 +1570,7 @@
"aEj" = (/obj/machinery/light{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aEk" = (/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aEl" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
-"aEm" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aEm" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aEn" = (/obj/landmark/start{name = "Roboticist"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/medical/robotics)
"aEo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{tag = "icon-caution_east (WEST)"; icon_state = "caution_east"; dir = 8},/area/station/medical/robotics)
"aEp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/submachine/cargopad{name = "Robotics Pad"},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1582,7 +1582,7 @@
"aEv" = (/obj/decal/boxingropeenter{dir = 4; icon_state = "ringrope"; pixel_x = 0; tag = "icon-ringrope (EAST)"},/obj/stool,/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aEw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"aEx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/westleft,/turf/simulated/floor,/area/station/crew_quarters/fitness)
-"aEy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aEy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/east)
"aEz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Station Intercom (Security)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aEA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/security/detectives_office)
"aEB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table/woodentable{dir = 10},/obj/deskclutter,/obj/machinery/light/lamp/green,/turf/simulated/floor{icon_state = "carpetS"},/area/station/security/detectives_office)
@@ -1621,12 +1621,12 @@
"aFi" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/table,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aFj" = (/obj/stool/bed,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aFk" = (/obj/secure_closet/medical2,/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aFl" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aFl" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aFm" = (/obj/cable,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aFn" = (/obj/stool,/obj/decal/boxingropeenter{dir = 8; icon_state = "ringrope"; pixel_x = 0; tag = "icon-ringrope (WEST)"},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aFo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/turf/simulated/floor,/area/station/crew_quarters/fitness)
-"aFp" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aFq" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aFp" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aFq" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
"aFr" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/security/detectives_office)
"aFs" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aFt" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
@@ -1641,17 +1641,17 @@
"aFC" = (/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aFD" = (/obj/machinery/door/window/westleft{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aFE" = (/obj/machinery/camera{c_tag = "Medbay Cell #2"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aFF" = (/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
-"aFG" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/station/hallway/primary/starboard)
-"aFH" = (/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/hallway/primary/starboard)
-"aFI" = (/turf/simulated/floor{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/station/hallway/primary/starboard)
+"aFF" = (/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
+"aFG" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/station/hallway/primary/east)
+"aFH" = (/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/hallway/primary/east)
+"aFI" = (/turf/simulated/floor{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/station/hallway/primary/east)
"aFJ" = (/turf/simulated/wall/r_wall,/area/station/security/detectives_office)
"aFK" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aFL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/card/id/captains_spare,/obj/item/pinpointer,/obj/item/hand_tele,/turf/simulated/floor,/area/station/crew_quarters/captain)
"aFM" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/machinery/recharger{pixel_y = 3},/obj/item/storage/photo_album{pixel_y = -10},/obj/item/camera_test,/turf/simulated/floor,/area/station/crew_quarters/captain)
"aFN" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/captain)
-"aFO" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFP" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aFO" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFP" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aFQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/medical/medbay)
"aFR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/item/port_a_medbay_remote,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aFS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -1662,8 +1662,8 @@
"aFX" = (/obj/machinery/light,/turf/simulated/floor,/area/station/crew_quarters/fitness)
"aFY" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor,/area/station/crew_quarters/fitness)
"aFZ" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/clothing/gloves/boxing,/obj/item/clothing/gloves/boxing,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/black,/turf/simulated/floor,/area/station/crew_quarters/fitness)
-"aGa" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aGb" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aGa" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aGb" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aGc" = (/turf/simulated/wall/r_wall,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aGd" = (/obj/item/reagent_containers/food/drinks/bottle/thegoodstuff,/obj/shrub/captainshrub{pixel_y = 9},/obj/machinery/door/window/southleft{pixel_y = 2; req_access_txt = "20"},/turf/simulated/floor,/area/station/crew_quarters/captain)
"aGe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/crew_quarters/captain)
@@ -1692,8 +1692,8 @@
"aGB" = (/obj/machinery/camera{c_tag = "Medbay Cell #1"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aGC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aGD" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aGE" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aGF" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aGE" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aGF" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aGG" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Head of Research's Office"; dir = 4},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aGH" = (/obj/landmark/start{name = "Chief Engineer"},/obj/stool,/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aGI" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
@@ -1709,9 +1709,9 @@
"aGS" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/table,/obj/bedsheetbin,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aGT" = (/obj/stool/bed,/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aGU" = (/obj/stool/bed,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
-"aGV" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
+"aGV" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
"aGW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/camera{c_tag = "Inner Maintenance"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aGX" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aGX" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aGY" = (/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aGZ" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aHa" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "black"; tag = "icon-dark"},/area/station/crew_quarters/captain)
@@ -1726,9 +1726,9 @@
"aHj" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aHk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aHl" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aHm" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aHn" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security Hallway"; location = "Bridge Hallway"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aHo" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aHm" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aHn" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security Hallway"; location = "Bridge Hallway"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aHo" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aHp" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aHq" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aHr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access = null; req_access_txt = "19"},/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/engine/eva{name = "Chief Engineer's Office"})
@@ -1749,17 +1749,17 @@
"aHG" = (/obj/table,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aHH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "medbay"; name = "mail chute-'Medbay'"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aHI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aHJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
-"aHK" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aHJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
+"aHK" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aHL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aHN" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/port)
+"aHN" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/west)
"aHO" = (/obj/machinery/camera{c_tag = "Inner Maintenance Starboard Airlock"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHP" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHQ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aHR" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aHS" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aHT" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aHR" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aHS" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aHT" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aHU" = (/turf/simulated/wall,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aHV" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aHW" = (/turf/simulated/floor{icon_state = "carpetNW"},/area/station/bridge)
@@ -1768,7 +1768,7 @@
"aHZ" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/bridge)
"aIa" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aIb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aIc" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aIc" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aId" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/medical/medbay)
"aIe" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aIf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
@@ -1778,11 +1778,11 @@
"aIj" = (/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Medbay Lobby"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aIk" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aIl" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aIm" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aIm" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
"aIn" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aIo" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aIp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/engine/substation/port)
-"aIq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/substation/port)
+"aIo" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aIp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/engine/substation/west)
+"aIq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/substation/west)
"aIr" = (/obj/secure_closet/engineering_chief,/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aIs" = (/obj/table,/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_y = 11},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 4},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aIt" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/engine/eva{name = "Chief Engineer's Office"})
@@ -1796,10 +1796,10 @@
"aIB" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aIC" = (/obj/machinery/door/window/westright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aID" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aIE" = (/obj/landmark/start{name = "Engineer"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aIF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/port)
-"aIG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aIH" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aIE" = (/obj/landmark/start{name = "Engineer"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aIF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/west)
+"aIG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aIH" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aII" = (/turf/simulated/wall/r_wall,/area/station/bridge)
"aIJ" = (/turf/simulated/wall,/area/station/bridge)
"aIK" = (/turf/simulated/wall,/area/station/crew_quarters/captain)
@@ -1813,17 +1813,17 @@
"aIS" = (/obj/machinery/atmospherics/pipe/manifold{icon_state = "manifold"; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aIT" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9; layer = 3; level = 2},/obj/landmark{name = "peststart"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aIU" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aIV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aIW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/substation/port)
-"aIX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/port)
+"aIV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aIW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/substation/west)
+"aIX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/west)
"aIY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area)
"aIZ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aJa" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aJb" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area)
"aJc" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area)
"aJd" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area)
-"aJe" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/starboard)
-"aJf" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aJe" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/east)
+"aJf" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/hallway/primary/east)
"aJg" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = null; req_access_txt = "19"},/turf/simulated/floor,/area/station/bridge)
"aJh" = (/turf/simulated/floor,/area/station/bridge)
"aJi" = (/obj/machinery/camera{c_tag = "Bridge Entrance"; dir = 2},/turf/simulated/floor,/area/station/bridge)
@@ -1835,24 +1835,24 @@
"aJo" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "carpet"},/area/station/bridge)
"aJp" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpetE"},/area/station/bridge)
"aJq" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aJr" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aJr" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aJs" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aJt" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aJu" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aJv" = (/obj/machinery/camera{c_tag = "Port Hallway Center"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aJv" = (/obj/machinery/camera{c_tag = "Port Hallway Center"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aJw" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Inner Maintenance Port"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aJx" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aJy" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aJz" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Port Electrical Substation"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/port)
+"aJy" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aJz" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Port Electrical Substation"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/west)
"aJA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area)
"aJB" = (/obj/structure/girder,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"aJC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area)
-"aJD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/starboard)
-"aJE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/machinery/camera{c_tag = "Starboard Electrical Substation"; dir = 4},/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aJF" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aJD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/east)
+"aJE" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/machinery/camera{c_tag = "Starboard Electrical Substation"; dir = 4},/turf/simulated/floor,/area/station/engine/substation/east)
+"aJF" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/east)
"aJG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aJH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Starboard Hallway Center"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aJI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aJH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Starboard Hallway Center"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aJI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aJJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = null; req_access_txt = "19"},/turf/simulated/floor,/area/station/bridge)
"aJK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/bridge)
"aJL" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/eastright{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/bridge)
@@ -1870,11 +1870,11 @@
"aJX" = (/obj/machinery/door/window/southright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aJY" = (/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aJZ" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Cafeteria"; location = "Medical Hallway"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aKa" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aKb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/engine/substation/port)
-"aKc" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal,/turf/simulated/floor,/area/station/engine/substation/port)
-"aKd" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aKa" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aKb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/engine/substation/west)
+"aKc" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal,/turf/simulated/floor,/area/station/engine/substation/west)
+"aKd" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/station/engine/substation/east)
+"aKe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/east)
"aKf" = (/obj/machinery/camera{c_tag = "Inner Maintenance Starboard"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aKg" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/bridge)
"aKh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/bridge)
@@ -1888,11 +1888,11 @@
"aKp" = (/obj/table/reinforced{dir = 9; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/clothing/glasses/healthgoggles,/obj/item/clothing/glasses/healthgoggles,/obj/item/clothing/glasses/healthgoggles,/obj/item/clothing/glasses/healthgoggles,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aKq" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (NORTH)"; icon_state = "reinf_tabledir"; dir = 1},/obj/item/reagent_containers/glass/beaker/antitox,/obj/item/reagent_containers/glass/beaker/brute,/obj/item/reagent_containers/glass/beaker/burn,/obj/item/reagent_containers/glass/beaker/epinephrine,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aKr" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aKs" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/port)
-"aKt" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aKu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aKs" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/west)
+"aKt" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/substation/east)
+"aKu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/substation/east)
"aKv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aKw" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/starboard)
+"aKw" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/east)
"aKx" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/bridge)
"aKy" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table,/turf/simulated/floor,/area/station/bridge)
"aKz" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/secure_data,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/bridge)
@@ -1906,10 +1906,10 @@
"aKH" = (/obj/stool/chair{dir = 4},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aKI" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/machinery/door/window/eastleft{name = "Pharmacy"; req_access_txt = "5"},/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aKJ" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/inner)
-"aKK" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/substation/port)
-"aKL" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/port)
-"aKM" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aKN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aKK" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/substation/west)
+"aKL" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/west)
+"aKM" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/substation/east)
+"aKN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/engine/substation/east)
"aKO" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aKP" = (/obj/cable,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/bridge)
"aKQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/bridge)
@@ -1921,8 +1921,8 @@
"aKW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/bridge)
"aKX" = (/obj/machinery/vending/medical,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aKY" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/glass/bottle/morphine,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aKZ" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/port)
-"aLa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aKZ" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/west)
+"aLa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/east)
"aLb" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/bridge)
"aLc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/glass{name = "Bridge Checkpoint"; req_access_txt = "19"},/turf/simulated/floor{icon_state = "black"; tag = "icon-dark"},/area/station/bridge)
"aLd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -1940,31 +1940,31 @@
"aLp" = (/obj/machinery/sleep_console,/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aLq" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aLr" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aLs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
-"aLt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aLu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/port)
+"aLs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
+"aLt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aLu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/west)
"aLv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "medbay"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aLw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aLx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aLy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aLz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aLy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aLz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aLA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/bridge)
"aLB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/vehicle/segway,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLC" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aLD" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aLE" = (/obj/joeq/spooky{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
+"aLD" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aLE" = (/obj/joeq/spooky{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
"aLF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aLG" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aLH" = (/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aLI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aLJ" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "bridge"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aLI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aLJ" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "bridge"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aLK" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/bridge)
"aLL" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/mail{mail_tag = "bridge"; name = "mail chute-'Bridge'"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLM" = (/obj/machinery/camera{c_tag = "Bridge Aft"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLN" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer3/generic/communications{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aLO" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aLP" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/port)
-"aLQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/port)
+"aLO" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aLP" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/west)
+"aLQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/west)
"aLR" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/machinery/camera{c_tag = "Bridge"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLS" = (/obj/machinery/computer/bank_data,/obj/cable,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLT" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -1973,19 +1973,19 @@
"aLW" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/machinery/light,/obj/item/wrapping_paper,/obj/item/wirecutters,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLX" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/machinery/recharger{pixel_y = 3},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aLY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/bridge)
-"aLZ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMa" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMb" = (/obj/machinery/camera{c_tag = "Kitchen"},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aLZ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMa" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMb" = (/obj/machinery/camera{c_tag = "Kitchen"},/turf/simulated/floor,/area/station/hallway/primary/west)
"aMc" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aMd" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aMe" = (/obj/machinery/door/airlock/command{name = "Head Office"; req_access = null; req_access_txt = "19"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-black (NORTH)"; icon_state = "black"; dir = 1},/area/station/crew_quarters/heads)
"aMf" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/space,/area)
"aMg" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/lattice,/turf/space,/area)
-"aMh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMi" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/port)
+"aMh" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMi" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMk" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/west)
"aMm" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aMn" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aMo" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/device/flashlight,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -1999,19 +1999,19 @@
"aMw" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer/ATM,/turf/simulated/floor,/area/station/crew_quarters/heads)
"aMx" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/heads)
"aMy" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/lattice,/turf/space,/area)
-"aMz" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMB" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aME" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/port)
-"aMF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/port)
-"aMG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/port)
-"aMH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hallway/primary/port)
-"aMI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aMJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/starboard)
-"aMK" = (/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aML" = (/obj/disposalpipe/segment,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/starboard)
+"aMz" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMB" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aME" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/west)
+"aMF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/west)
+"aMG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/west)
+"aMH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hallway/primary/west)
+"aMI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aMJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/east)
+"aMK" = (/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aML" = (/obj/disposalpipe/segment,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/east)
"aMM" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/PDAbox,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aMN" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/machinery/cell_charger,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aMO" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/device/timer,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -2024,8 +2024,8 @@
"aMV" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/heads)
"aMW" = (/turf/space,/area/meteor/station)
"aMX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aMY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"aMZ" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aMY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"aMZ" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/east)
"aNa" = (/obj/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor,/area/station/crew_quarters/heads)
"aNb" = (/obj/secure_closet/highsec,/turf/simulated/floor,/area/station/crew_quarters/heads)
"aNc" = (/obj/table/woodentable{dir = 10},/obj/machinery/light/lamp,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/crew_quarters/heads)
@@ -2040,22 +2040,22 @@
"aNl" = (/turf/simulated/wall/r_wall,/area/station/medical/research)
"aNm" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/medical/research)
"aNn" = (/turf/simulated/wall,/area/station/medical/research)
-"aNo" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aNo" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aNp" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aNq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aNr" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aNs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aNt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"aNu" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNv" = (/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNw" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNx" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboard)
-"aNy" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aNt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"aNu" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNv" = (/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNw" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNx" = (/turf/simulated/wall/r_wall,/area/station/maintenance/east)
+"aNy" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/east)
"aNz" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
"aNA" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
"aNB" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
"aNC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
-"aND" = (/turf/simulated/wall,/area/station/maintenance/starboard)
+"aND" = (/turf/simulated/wall,/area/station/maintenance/east)
"aNE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/research)
"aNF" = (/obj/machinery/clone_scanner,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aNG" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
@@ -2073,16 +2073,16 @@
"aNS" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aNT" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aNU" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aNV" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNX" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aNZ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOd" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOe" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aNV" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNW" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNX" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aNZ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOd" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOe" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aOf" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/space,/area)
"aOg" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aOh" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
@@ -2093,47 +2093,47 @@
"aOm" = (/obj/disposalpipe/segment,/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/research)
"aOn" = (/turf/simulated/floor,/area/station/medical/research)
"aOo" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/medical/research)
-"aOp" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
+"aOp" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
"aOq" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOr" = (/obj/machinery/camera{c_tag = "Inner Maintenance Aft Fore"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aOw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"aOx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"aOy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "Starboard Maintenance Access"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOz" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOA" = (/obj/machinery/camera{c_tag = "Starboard Maintenance Fore"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOD" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aOw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/east)
+"aOx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"aOy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "Starboard Maintenance Access"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOz" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOA" = (/obj/machinery/camera{c_tag = "Starboard Maintenance Fore"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOD" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aOE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"aOF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aOG" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/paper,/obj/item/storage/firstaid/brain,/obj/item/storage/firstaid/brain,/obj/item/storage/firstaid/brain,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aOH" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/research)
"aOI" = (/obj/stool/chair,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aOJ" = (/obj/stool/chair,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 0; pixel_y = 26},/obj/landmark/halloween,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aOK" = (/obj/machinery/camera{c_tag = "Port Hallway Aft"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aOK" = (/obj/machinery/camera{c_tag = "Port Hallway Aft"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/west)
"aOL" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOM" = (/obj/machinery/camera{c_tag = "Inner Maintenance Starboard Airlock"; dir = 6; icon_state = "camera"; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aON" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aOO" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOP" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOQ" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOR" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOS" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOT" = (/obj/crate,/obj/item/paper{info = "is a pain in the ass to get onto your station!!! god damn
-contractor bob"; name = "your new security room"},/obj/item/clothing/head/XComHair,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aOU" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aOO" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOP" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOQ" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOR" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOS" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOT" = (/obj/crate,/obj/item/paper{info = "is a pain in the ass to get onto your station!!! god damn
-contractor bob"; name = "your new security room"},/obj/item/clothing/head/XComHair,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aOU" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/east)
"aOV" = (/obj/disposalpipe/segment,/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"aOW" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"aOX" = (/obj/machinery/door/window/southleft{name = "Monkey Pen"; req_access_txt = "9"},/mob/living/carbon/human/monkey,/turf/simulated/floor,/area/station/medical/research)
"aOY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"aOZ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Med-Sci"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aPa" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aPb" = (/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aPb" = (/turf/simulated/wall,/area/station/hallway/primary/south)
"aPc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/inner)
-"aPd" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aPd" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/south)
"aPe" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aPf" = (/turf/simulated/wall/r_wall,/area/station/security/brig)
"aPg" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/security/brig)
@@ -2148,24 +2148,24 @@
"aPp" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aPq" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Med-Sci"; req_access_txt = "9"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aPr" = (/obj/machinery/door/window/eastright,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aPs" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aPt" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aPu" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aPv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aPw" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aPx" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/aft)
-"aPy" = (/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aPz" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aPA" = (/obj/submachine/ATM{pixel_x = 0; pixel_y = 32},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aPs" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aPt" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aPu" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aPv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aPw" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aPx" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/south)
+"aPy" = (/turf/simulated/floor,/area/station/hallway/primary/south)
+"aPz" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aPA" = (/obj/submachine/ATM{pixel_x = 0; pixel_y = 32},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/door/window/southright,/turf/simulated/floor,/area/station/hallway/primary/south)
"aPB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
"aPC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "44"},/turf/simulated/floor,/area/station/engine/substation/pylon)
"aPD" = (/obj/grille/steel,/turf/simulated/wall/r_wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aPE" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aPF" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aPG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aPH" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aPI" = (/obj/machinery/camera{c_tag = "Starboard Hallway Aft"; network = "SS13"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aPJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aPE" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aPF" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aPG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aPH" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aPI" = (/obj/machinery/camera{c_tag = "Starboard Hallway Aft"; network = "SS13"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aPJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aPK" = (/obj/decal/skeleton{desc = "Um. Uh. Oh dear."},/turf/simulated/floor/plating,/area/station/security/brig)
"aPL" = (/turf/simulated/floor/plating,/area/station/security/brig)
"aPM" = (/obj/stool,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/security/brig)
@@ -2185,13 +2185,13 @@
"aQa" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aQb" = (/obj/machinery/door/window/eastleft{name = "Medical Research"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aQc" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aQd" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aQe" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aQd" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aQe" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aQf" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aQg" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
"aQh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/engine/substation/pylon)
"aQi" = (/turf/simulated/wall/r_wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aQj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Engineering Hallway"; location = "Security Hallway"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aQj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Engineering Hallway"; location = "Security Hallway"},/turf/simulated/floor,/area/station/hallway/primary/east)
"aQk" = (/obj/machinery/sparker{id = "securitychamber"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/security/brig)
"aQl" = (/obj/machinery/atmospherics/pipe/vent,/obj/stool/chair,/turf/simulated/floor/plating,/area/station/security/brig)
"aQm" = (/obj/machinery/camera{c_tag = "Gas Chamber"; dir = 8; network = "Gas Chamber"},/turf/simulated/floor/plating,/area/station/security/brig)
@@ -2211,9 +2211,9 @@
"aQA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/research)
"aQB" = (/obj/machinery/door/window/eastright{name = "Medical Research"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aQC" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aQD" = (/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aQE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aQF" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aQD" = (/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aQE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aQF" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
"aQG" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor,/area/station/engine/substation/pylon)
"aQH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/pylon)
"aQI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/extinguisher{pixel_y = 8},/obj/machinery/camera{c_tag = "Inner Maintenance"},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/pylon)
@@ -2222,12 +2222,12 @@
"aQL" = (/obj/machinery/ai_status_display{pixel_y = 32},/mob/living/silicon/hivebot/eyebot,/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aQM" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer/aiupload,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aQN" = (/obj/machinery/sim/transmitter{network = "prison"},/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aQO" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/aft)
-"aQP" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/aft)
-"aQQ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aQR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aQS" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"aQT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/starboard)
+"aQO" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/south)
+"aQP" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/south)
+"aQQ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aQR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aQS" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"aQT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/east)
"aQU" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/security/brig)
"aQV" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/brig)
"aQW" = (/obj/secure_closet/brig{id = "solitary1"},/turf/simulated/floor,/area/station/security/brig)
@@ -2258,16 +2258,16 @@
"aRv" = (/turf/simulated/wall,/area/station/crew_quarters/bar)
"aRw" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/crew_quarters/bar)
"aRx" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/bar)
-"aRy" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aRz" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aRy" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aRz" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"aRA" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/pylon)
"aRB" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/engine/substation/pylon)
"aRC" = (/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aRD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aRE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aRF" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aRG" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aRH" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"aRF" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aRG" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aRH" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"aRI" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/security/main)
"aRJ" = (/turf/simulated/wall/r_wall,/area/station/security/main)
"aRK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/security/main)
@@ -2285,7 +2285,7 @@
"aRW" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/genetics,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aRX" = (/obj/table,/obj/item/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"aRY" = (/obj/machinery/door/airlock/maintenance{name = "Med-Sci Maintenance"; req_access_txt = "14;9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"aRZ" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aRZ" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aSa" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/chem_dispenser/alcohol,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aSb" = (/obj/item/reagent_containers/food/snacks/yoghurt/frozen,/obj/item/kitchen/utensil/spoon{pixel_x = 9; pixel_y = -3},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/reagent_containers/food/drinks/bottle/bojackson,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aSc" = (/obj/machinery/door/airlock{name = "Booze Storage"; req_access_txt = "25"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
@@ -2313,8 +2313,8 @@
"aSy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aSz" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aSA" = (/obj/machinery/turret,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aSB" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aSC" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"aSB" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aSC" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"aSD" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/station/security/main)
"aSE" = (/obj/noticeboard{pixel_y = 32},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/security/main)
"aSF" = (/obj/machinery/light{dir = 1},/obj/table,/obj/machinery/recharger{pixel_y = 3},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
@@ -2334,12 +2334,12 @@
"aST" = (/obj/machinery/door_timer{id = "solitary2"; name = "Solitary Cell 2"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/station/security/brig)
"aSU" = (/obj/machinery/door/window/brigdoor/eastleft{id = "solitary2"; name = "Solitary Cell 2"; req_access_txt = "2"},/turf/simulated/floor,/area/station/security/brig)
"aSV" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/obj/stool,/turf/simulated/floor,/area/station/security/brig)
-"aSW" = (/turf/simulated/wall/r_wall,/area/station/maintenance/apmaint)
-"aSX" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aSY" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aSZ" = (/obj/disposalpipe/junction,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aTa" = (/obj/item/mousetrap,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aTb" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aSW" = (/turf/simulated/wall/r_wall,/area/station/maintenance/SWmaint)
+"aSX" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aSY" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aSZ" = (/obj/disposalpipe/junction,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aTa" = (/obj/item/mousetrap,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aTb" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aTc" = (/obj/machinery/door/airlock/maintenance{name = "Culinary Maintenance"; req_access_txt = "25"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aTd" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aTe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/storage/glassbox,/obj/item/storage/glassbox,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -2349,7 +2349,7 @@
"aTi" = (/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aTj" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aTk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "kitchen"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aTl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aTl" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
"aTm" = (/obj/rack,/obj/item/clothing/mask/horse_mask,/turf/simulated/floor,/area/station/crew_quarters/market)
"aTn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/market)
"aTo" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "store2"; layer = 4; name = "Market #2"; opacity = 0; p_open = 1},/turf/simulated/floor,/area/station/crew_quarters/market)
@@ -2360,11 +2360,11 @@
"aTt" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"aTu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/engine/substation/pylon)
"aTv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aTw" = (/obj/machinery/camera{c_tag = "Aft Hallway Starboard"; c_tag_order = 999; dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aTx" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aTy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aTz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aTA" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "security"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"aTw" = (/obj/machinery/camera{c_tag = "Aft Hallway Starboard"; c_tag_order = 999; dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aTx" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aTy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aTz" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aTA" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "security"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"aTB" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/security/main)
"aTC" = (/obj/machinery/disposal/mail{mail_tag = "security"; name = "mail chute-'Security'"},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/station/security/main)
"aTD" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
@@ -2386,13 +2386,13 @@
"aTT" = (/obj/grille/steel,/obj/machinery/light/small{dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/security/brig)
"aTU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/secure_closet/brig{id = "solitary2"},/turf/simulated/floor,/area/station/security/brig)
"aTV" = (/obj/machinery/floorflusher{id = "solitary2"},/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/station/security/brig)
-"aTW" = (/turf/simulated/wall,/area/station/maintenance/apmaint)
-"aTX" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aTY" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aTZ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aUc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aTW" = (/turf/simulated/wall,/area/station/maintenance/SWmaint)
+"aTX" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aTY" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aTZ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aUc" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aUd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/kitchen)
"aUe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aUf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/closet/gmcloset,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -2440,10 +2440,10 @@
"aUV" = (/obj/machinery/camera/motion{c_tag = "AI Upload"; dir = 8},/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aUW" = (/turf/simulated/wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aUX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aUY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"aUZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aVa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aVb" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aUY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/south)
+"aUZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aVa" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aVb" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"aVc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/main)
"aVd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/vending/security,/turf/simulated/floor,/area/station/security/main)
"aVe" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/security/main)
@@ -2457,7 +2457,7 @@
"aVm" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/security/brig)
"aVn" = (/obj/secure_closet/brig{id = "genpop1"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/security/brig)
"aVo" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor,/area/station/security/brig)
-"aVp" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aVp" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aVq" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "kitchen"; name = "mail chute-'Kitchen'"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aVr" = (/obj/submachine/chef_sink,/obj/item/plate,/obj/item/plate,/obj/item/reagent_containers/food/drinks/bowl,/obj/item/reagent_containers/food/drinks/bowl,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aVs" = (/obj/submachine/chef_oven,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -2468,7 +2468,7 @@
"aVx" = (/obj/landmark{name = "peststart"},/obj/stool,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aVy" = (/obj/table/reinforced/bar{tag = "icon-bar (NORTHWEST)"; icon_state = "bar"; dir = 9},/obj/item/plate,/mob/living/carbon/human/monkey{icon_state = "muggles"; name = "Mr. Muggles"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aVz" = (/obj/table/reinforced/bar{dir = 5},/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aVA" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aVA" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/primary/south)
"aVB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/crew_quarters/market)
"aVC" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/crew_quarters/market)
"aVD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/r_wall,/area/station/crew_quarters/market)
@@ -2476,7 +2476,7 @@
"aVF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"aVG" = (/obj/lattice,/turf/space,/area/station/crew_quarters/market)
"aVH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{name = "AI Upload Station"; req_access_txt = "16"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aVI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aVI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
"aVJ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor,/area/station/security/main)
"aVK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/security/main)
"aVL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
@@ -2489,10 +2489,10 @@
"aVS" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1; level = 2},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/security/brig)
"aVT" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/security/brig)
"aVU" = (/obj/secure_closet/brig{id = "genpop2"},/turf/simulated/floor,/area/station/security/brig)
-"aVV" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aVW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aVX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"aVY" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aVV" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aVW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aVX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"aVY" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aVZ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aWa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aWb" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -2539,7 +2539,7 @@
"aWQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"aWR" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"aWS" = (/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aWT" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aWT" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"aWU" = (/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "1"},/turf/simulated/floor,/area/station/security/main)
"aWV" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1; level = 2},/turf/simulated/wall/r_wall,/area/station/security/brig)
"aWW" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Controls"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/security/brig)
@@ -2552,13 +2552,13 @@
"aXd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table/reinforced/bar{dir = 10},/obj/item/plate,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aXe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aXf" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aXg" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aXg" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"aXh" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/crew_quarters/market)
"aXi" = (/turf/simulated/wall,/area/station/engine/storage)
"aXj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Engineering Pylon Aft"; dir = 4},/turf/simulated/floor,/area/station/engine/engineering)
"aXk" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/command{name = "AI Upload Station"; req_access_txt = "16"},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"aXl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/aft)
+"aXl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/south)
"aXn" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"aXo" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aXp" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -2572,11 +2572,11 @@
"aXx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/computer/security,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/security/checkpoint2)
"aXy" = (/obj/machinery/light/small{dir = 1},/obj/vehicle/segway,/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/security/checkpoint2)
"aXz" = (/obj/secure_closet/courtroom,/turf/simulated/floor,/area/station/security/checkpoint2)
-"aXA" = (/obj/machinery/ignition_switch{id = "securitychamber"; name = "Solitary Sparker Switch"; pixel_x = -24; pixel_y = 0},/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/starboard)
-"aXB" = (/obj/machinery/computer/security/telescreen{name = "Chamber View"; network = "Gas Chamber"; pixel_y = 32},/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/station/maintenance/starboard)
-"aXC" = (/turf/simulated/floor{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/maintenance/starboard)
-"aXD" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Gas Control"; req_access_txt = "37"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aXE" = (/obj/disposalpipe/segment,/obj/securearea{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aXA" = (/obj/machinery/ignition_switch{id = "securitychamber"; name = "Solitary Sparker Switch"; pixel_x = -24; pixel_y = 0},/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/east)
+"aXB" = (/obj/machinery/computer/security/telescreen{name = "Chamber View"; network = "Gas Chamber"; pixel_y = 32},/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/station/maintenance/east)
+"aXC" = (/turf/simulated/floor{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/maintenance/east)
+"aXD" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Gas Control"; req_access_txt = "37"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aXE" = (/obj/disposalpipe/segment,/obj/securearea{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aXF" = (/obj/secure_closet/fridge,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aXG" = (/obj/critter/mouse/remy,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aXH" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
@@ -2584,17 +2584,17 @@
"aXJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aXK" = (/obj/stool,/obj/landmark/start{name = "Clown"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aXL" = (/obj/table/reinforced/bar{dir = 10},/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/clothing/head/cakehat,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aXM" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXN" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aXO" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Bar Exterior"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aXM" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXN" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aXO" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Bar Exterior"},/turf/simulated/floor,/area/station/hallway/primary/south)
"aXP" = (/obj/machinery/door/window/westleft{name = "Delivery"; req_access_txt = "34"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Engineering"},/turf/simulated/floor{icon_state = "bot"},/area/station/engine/storage)
"aXQ" = (/obj/machinery/door/window/eastright{dir = 4; name = "Engineering Delivery"; req_access_txt = "40"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/engine/storage)
"aXR" = (/turf/simulated/floor,/area/station/engine/storage)
"aXS" = (/obj/closet/emcloset,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor,/area/station/engine/storage)
"aXT" = (/obj/closet/emcloset,/obj/machinery/camera{c_tag = "Engineering Storage"; dir = 2},/turf/simulated/floor,/area/station/engine/storage)
"aXU" = (/obj/machinery/light/small{dir = 1},/obj/reagent_dispensers/fueltank,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/engine/storage)
-"aXV" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"aXW" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aXV" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"aXW" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor,/area/station/hallway/primary/south)
"aXX" = (/turf/simulated/wall,/area/station/crew_quarters/courtroom)
"aXY" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aXZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -2605,11 +2605,11 @@
"aYe" = (/turf/simulated/floor,/area/station/security/checkpoint2)
"aYf" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/security/checkpoint2)
"aYg" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/security/checkpoint2)
-"aYh" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/starboard)
-"aYi" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5; level = 2},/turf/simulated/floor,/area/station/maintenance/starboard)
-"aYj" = (/obj/machinery/atmospherics/portables_connector{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aYk" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aYl" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"aYh" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/east)
+"aYi" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5; level = 2},/turf/simulated/floor,/area/station/maintenance/east)
+"aYj" = (/obj/machinery/atmospherics/portables_connector{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aYk" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aYl" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"aYm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/crew_quarters/kitchen)
"aYn" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aYo" = (/obj/submachine/foodprocessor,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -2619,8 +2619,8 @@
"aYs" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aYt" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"aYu" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"aYv" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Medical Hallway"; location = "Bar Hallway"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aYw" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/aft)
+"aYv" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Medical Hallway"; location = "Bar Hallway"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aYw" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/south)
"aYx" = (/obj/grille/steel,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/storage)
"aYy" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/light/small{dir = 1},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/engine/storage)
"aYz" = (/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor,/area/station/engine/storage)
@@ -2630,9 +2630,9 @@
"aYD" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/r_wall,/area/station/engine/engineering)
"aYE" = (/turf/simulated/wall/r_wall,/area/station/engine/engineering)
"aYF" = (/turf/simulated/wall/r_wall,/area/station/storage/autolathe)
-"aYG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aYH" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"aYI" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aYG" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aYH" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"aYI" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/south)
"aYJ" = (/obj/machinery/door/airlock/glass{name = "Courtroom"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aYK" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"aYL" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
@@ -2642,17 +2642,17 @@
"aYP" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (SOUTHEAST)"; icon_state = "reinf_tabledir"; dir = 6},/obj/machinery/recharger{pixel_y = 3},/turf/simulated/floor,/area/station/security/checkpoint2)
"aYQ" = (/obj/closet/lawcloset,/turf/simulated/floor,/area/station/security/checkpoint2)
"aYR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/checkpoint2)
-"aYS" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aYT" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/station/maintenance/starboard)
-"aYU" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/starboard)
-"aYV" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aYW" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aYS" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aYT" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/station/maintenance/east)
+"aYU" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/east)
+"aYV" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aYW" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aYX" = (/turf/space,/area/shuttle/brig/station)
"aYY" = (/obj/kitchenspike,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aYZ" = (/obj/table/reinforced/bar,/obj/machinery/door/window/southleft{req_access_txt = "35"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/crew_quarters/bar)
"aZa" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/crew_quarters/bar)
-"aZb" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/aft)
-"aZc" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"aZb" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/south)
+"aZc" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/south)
"aZd" = (/obj/grille/steel,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/engine/storage)
"aZe" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/clothing/glasses/meson,/obj/item/crowbar,/obj/item/device/t_scanner,/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/engine/storage)
"aZf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/engine/storage)
@@ -2674,10 +2674,10 @@
"aZv" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/checkpoint2)
"aZw" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/security/checkpoint2)
"aZx" = (/turf/simulated/wall,/area/station/security/checkpoint2)
-"aZy" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Controls"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aZz" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/starboard)
-"aZA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"aZB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"aZy" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Controls"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aZz" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/east)
+"aZA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"aZB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"aZC" = (/obj/machinery/deep_fryer,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aZD" = (/obj/machinery/camera{c_tag = "Kitchen South"; dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"aZE" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/table,/obj/machinery/door/window/westleft{req_access_txt = "28"},/turf/simulated/floor,/area/station/crew_quarters/kitchen)
@@ -2714,13 +2714,13 @@
"baj" = (/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
"bak" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
"bal" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
-"bam" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"ban" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bao" = (/obj/reagent_dispensers/fueltank,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bam" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"ban" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bao" = (/obj/reagent_dispensers/fueltank,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bap" = (/turf/space,/turf/simulated/shuttle/wall{dir = 8; icon_state = "diagonalWall3"},/area/wizard_station)
"baq" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/wizard_station)
"bar" = (/turf/space,/turf/simulated/shuttle/wall{dir = 1; icon_state = "diagonalWall3"},/area/wizard_station)
-"bas" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bas" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bat" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
"bau" = (/obj/crate,/turf/simulated/floor,/area/station/hydroponics)
"bav" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hydroponics)
@@ -2746,8 +2746,8 @@
"baP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/autolathe)
"baQ" = (/turf/simulated/floor,/area/station/storage/autolathe)
"baR" = (/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/storage/autolathe)
-"baS" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"baT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"baS" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"baT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/south)
"baU" = (/obj/item/mop,/obj/item/storage/lightbox,/turf/simulated/floor,/area/station/janitor)
"baV" = (/obj/item/mop,/obj/item/storage/lightbox/tubes,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/janitor)
"baW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/janitor)
@@ -2762,14 +2762,14 @@
"bbf" = (/obj/stool/chair,/turf/simulated/floor,/area/station/crew_quarters/juryroom)
"bbg" = (/obj/machinery/door/airlock/glass{name = "Rehabilitation Release"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"bbh" = (/obj/machinery/light/small{dir = 4},/obj/disposalpipe/trunk{dir = 1},/obj/disposaloutlet{desc = "An outlet for the safe release of rehabilitated individuals."; name = "rehabilitation delivery vent"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
-"bbi" = (/obj/machinery/door/airlock/external{ai_no_access = 0; name = "Security Shuttle Access"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bbi" = (/obj/machinery/door/airlock/external{ai_no_access = 0; name = "Security Shuttle Access"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bbj" = (/obj/decal/fakeobjects/shuttlethruster{dir = 4},/turf/space,/area/wizard_station)
"bbk" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/decal/fakeobjects/shuttleengine{dir = 8},/turf/simulated/floor/plating/airless,/area/wizard_station)
"bbl" = (/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bbm" = (/obj/table,/obj/machinery/light/lamp,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bbn" = (/obj/machinery/vending/magivend,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bbo" = (/obj/crate,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"bbp" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bbp" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bbq" = (/obj/machinery/door/airlock{name = "Hydroponics Maintenance"; req_access_txt = "35"},/turf/simulated/floor/plating,/area/station/hydroponics)
"bbr" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hydroponics)
"bbs" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hydroponics)
@@ -2796,7 +2796,7 @@
"bbN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window,/turf/simulated/floor,/area/station/storage/autolathe)
"bbO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/autolathe)
"bbP" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/autolathe)
-"bbQ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
+"bbQ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
"bbR" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Janitor's Closet"; dir = 4},/obj/crate/trashcart,/turf/simulated/floor,/area/station/janitor)
"bbS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/station/janitor)
"bbT" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/janitor)
@@ -2812,9 +2812,9 @@
"bcd" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/east,/obj/window/reinforced/west,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"bce" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"bcf" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
-"bcg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bch" = (/obj/item/device/multitool,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bci" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bcg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bch" = (/obj/item/device/multitool,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bci" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bcj" = (/obj/table,/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/item/hand_labeler,/obj/item/screwdriver,/obj/item/reagent_containers/food/drinks/bowl,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/hydroponics)
"bck" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hydroponics)
"bcl" = (/obj/machinery/disposal/mail{mail_tag = "hydroponics"; name = "mail chute-'Hydroponics'"},/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/station/hydroponics)
@@ -2825,28 +2825,28 @@
"bcq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
"bcr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/secure_closet/hydroponics,/turf/simulated/floor,/area/station/hydroponics)
"bcs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hydroponics)
-"bct" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "electronics"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bcu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"; tag = "icon-yellowcorner (EAST)"},/area/station/hallway/primary/aft)
-"bcv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bcw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bcx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bcy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bcz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Aft Primary Hallway Midport"; dir = 9},/turf/simulated/floor{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/station/hallway/primary/aft)
+"bct" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "electronics"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bcu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"; tag = "icon-yellowcorner (EAST)"},/area/station/hallway/primary/south)
+"bcv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bcw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bcx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bcy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bcz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Aft Primary Hallway Midport"; dir = 9},/turf/simulated/floor{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/station/hallway/primary/south)
"bcA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 8},/obj/secure_closet/engineering_stru,/turf/simulated/floor,/area/station/engine/engineering)
"bcB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/engineering)
"bcC" = (/turf/simulated/floor,/area/station/engine/engineering)
"bcD" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/engineering)
-"bcE" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/hallway/primary/aft)
-"bcF" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bcG" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bcH" = (/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/aft)
+"bcE" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/hallway/primary/south)
+"bcF" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bcG" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bcH" = (/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/south)
"bcI" = (/obj/mopbucket,/turf/simulated/floor,/area/station/janitor)
"bcJ" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/obj/machinery/light,/turf/simulated/floor,/area/station/janitor)
"bcK" = (/obj/closet/jcloset,/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/janitor)
"bcL" = (/obj/closet/l3closet,/turf/simulated/floor,/area/station/janitor)
"bcM" = (/obj/stool,/obj/item/device/radio/intercom{pixel_y = -24},/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/sponge,/turf/simulated/floor,/area/station/janitor)
"bcN" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bcO" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bcO" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bcP" = (/obj/closet,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bcQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hydroponics)
"bcR" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hydroponics)
@@ -2859,27 +2859,27 @@
"bcY" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
"bcZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/secure_closet/hydroponics,/turf/simulated/floor,/area/station/hydroponics)
"bda" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hydroponics)
-"bdb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Hydroponics"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdd" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bdb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Hydroponics"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdd" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
"bde" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/engineering)
"bdf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/engineering)
"bdg" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/engine/engineering)
"bdh" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/engine/engineering)
-"bdi" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"bdj" = (/obj/submachine/ATM{pixel_x = 32},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window/westleft,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bdi" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"bdj" = (/obj/submachine/ATM{pixel_x = 32},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window/westleft,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
"bdk" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/janitor)
"bdl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/janitor)
"bdm" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bdn" = (/turf/simulated/wall,/area/station/maintenance/disposal)
-"bdo" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/screwdriver,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdp" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/storage/toolbox/mechanical,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdq" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/machinery/cell_charger,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdr" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bds" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdt" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdv" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
+"bdo" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/screwdriver,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdp" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/storage/toolbox/mechanical,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdq" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/machinery/cell_charger,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdr" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bds" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdt" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdv" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
"bdw" = (/obj/table/woodentable{dir = 10},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bdx" = (/obj/table/woodentable{dir = 6},/obj/machinery/computer/pod/old/swf{id = "wizard"; pixel_x = -4; pixel_y = 8},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bdy" = (/obj/grille/steel,/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
@@ -2887,7 +2887,7 @@
"bdA" = (/obj/reagent_dispensers/watertank/big,/turf/simulated/floor,/area/station/hydroponics)
"bdB" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hydroponics)
"bdC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
-"bdD" = (/obj/machinery/light,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bdD" = (/obj/machinery/light,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/south)
"bdE" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/engineering)
"bdF" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/secure_closet/engineering_welding,/turf/simulated/floor,/area/station/engine/engineering)
"bdG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/secure_closet/engineering_stru,/turf/simulated/floor,/area/station/engine/engineering)
@@ -2899,14 +2899,14 @@
"bdM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bdN" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bdO" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bdP" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/starboard)
-"bdS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Starboard Maintenance Solar"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bdU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bdV" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bdW" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"bdP" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/east)
+"bdS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Starboard Maintenance Solar"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bdU" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bdV" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bdW" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"bdX" = (/obj/machinery/door/poddoor{id = "wizard"; name = "Outer Airlock"},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bdY" = (/obj/machinery/door/airlock/external,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bdZ" = (/obj/landmark/start{name = "wizard"},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
@@ -2922,12 +2922,12 @@
"bej" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/engine/elect)
"bek" = (/obj/machinery/door/airlock/engineering{name = "Engineering Electronics Lab"; req_access_txt = "45"},/turf/simulated/floor,/area/station/engine/elect)
"bel" = (/turf/simulated/wall,/area/station/engine/elect)
-"bem" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"ben" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/aft)
+"bem" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"ben" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/south)
"beo" = (/obj/machinery/door/airlock/engineering{req_access_txt = "40"},/turf/simulated/floor,/area/station/engine/engineering)
"bep" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/engine/engineering)
-"beq" = (/obj/stool/chair,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"ber" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"beq" = (/obj/stool/chair,/turf/simulated/floor,/area/station/hallway/primary/south)
+"ber" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
"bes" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bet" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"beu" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -2936,17 +2936,17 @@
"bex" = (/obj/disposalpipe/switch_junction,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bey" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bez" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"beA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/starboard)
-"beB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"beC" = (/turf/simulated/wall,/area/station/maintenance/starboardsolar)
-"beD" = (/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"beE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/starboardsolar)
-"beF" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"beG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"beH" = (/obj/cable,/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
+"beA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/east)
+"beB" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"beC" = (/turf/simulated/wall,/area/station/maintenance/eastsolar)
+"beD" = (/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"beE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/eastsolar)
+"beF" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"beG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"beH" = (/obj/cable,/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
"beI" = (/obj/grille/steel,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"beJ" = (/obj/table/woodentable{dir = 10},/obj/item/pen{desc = "Enchanted to write in several shades of grey!"; name = "magic pen"},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"beK" = (/obj/overlay{anchored = 1; density = 1; desc = "It wont budge."; icon = 'icons/obj/doors/Door1.dmi'; icon_state = "o_door1"; layer = 6; name = "broken door"; opacity = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"beK" = (/obj/overlay{anchored = 1; density = 1; desc = "It wont budge."; icon = 'icons/obj/doors/Door1.dmi'; icon_state = "o_door1"; layer = 6; name = "broken door"; opacity = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"beL" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; dir = 4},/turf/simulated/wall,/area/station/hydroponics)
"beM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hydroponics)
"beN" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/hydroponics)
@@ -2955,19 +2955,19 @@
"beQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/engine/elect)
"beR" = (/obj/disposalpipe/junction{dir = 4},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/engine/elect)
"beS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/engine/elect)
-"beT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"beU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/hallway/primary/aft)
-"beV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"beW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"beX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"beY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"beZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/camera{c_tag = "Aft Primary Hallway"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bfa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"bfb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/aft)
-"bfc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/cola/blue,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 6},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bff" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/aft)
+"beT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"beU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/hallway/primary/south)
+"beV" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
+"beW" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"beX" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"beY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"beZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/camera{c_tag = "Aft Primary Hallway"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bfa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"bfb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/south)
+"bfc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/cola/blue,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 6},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bff" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/south)
"bfg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bfh" = (/obj/disposalpipe/junction,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bfi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -2975,17 +2975,17 @@
"bfk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bfl" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/disposal)
"bfm" = (/obj/machinery/door/airlock/maintenance{name = "Crusher Access"; req_access_txt = "26;12"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bfn" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bfo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bfp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Starboard Solar Control"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bfq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/item/device/igniter,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bfr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"bfn" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bfo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bfp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Starboard Solar Control"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bfq" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/item/device/igniter,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bfr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"bfs" = (/turf/space,/turf/simulated/shuttle/wall{icon_state = "diagonalWall3"},/area/wizard_station)
-"bft" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bfu" = (/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bfv" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/table,/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bfw" = (/obj/stool/chair,/obj/item/raw_material/shard/glass{tag = "icon-small"; icon_state = "small"},/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bfx" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bft" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bfu" = (/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bfv" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/table,/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bfw" = (/obj/stool/chair,/obj/item/raw_material/shard/glass{tag = "icon-small"; icon_state = "small"},/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bfx" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bfy" = (/obj/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/station/engine/elect)
"bfz" = (/obj/machinery/rkit,/turf/simulated/floor,/area/station/engine/elect)
"bfA" = (/obj/table,/turf/simulated/floor,/area/station/engine/elect)
@@ -2994,10 +2994,10 @@
"bfD" = (/turf/simulated/floor,/area/station/engine/elect)
"bfE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/elect)
"bfF" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/engine/elect)
-"bfG" = (/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bfH" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/aft)
-"bfI" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar Hallway"; location = "Engineering Hallway"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bfG" = (/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bfH" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/south)
+"bfI" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar Hallway"; location = "Engineering Hallway"},/turf/simulated/floor,/area/station/hallway/primary/south)
"bfK" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/tools)
"bfL" = (/obj/machinery/door/airlock/maintenance{name = "Tool Storage"},/turf/simulated/floor,/area/station/storage/tools)
"bfM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
@@ -3011,17 +3011,17 @@
"bfU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bfV" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bfW" = (/obj/machinery/conveyor{id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bfX" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bfY" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bfZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bga" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control{id = "solar_starboard"; name = "Starboard Solar Control"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"bfX" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bfY" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bfZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bga" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control{id = "solar_starboard"; name = "Starboard Solar Control"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"bgb" = (/obj/stool/chair,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bgc" = (/turf/space,/turf/simulated/shuttle/wall{dir = 4; icon_state = "diagonalWall3"},/area/wizard_station)
-"bgd" = (/obj/rack,/obj/machinery/light/small{dir = 8},/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bge" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bgf" = (/obj/item/tile,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bgg" = (/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/obj/item/rods{amount = 10},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bgh" = (/obj/item/raw_material/shard/glass,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bgd" = (/obj/rack,/obj/machinery/light/small{dir = 8},/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bge" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bgf" = (/obj/item/tile,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bgg" = (/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/obj/item/rods{amount = 10},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bgh" = (/obj/item/raw_material/shard/glass,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bgi" = (/obj/machinery/door/airlock/maintenance{name = "Electronics Maintenance"; req_access_txt = "45"},/turf/simulated/floor/plating,/area/station/engine/elect)
"bgj" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/elect)
"bgk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/elect)
@@ -3029,12 +3029,12 @@
"bgm" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/elect)
"bgn" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/engine/elect)
"bgo" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/engine/elect)
-"bgp" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bgq" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bgr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bgs" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bgt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bgu" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bgp" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bgq" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bgr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bgs" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bgt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bgu" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor,/area/station/hallway/primary/south)
"bgv" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
"bgw" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/storage/tools)
"bgx" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/storage/tools)
@@ -3047,19 +3047,19 @@
"bgE" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bgF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/disposalpipe/segment,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bgG" = (/obj/machinery/conveyor{id = "garbage"},/obj/machinery/door/poddoor{id = "disp-vent"; name = "Disposal Vents"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bgH" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bgI" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bgJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bgK" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bgL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bgM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"bgH" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bgI" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bgJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bgK" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bgL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bgM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"bgN" = (/obj/table/woodentable{tag = "icon-woodentable (NORTH)"; icon_state = "woodentable"; dir = 1},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bgO" = (/obj/table/woodentable{dir = 5},/obj/item/reagent_containers/food/drinks/tea/mugwort,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bgP" = (/obj/stool/bed,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bgQ" = (/turf/space,/turf/simulated/shuttle/wall{dir = 4; icon_state = "diagonalWall3"},/area)
-"bgR" = (/obj/stool/bed,/obj/landmark{name = "NASSA spawn"},/obj/item/game_kit,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bgS" = (/obj/machinery/camera{c_tag = "Assistant Lounge"; dir = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bgT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bgR" = (/obj/stool/bed,/obj/landmark{name = "NASSA spawn"},/obj/item/game_kit,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bgS" = (/obj/machinery/camera{c_tag = "Assistant Lounge"; dir = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bgT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bgU" = (/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/engine/elect)
"bgV" = (/obj/machinery/light,/turf/simulated/floor,/area/station/engine/elect)
"bgW" = (/obj/machinery/camera{c_tag = "Electronics"; dir = 1},/turf/simulated/floor,/area/station/engine/elect)
@@ -3078,17 +3078,17 @@
"bhj" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bhk" = (/obj/machinery/camera{c_tag = "Waste Disposal"; dir = 9},/obj/machinery/door_control{id = "disp-vent"; name = "Disposal Vent Control"; pixel_x = 25; pixel_y = 5},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bhl" = (/obj/machinery/crusher,/obj/machinery/conveyor{id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bhm" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/solar/starboard)
-"bhn" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bho" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/cable_coil/cut,/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bhp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bhq" = (/obj/cable,/obj/item/cable_coil/cut{tag = "icon-coil1"; icon_state = "coil1"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bhr" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bhs" = (/obj/machinery/vending/standard,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bht" = (/obj/item/rods{amount = 10},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bhu" = (/obj/closet/wardrobe/grey,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bhv" = (/turf/simulated/wall,/area/station/maintenance/aft)
-"bhw" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bhm" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/solar/east)
+"bhn" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bho" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/cable_coil/cut,/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bhp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bhq" = (/obj/cable,/obj/item/cable_coil/cut{tag = "icon-coil1"; icon_state = "coil1"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bhr" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bhs" = (/obj/machinery/vending/standard,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bht" = (/obj/item/rods{amount = 10},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bhu" = (/obj/closet/wardrobe/grey,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bhv" = (/turf/simulated/wall,/area/station/maintenance/south)
+"bhw" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bhx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/engine/elect)
"bhy" = (/obj/disposalpipe/segment,/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/engine/elect)
"bhz" = (/obj/secure_closet/engineering_elect,/turf/simulated/floor,/area/station/engine/elect)
@@ -3108,14 +3108,14 @@
"bhN" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bhO" = (/obj/machinery/conveyor_switch{id = "garbage"},/obj/machinery/light/small{dir = 4},/obj/machinery/door_control{id = "Disposal Exit"; name = "Exterior Vent Control"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bhP" = (/obj/machinery/camera,/turf/space,/area)
-"bhQ" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bhR" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bhS" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bhT" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhU" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bhV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bhQ" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bhR" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bhS" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bhT" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhU" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bhV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bhW" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/engine/elect)
-"bhX" = (/obj/landmark{name = "SR Welder"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bhX" = (/obj/landmark{name = "SR Welder"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bhY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/airless,/area/station/atmos)
"bhZ" = (/obj/stool/chair{dir = 4},/turf/simulated/floor/airless,/area/station/atmos)
"bia" = (/obj/table{icon_state = "tabledir"; dir = 10},/turf/simulated/floor/airless,/area/station/atmos)
@@ -3124,11 +3124,11 @@
"bid" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/storage/tools)
"bie" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bif" = (/obj/machinery/door/airlock/external{name = "Crusher Airlock"; req_access_txt = "26;12"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"big" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bih" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bii" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"big" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bih" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bii" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bij" = (/obj/machinery/vending/electronics,/turf/simulated/floor,/area/station/engine/elect)
-"bik" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bik" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bil" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/window{dir = 2},/turf/simulated/floor/airless,/area/station/atmos)
"bim" = (/obj/machinery/door/window/southright{name = "Atmospherics Control"; req_access_txt = "46"},/turf/simulated/floor/airless,/area/station/atmos)
"bin" = (/obj/window{dir = 2},/turf/simulated/floor/airless,/area/station/atmos)
@@ -3138,11 +3138,11 @@
"bir" = (/obj/item/tank/emergency_oxygen,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bis" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bit" = (/obj/machinery/launcher_loader,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"biu" = (/obj/item/sheet/steel{amount = 50},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"biv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"biw" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/starboard)
-"bix" = (/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"biy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"biu" = (/obj/item/sheet/steel{amount = 50},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"biv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"biw" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/east)
+"bix" = (/turf/simulated/wall,/area/station/maintenance/southsolar)
+"biy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"biz" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/station/engine/elect)
"biA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/station/atmos)
"biB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/airless,/area/station/atmos)
@@ -3159,12 +3159,12 @@
"biM" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"biN" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"biO" = (/obj/machinery/mass_driver{id = "Disposal Exit"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"biP" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/aft)
-"biQ" = (/obj/machinery/power/apc{dir = 1; name = "Aft Solar Control APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"biR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"biS" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"biT" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"biU" = (/obj/crate,/obj/item/weldingtool,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"biP" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/south)
+"biQ" = (/obj/machinery/power/apc{dir = 1; name = "Aft Solar Control APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"biR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"biS" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"biT" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"biU" = (/obj/crate,/obj/item/weldingtool,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/south)
"biV" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/airless,/area/station/atmos)
"biW" = (/turf/simulated/floor/airless,/area/station/atmos)
"biX" = (/turf/simulated/floor/airless{tag = "icon-floorscorched2"; icon_state = "floorscorched2"},/area/station/atmos)
@@ -3180,19 +3180,19 @@
"bjh" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/storage/tools)
"bji" = (/obj/machinery/camera{c_tag = "General Storage"; dir = 8},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/item/crowbar,/turf/simulated/floor,/area/station/storage/tools)
"bjj" = (/obj/disposalpipe/trunk{dir = 1},/obj/disposaloutlet,/turf/simulated/floor/plating/airless,/area)
-"bjk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
+"bjk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
"bjl" = (/obj/item/cable_coil/cut,/turf/space,/area)
-"bjm" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bjn" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bjo" = (/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bjp" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bjq" = (/obj/machinery/power/solar_control{id = "solar_aft"; name = "Aft Solar Control"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjr" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjt" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bju" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjw" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bjm" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bjn" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bjo" = (/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bjp" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bjq" = (/obj/machinery/power/solar_control{id = "solar_aft"; name = "Aft Solar Control"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjr" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjt" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bju" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjw" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bjx" = (/obj/machinery/light,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/airless,/area/station/atmos)
"bjy" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/airless{tag = "icon-floorscorched2"; icon_state = "floorscorched2"},/area/station/atmos)
"bjz" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/airless{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/atmos)
@@ -3207,56 +3207,56 @@
"bjI" = (/obj/machinery/light,/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/storage/tools)
"bjJ" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/device/radio/signaler,/obj/item/device/radio/intercom{pixel_y = -24},/obj/item/device/radio/signaler{pixel_x = 2; pixel_y = -2},/turf/simulated/floor,/area/station/storage/tools)
"bjK" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/device/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/igniter,/obj/item/screwdriver,/turf/simulated/floor,/area/station/storage/tools)
-"bjL" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/starboard)
-"bjM" = (/obj/cable,/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/aft)
-"bjN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bjO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/clothing/under/misc/clown,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/mask/clown_hat,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjR" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bjS" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjT" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bjU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bjL" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/east)
+"bjM" = (/obj/cable,/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/south)
+"bjN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bjO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/clothing/under/misc/clown,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/mask/clown_hat,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjR" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bjS" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjT" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bjU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bjV" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Atmospherics Access"; req_access_txt = "46"},/turf/simulated/floor/plating,/area/station/atmos)
"bjW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/storage/tools)
"bjX" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/storage/tools)
-"bjY" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bjZ" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bka" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkb" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bke" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bki" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkj" = (/obj/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
-"bkk" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkl" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkn" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bko" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bkp" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bkq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkr" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bks" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkt" = (/obj/machinery/door/airlock/engineering{name = "Engineering Shuttle"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bjY" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bjZ" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bka" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkb" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bke" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bki" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkj" = (/obj/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
+"bkk" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkl" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkn" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bko" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bkp" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bkq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkr" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bks" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkt" = (/obj/machinery/door/airlock/engineering{name = "Engineering Shuttle"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bku" = (/obj/machinery/camera,/turf/simulated/floor/plating/airless,/area)
-"bkv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkw" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkx" = (/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bkv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkw" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkx" = (/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bky" = (/turf/space,/area/shuttle/mining/station)
-"bkz" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkC" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkD" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/aft)
-"bkE" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bkG" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bkH" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bkI" = (/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/station/solar/aft)
+"bkz" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkC" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkD" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/south)
+"bkE" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bkG" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bkH" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bkI" = (/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/station/solar/south)
"bkJ" = (/turf/space,/turf/simulated/shuttle/wall{dir = 8; icon_state = "diagonalWall3"},/area/syndicate_station)
"bkK" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/syndicate_station)
"bkL" = (/turf/space,/turf/simulated/shuttle/wall{dir = 1; icon_state = "diagonalWall3"},/area/syndicate_station)
@@ -5330,31 +5330,31 @@
"bYz" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/mining/quarters)
"bYA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/mining/comms)
"bYB" = (/turf/simulated/wall,/area/mining/comms)
-"bYC" = (/turf/simulated/wall,/area/station/engine/substation/port)
-"bYD" = (/obj/machinery/door/airlock/engineering{name = "Miner's Quarters"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
+"bYC" = (/turf/simulated/wall,/area/station/engine/substation/west)
+"bYD" = (/obj/machinery/door/airlock/engineering{name = "Miner's Quarters"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
"bYE" = (/obj/lattice,/turf/simulated/wall/asteroid{dir = 10; icon_state = "astedge"},/area)
"bYF" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall,/area/mining/comms)
"bYG" = (/obj/table,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/mining/comms)
"bYH" = (/obj/machinery/power/data_terminal,/obj/computer3frame,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/mining/comms)
"bYI" = (/obj/rack,/obj/item/disk/data/floppy/read_only/communications,/turf/simulated/floor,/area/mining/comms)
-"bYJ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/port)
-"bYK" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/engine/substation/port)
+"bYJ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/west)
+"bYK" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/engine/substation/west)
"bYL" = (/turf/simulated/shuttle/wall{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/mining/space)
"bYM" = (/obj/decal/fakeobjects/shuttlethruster{dir = 8},/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/shuttle/mining/space)
"bYN" = (/obj/machinery/power/apc{dir = 8; name = "Comms Room APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor,/area/mining/comms)
"bYO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/mining/comms)
"bYP" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/mining/comms)
-"bYQ" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/port)
-"bYR" = (/turf/simulated/floor,/area/station/engine/substation/port)
-"bYS" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/port)
+"bYQ" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/west)
+"bYR" = (/turf/simulated/floor,/area/station/engine/substation/west)
+"bYS" = (/obj/machinery/dispenser{pltanks = 0},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/west)
"bYT" = (/turf/simulated/wall,/area/mining/power)
"bYU" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/shuttle/mining/space)
"bYV" = (/turf/simulated/shuttle/wall{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/mining/space)
"bYW" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/item/rods{amount = 50},/obj/item/rods{amount = 50},/obj/item/rods{amount = 50},/turf/simulated/floor,/area/mining/comms)
"bYX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/mining/comms)
"bYY" = (/obj/item/rods{amount = 50},/obj/item/rods{amount = 50},/obj/item/rods{amount = 50},/turf/simulated/floor,/area/mining/comms)
-"bYZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/port)
-"bZa" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/port)
+"bYZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/west)
+"bZa" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/west)
"bZb" = (/obj/machinery/power/furnace,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/mining/power)
"bZc" = (/obj/crate/furnacefuel,/obj/machinery/light{tag = "icon-tube1 (NORTH)"; icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/mining/power)
"bZd" = (/obj/crate/furnacefuel,/turf/simulated/floor,/area/mining/power)
@@ -5364,9 +5364,9 @@
"bZh" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor/plating,/area/mining/dock)
"bZi" = (/turf/simulated/wall,/area/mining/dock)
"bZj" = (/obj/machinery/door/airlock/engineering{name = "Emergency Comms Room"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/mining/dock)
-"bZk" = (/obj/machinery/power/apc{dir = 8; name = "Mining Outpost APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/port)
-"bZl" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor,/area/station/engine/substation/port)
-"bZm" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/engine/substation/port)
+"bZk" = (/obj/machinery/power/apc{dir = 8; name = "Mining Outpost APC"; pixel_x = -24; pixel_y = 0},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/west)
+"bZl" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor,/area/station/engine/substation/west)
+"bZm" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/engine/substation/west)
"bZn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/mining/power)
"bZo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/mining/power)
"bZp" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/mining/power)
@@ -5384,10 +5384,10 @@
"bZB" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/mining/dock)
"bZC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/mining/dock)
"bZD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/mining/dock)
-"bZE" = (/obj/machinery/door/airlock/engineering{name = "Shuttle Dock"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/station/engine/substation/port)
-"bZF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/substation/port)
-"bZG" = (/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/engine/substation/port)
-"bZH" = (/obj/machinery/door/airlock/engineering{name = "Power Room"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/substation/port)
+"bZE" = (/obj/machinery/door/airlock/engineering{name = "Shuttle Dock"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/station/engine/substation/west)
+"bZF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/substation/west)
+"bZG" = (/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/engine/substation/west)
+"bZH" = (/obj/machinery/door/airlock/engineering{name = "Power Room"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/substation/west)
"bZI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor,/area/mining/power)
"bZJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{tag = "icon-6-8"; icon_state = "6-8"},/turf/simulated/floor,/area/mining/power)
"bZK" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/mining/power)
@@ -5398,33 +5398,33 @@
"bZP" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/mining/dock)
"bZQ" = (/obj/cable{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/mining/dock)
"bZR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-yellow"; icon_state = "yellow"; dir = 2},/area/mining/dock)
-"bZS" = (/obj/machinery/door/airlock/engineering{name = "Shuttle Dock"},/turf/simulated/floor{tag = "icon-yellow (SOUTHEAST)"; icon_state = "yellow"; dir = 6},/area/station/engine/substation/port)
-"bZT" = (/obj/machinery/door/airlock/engineering{name = "Power Room"},/turf/simulated/floor,/area/station/engine/substation/port)
+"bZS" = (/obj/machinery/door/airlock/engineering{name = "Shuttle Dock"},/turf/simulated/floor{tag = "icon-yellow (SOUTHEAST)"; icon_state = "yellow"; dir = 6},/area/station/engine/substation/west)
+"bZT" = (/obj/machinery/door/airlock/engineering{name = "Power Room"},/turf/simulated/floor,/area/station/engine/substation/west)
"bZU" = (/obj/machinery/power/apc{dir = 2; name = "Outpost Power Room APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor,/area/mining/power)
"bZV" = (/turf/simulated/floor,/area/mining/power)
"bZW" = (/obj/cable{tag = "icon-4-9"; icon_state = "4-9"},/turf/simulated/floor,/area/mining/power)
-"bZX" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/station/engine/substation/port)
+"bZX" = (/obj/machinery/power/smes,/turf/simulated/floor,/area/station/engine/substation/west)
"bZY" = (/obj/machinery/power/terminal{dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/mining/power)
"bZZ" = (/turf/simulated/shuttle/wall{icon_state = "diagonalWall3"},/area/shuttle/mining/space)
"caa" = (/obj/stool/chair{dir = 1},/turf/simulated/shuttle/floor{icon_state = "floor2"},/area/shuttle/mining/space)
"cab" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/mining/dock)
"cac" = (/obj/machinery/computer/mining_shuttle,/obj/cable,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/mining/dock)
-"cad" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/port)
+"cad" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/west)
"cae" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/mining/power)
"caf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/mining/power)
"cag" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/mining/power)
"cah" = (/turf/simulated/shuttle/wall{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/mining/space)
-"cai" = (/obj/table,/obj/machinery/cell_charger,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/port)
-"caj" = (/obj/table,/obj/machinery/recharger,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/port)
+"cai" = (/obj/table,/obj/machinery/cell_charger,/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/west)
+"caj" = (/obj/table,/obj/machinery/recharger,/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/west)
"cak" = (/obj/machinery/power/furnace,/obj/cable,/turf/simulated/floor,/area/mining/power)
"cal" = (/obj/crate/furnacefuel,/obj/machinery/light,/turf/simulated/floor,/area/mining/power)
-"cam" = (/obj/machinery/recharge_station,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/port)
-"can" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor,/area/station/engine/substation/port)
-"cao" = (/obj/machinery/recharge_station,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/port)
+"cam" = (/obj/machinery/recharge_station,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/engine/substation/west)
+"can" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable,/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor,/area/station/engine/substation/west)
+"cao" = (/obj/machinery/recharge_station,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/west)
"cap" = (/obj/lattice,/turf/simulated/wall/asteroid{dir = 9; icon_state = "astedge"},/area)
"caq" = (/obj/lattice,/turf/simulated/wall/asteroid{dir = 4; icon_state = "astedge"},/area)
"car" = (/turf/simulated/wall,/area/mining/manufacturing)
-"cas" = (/obj/machinery/door/airlock/engineering{name = "Manufacturing Room"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
+"cas" = (/obj/machinery/door/airlock/engineering{name = "Manufacturing Room"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
"cat" = (/turf/space,/turf/simulated/wall/asteroid{dir = 6; icon_state = "astdetail"},/area)
"cau" = (/turf/space,/obj/lattice,/turf/simulated/wall/asteroid{dir = 6; icon_state = "astedge"},/area)
"cav" = (/obj/landmark{icon_state = "mining2"; name = "CoCl14"; dir = 2},/turf/simulated/wall/asteroid{dir = 5; icon_state = "astdetail"},/area)
diff --git a/maps/halloween14.dmm b/maps/halloween14.dmm
index aa89686..85817f4 100644
--- a/maps/halloween14.dmm
+++ b/maps/halloween14.dmm
@@ -491,12 +491,12 @@
"ajw" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/research_shuttle,/turf/simulated/floor,/area/station/science)
"ajx" = (/obj/closet/emcloset,/turf/simulated/floor,/area/station/science)
"ajy" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/science)
-"ajz" = (/turf/simulated/wall,/area/station/artifact)
-"ajA" = (/obj/machinery/status_display/research,/turf/simulated/wall,/area/station/artifact)
-"ajB" = (/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ajC" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
-"ajD" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
-"ajE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/artifact)
+"ajz" = (/turf/simulated/wall,/area/station/science/artifact)
+"ajA" = (/obj/machinery/status_display/research,/turf/simulated/wall,/area/station/science/artifact)
+"ajB" = (/obj/machinery/door/airlock/medical{name = "Artifact Lab"; req_access_txt = "8"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ajC" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
+"ajD" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
+"ajE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science/artifact)
"ajF" = (/turf/simulated/wall,/area/station/science)
"ajG" = (/obj/machinery/status_display/research,/turf/simulated/wall,/area/station/science)
"ajH" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (NORTH)"; icon_state = "door0"; dir = 1},/obj/machinery/door/airlock/medical{name = "Patient Quarters"; req_access = null},/turf/simulated/floor,/area/station/crew_quarters/observatory)
@@ -517,13 +517,13 @@
"ajW" = (/obj/machinery/door/window/northright,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
"ajX" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/table,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
"ajY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/science)
-"ajZ" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"aka" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/storage/tapebox,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akb" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ake" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akf" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"ajZ" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/paper_bin{layer = 3; pixel_x = -7; pixel_y = 6},/obj/item/disk/data/tape{layer = 3.5},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"aka" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/machinery/light{dir = 1; name = "light fixture"; rigged = 0},/obj/item/storage/tapebox,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akb" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ake" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akf" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/networked/printer{print_id = "Artlab"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"akg" = (/turf/simulated/wall,/area/station/crew_quarters/observatory)
"akh" = (/obj/item/storage/toilet,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"aki" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
@@ -549,11 +549,11 @@
"akC" = (/obj/machinery/shuttle/engine/propulsion{id = "zeta"},/turf/space,/area/shuttle/research/outpost)
"akD" = (/obj/stool/bed,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
"akE" = (/obj/secure_closet/medical2,/turf/simulated/shuttle/floor{tag = "icon-floor3"; icon_state = "floor3"},/area/shuttle/research/outpost)
-"akF" = (/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akG" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akH" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akI" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akJ" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"akF" = (/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akG" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akH" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/impact_pad,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akI" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/stool/chair{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akJ" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer3/terminal/zeta{setup_os_string = "ZETA_MAINFRAME"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"akK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"akL" = (/obj/machinery/door/window/westleft{name = "Specimen Cell"; req_access_txt = "8"},/turf/simulated/floor,/area/station/crew_quarters/observatory)
"akM" = (/turf/simulated/floor,/area/station/crew_quarters/observatory)
@@ -565,9 +565,9 @@
"akS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/secure)
"akT" = (/turf/simulated/shuttle/wall{icon_state = "wall_space"},/area/shuttle/research/outpost)
"akU" = (/turf/simulated/shuttle/wall{dir = 4; icon_state = "wall_space"},/area/shuttle/research/outpost)
-"akV" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "bot_white"},/area/station/artifact)
-"akW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"akX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"akV" = (/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/heater,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "bot_white"},/area/station/science/artifact)
+"akW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"akX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"akY" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"akZ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"ala" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
@@ -576,13 +576,13 @@
"ald" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor,/area/station/science/bot_storage)
"ale" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/syringe,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
"alf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area)
-"alg" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_spawn_with_tape = 0},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"alh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"ali" = (/obj/machinery/light,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"alj" = (/obj/machinery/camera{c_tag = "Artifact Lab"; dir = 1; name = "Outpost Camera"; network = "Zeta"},/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/test_apparatus/pitching_machine{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"alk" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"all" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/networked/test_apparatus/electrobox,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
-"alm" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/test_apparatus/xraymachine,/turf/simulated/floor{icon_state = "white"},/area/station/artifact)
+"alg" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/networked/storage/tape_drive{bank_id = "Artlab"; locked = 0; setup_spawn_with_tape = 0},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"alh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"ali" = (/obj/machinery/light,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"alj" = (/obj/machinery/camera{c_tag = "Artifact Lab"; dir = 1; name = "Outpost Camera"; network = "Zeta"},/obj/machinery/power/data_terminal,/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/test_apparatus/pitching_machine{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"alk" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"all" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/networked/test_apparatus/electrobox,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
+"alm" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/networked/test_apparatus/xraymachine,/turf/simulated/floor{icon_state = "white"},/area/station/science/artifact)
"aln" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Specimen Containment"; dir = 4; name = "Outpost Camera"; network = "Zeta"},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"alo" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"alp" = (/obj/stool/bed,/turf/simulated/floor,/area/station/crew_quarters/observatory)
@@ -591,8 +591,8 @@
"als" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/science/bot_storage)
"alt" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/guardbot_dock,/obj/machinery/bot/guardbot/gunner,/turf/simulated/floor{icon_state = "bot"},/area/station/science/bot_storage)
"alu" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "rozetasolar"; name = "Outpost Zeta Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area)
-"alv" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; tag = "icon-space"},/turf/simulated/wall,/area/station/artifact)
-"alw" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/artifact)
+"alv" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; tag = "icon-space"},/turf/simulated/wall,/area/station/science/artifact)
+"alw" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/science/artifact)
"alx" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"aly" = (/obj/machinery/navbeacon{codes_txt = "patrol"; location = "bar"; name = "buddytime beacon"},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"alz" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/science/bot_storage)
@@ -606,7 +606,7 @@
"alH" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
"alI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area)
"alJ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless,/area)
-"alK" = (/turf/simulated/floor/plating,/area/station/artifact)
+"alK" = (/turf/simulated/floor/plating,/area/station/science/artifact)
"alL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/observatory)
"alM" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
"alN" = (/obj/stool/chair,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/observatory)
@@ -786,9 +786,9 @@
"apf" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/quartermaster/storage)
"apg" = (/obj/submachine/cargopad{name = "Cargo Bay Pad"},/turf/simulated/floor,/area/station/quartermaster/storage)
"aph" = (/obj/machinery/door_control{id = "qm_dock"; name = "Intake Door Control"; pixel_x = 24},/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/quartermaster/storage)
-"api" = (/turf/simulated/wall,/area/station/maintenance/fore)
-"apj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"apk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"api" = (/turf/simulated/wall,/area/station/maintenance/north)
+"apj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"apk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"apl" = (/turf/space,/area/shuttle/research/station)
"apm" = (/turf/simulated/floor{tag = "icon-toxshuttle (NORTHWEST)"; icon_state = "toxshuttle"; dir = 9},/area/station/hallway/secondary/shuttle)
"apn" = (/turf/simulated/floor{tag = "icon-toxshuttle (NORTH)"; icon_state = "toxshuttle"; dir = 1},/area/station/hallway/secondary/shuttle)
@@ -802,8 +802,8 @@
"apv" = (/obj/machinery/conveyor{dir = 2; id = "QMLoad"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/quartermaster/storage)
"apw" = (/obj/machinery/conveyor_switch{id = "QMLoad"},/turf/simulated/floor,/area/station/quartermaster/storage)
"apx" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/door_control{id = "QMLoaddoor"; name = "Loading Door Control"; pixel_x = 24},/turf/simulated/floor,/area/station/quartermaster/storage)
-"apy" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"apz" = (/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"apy" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"apz" = (/turf/simulated/floor/plating,/area/station/maintenance/north)
"apA" = (/turf/simulated/floor{tag = "icon-toxshuttle (WEST)"; icon_state = "toxshuttle"; dir = 8},/area/station/hallway/secondary/shuttle)
"apB" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
"apC" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
@@ -819,7 +819,7 @@
"apM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"apN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Cargo Bay Port"; dir = 4; name = "Security Camera"; network = "SS13"},/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/paper_bin{pixel_x = -5; pixel_y = 3},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/quartermaster/storage)
"apO" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/obj/machinery/camera{c_tag = "Cargo Bay Starboard"; dir = 8},/turf/simulated/floor,/area/station/quartermaster/storage)
-"apP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"apP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/north)
"apQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"apR" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/station/hallway/secondary/shuttle)
"apS" = (/obj/machinery/vending/cola/blue,/turf/simulated/floor{tag = "icon-escape (NORTHEAST)"; icon_state = "escape"; dir = 5},/area/station/hallway/secondary/shuttle)
@@ -835,13 +835,13 @@
"aqc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/quartermaster/storage)
"aqd" = (/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/station/quartermaster/storage)
"aqe" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "12;31"},/turf/simulated/floor/plating,/area/station/quartermaster/storage)
-"aqf" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aqg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aqh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"aqi" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"aqf" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aqg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aqh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"aqi" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"aqj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTHEAST)"; icon_state = "rwindow"; dir = 5},/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"aqk" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"aql" = (/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aql" = (/turf/simulated/floor/plating,/area/station/maintenance/west)
"aqm" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "escape"; tag = "icon-escape (WEST)"},/area/station/hallway/secondary/shuttle)
"aqn" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/obj/machinery/computer/card,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aqo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
@@ -858,9 +858,9 @@
"aqz" = (/obj/machinery/door/airlock/external{name = "Outpost Shuttle Airlock"; req_access_txt = "24"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/hallway/secondary/shuttle)
"aqA" = (/obj/machinery/door/airlock/external{name = "Outpost Shuttle Airlock"; req_access_txt = "24"},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"aqB" = (/obj/machinery/camera{c_tag = "Research Shuttle Dock"; dir = 8},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"aqC" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aqD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aqE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aqC" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aqD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aqE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aqF" = (/turf/simulated/floor/plating,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/station/hallway/secondary/shuttle)
"aqG" = (/turf/simulated/floor{tag = "icon-escapecorner (EAST)"; icon_state = "escapecorner"; dir = 4},/area/station/hallway/secondary/shuttle)
"aqH" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
@@ -882,11 +882,11 @@
"aqX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/quartermaster)
"aqY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "QM #1"},/obj/machinery/bot/mulebot{home_destination = "QM #1"},/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/storage)
"aqZ" = (/turf/simulated/floor{icon_state = "delivery"},/area/station/quartermaster/storage)
-"ara" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"arb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"ara" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"arb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/north)
"arc" = (/obj/machinery/camera{dir = 1},/turf/space,/area)
"ard" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
-"are" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"are" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"arf" = (/turf/simulated/wall,/area/station/crew_quarters/locker)
"arg" = (/obj/stool/chair{dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
"arh" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/stool/chair{dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
@@ -906,8 +906,8 @@
"arv" = (/obj/submachine/ATM{pixel_x = 0; pixel_y = 32},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/door/window/southleft,/turf/simulated/floor,/area/station/quartermaster)
"arw" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/turf/simulated/floor/plating,/area/station/quartermaster)
"arx" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "QM #2"},/obj/machinery/light,/turf/simulated/floor{icon_state = "bot"},/area/station/quartermaster/storage)
-"ary" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"arz" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"ary" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/north)
+"arz" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/north)
"arA" = (/turf/simulated/floor{tag = "icon-toxshuttlecorner (NORTH)"; icon_state = "toxshuttlecorner"; dir = 1},/area/station/hallway/secondary/shuttle)
"arB" = (/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"arC" = (/obj/machinery/bathtub{anchored = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
@@ -929,16 +929,16 @@
"arS" = (/turf/simulated/wall/r_wall,/area/station/quartermaster)
"arT" = (/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"arU" = (/turf/simulated/wall,/area/station/maintenance/storage{name = "Renovation Area"})
-"arV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"arV" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/north)
"arW" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/research_shuttle,/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"arX" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"arY" = (/obj/machinery/shower{tag = "icon-showerhead (WEST)"; icon_state = "showerhead"; dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"arZ" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"asa" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
"asb" = (/obj/item/paper{info = "Step One: Fill the tub with water or cleansant of your choice. Step 2: Drag yourself or another person onto the bath to clean them. Take them out again with an empty hand, and drain the tub when finished likewise."; name = "Bathing Instructions"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/locker)
-"asc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"asd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"ase" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"asc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"asd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"ase" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"asf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/secondary/shuttle)
"asg" = (/obj/stool/chair{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
"ash" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-L2"; icon_state = "L2"},/area/station/hallway/secondary/shuttle)
@@ -961,7 +961,7 @@
"asy" = (/turf/simulated/wall,/area/station/quartermaster)
"asz" = (/obj/stool/barber_chair{desc = "A traditional barbershop chair, obviously a very old one at that. What it is doing on a space station you haven't the foggiest."; name = "Old Barber Chair"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"asA" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
-"asB" = (/obj/item/wirecutters,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"asB" = (/obj/item/wirecutters,/obj/item/wrench,/turf/simulated/floor/plating,/area/station/maintenance/west)
"asC" = (/obj/stool/chair{dir = 4},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
"asD" = (/obj/stool/chair{dir = 1},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
"asE" = (/obj/stool/chair{dir = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/secondary/shuttle)
@@ -970,20 +970,20 @@
"asH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/quartermaster)
"asI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/quartermaster)
"asJ" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/computer/ordercomp,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/quartermaster)
-"asK" = (/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor/plating,/area/station/maintenance/fore)
+"asK" = (/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor/plating,/area/station/maintenance/north)
"asL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"asM" = (/turf/simulated/wall,/area/station/chapel/office)
"asN" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/office)
"asO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/office)
"asP" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/chapel/office)
-"asQ" = (/turf/simulated/wall,/area/station/maintenance/port)
-"asR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"asS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"asQ" = (/turf/simulated/wall,/area/station/maintenance/west)
+"asR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"asS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"asT" = (/obj/machinery/door/window{dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"asU" = (/obj/machinery/door/window{dir = 1},/turf/simulated/floor,/area/station/crew_quarters/locker)
"asV" = (/turf/simulated/wall,/area/station/crew_quarters/toilets)
-"asW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"asX" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"asW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"asX" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"asY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Shuttle Bay"},/turf/simulated/floor,/area/station/hallway/secondary/shuttle)
"asZ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/disposalpipe/segment,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/hallway/secondary/shuttle)
"ata" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/secondary/shuttle)
@@ -996,8 +996,8 @@
"ath" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/quartermaster)
"ati" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/quartermaster)
"atj" = (/obj/machinery/status_display/supply_shuttle,/turf/simulated/wall,/area/station/quartermaster)
-"atk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fore)
-"atl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fore)
+"atk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/north)
+"atl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/north)
"atm" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"atn" = (/obj/machinery/light/small{dir = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"ato" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
@@ -1013,21 +1013,21 @@
"aty" = (/obj/item/storage/toilet,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"atz" = (/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"atA" = (/obj/chem_sink,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
-"atB" = (/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/fore)
-"atC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atD" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"atE" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"atF" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"atG" = (/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atH" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atI" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atJ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"atL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"atM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atO" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"atP" = (/turf/simulated/floor{dir = 0; icon_state = "neutralcorner"; tag = "icon-neutralcorner (WEST)"},/area/station/hallway/primary/fore)
+"atB" = (/turf/simulated/floor{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/station/hallway/primary/north)
+"atC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atD" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"atE" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"atF" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"atG" = (/turf/simulated/floor,/area/station/hallway/primary/north)
+"atH" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"atI" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atJ" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atK" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"atL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"atM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"atO" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"atP" = (/turf/simulated/floor{dir = 0; icon_state = "neutralcorner"; tag = "icon-neutralcorner (WEST)"},/area/station/hallway/primary/north)
"atQ" = (/turf/simulated/wall,/area/station/storage/emergency2)
"atR" = (/obj/decal/skeleton,/obj/decal/cleanable/blood,/turf/simulated/floor/plating,/area/station/storage/emergency2)
"atS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/clothing/shoes/moon,/turf/simulated/floor/plating,/area/station/storage/emergency2)
@@ -1044,22 +1044,22 @@
"aud" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aue" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"auf" = (/turf/simulated/wall,/area/station/chapel/main)
-"aug" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/luggable_computer,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aug" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/luggable_computer,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"auh" = (/obj/table{icon_state = "tabledir"; dir = 9},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aui" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/crew_quarters/locker)
"auj" = (/obj/machinery/shower{tag = "icon-showerhead (WEST)"; icon_state = "showerhead"; dir = 8},/obj/machinery/door/window/eastright,/turf/simulated/floor{icon_state = "cafeteria"},/area/station/crew_quarters/toilets)
"auk" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"aul" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"aum" = (/obj/machinery/door/airlock{name = "Toilet Cubicle"; req_access_txt = "0"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/station/crew_quarters/toilets)
-"aun" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"auo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aup" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Quartermasters"; location = "Shuttle Bay Hallway"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auq" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aur" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"aus" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aut" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"auu" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Chapel Hallway"; location = "Quartermasters"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auv" = (/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"aun" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"auo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aup" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Quartermasters"; location = "Shuttle Bay Hallway"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auq" = (/obj/landmark{name = "peststart"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aur" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"aus" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aut" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"auu" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Chapel Hallway"; location = "Quartermasters"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auv" = (/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"auw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/storage/emergency2)
"aux" = (/obj/machinery/door/airlock/maintenance{name = "Renovation Area"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/maintenance/storage{name = "Renovation Area"})
"auy" = (/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/office)
@@ -1073,27 +1073,27 @@
"auG" = (/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"auH" = (/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
"auI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/chapel/main)
-"auJ" = (/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"auJ" = (/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/west)
"auK" = (/obj/closet/wardrobe/black,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"auL" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"auM" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"auN" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/storage/belt/utility,/turf/simulated/floor,/area/station/crew_quarters/locker)
"auO" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/crew_quarters/locker)
"auP" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/crew_quarters/locker)
-"auQ" = (/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"auR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"auT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auV" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "shuttlebay"; tag = "icon-pipe-sj1 (WEST)"},/obj/machinery/camera{c_tag = "Fore Hallway Middle"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auW" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auX" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"auZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"ava" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "cargo"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"avb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"avc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"avd" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
+"auQ" = (/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"auR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/north)
+"auS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"auT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auV" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "shuttlebay"; tag = "icon-pipe-sj1 (WEST)"},/obj/machinery/camera{c_tag = "Fore Hallway Middle"; dir = 1},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auW" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auX" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
+"auZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"ava" = (/obj/disposalpipe/switch_junction{dir = 4; icon_state = "pipe-sj2"; mail_tag = "cargo"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"avb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"avc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"avd" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
"ave" = (/obj/machinery/space_heater,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
"avf" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/securearea{desc = "A poster that reads 'CLEAN HANDS SAVE LIVES'."; icon_state = "chsl"; name = "CLEAN HANDS SAVE LIVES"; pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
"avg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/rack,/obj/item/tank/oxygen,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
@@ -1114,8 +1114,8 @@
"avv" = (/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"avw" = (/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"avx" = (/obj/machinery/camera{c_tag = "Chapel Starboard"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"avy" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"avz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"avy" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"avz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"avA" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/closet/wardrobe/grey,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"avB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"avC" = (/obj/table{icon_state = "tabledir"; dir = 10},/turf/simulated/floor,/area/station/crew_quarters/locker)
@@ -1125,19 +1125,19 @@
"avG" = (/obj/machinery/camera{c_tag = "Bathrooms"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/obj/item/clothing/head/plunger,/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"avH" = (/obj/machinery/light_switch{name = "N light switch"; pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"avI" = (/obj/machinery/door/airlock{name = "Toilet Cubicle"; req_access_txt = "0"},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/station/crew_quarters/toilets)
-"avJ" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Port"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"avK" = (/turf/simulated/wall,/area/station/hallway/primary/fore)
+"avJ" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Port"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/north)
+"avK" = (/turf/simulated/wall,/area/station/hallway/primary/north)
"avL" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/inner)
-"avM" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/fore)
-"avN" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/fore)
-"avO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/fore)
+"avM" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/north)
+"avN" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/north)
+"avO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/north)
"avP" = (/turf/simulated/wall,/area/station/storage/emergency)
"avQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/emergency)
"avR" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/emergency)
"avS" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/emergency)
"avT" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency)
-"avU" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"avV" = (/obj/decal/cleanable/robot_debris,/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"avU" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"avV" = (/obj/decal/cleanable/robot_debris,/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"avW" = (/obj/machinery/camera{c_tag = "Barbershop"; dir = 4},/obj/machinery/space_heater,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
"avX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
"avY" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
@@ -1158,8 +1158,8 @@
"awn" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/communications_dish{name = "Auxiliary Communications dish"},/turf/simulated/floor/plating/airless,/area)
"awo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area)
"awp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/plating/airless,/area)
-"awq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/port)
-"awr" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"awq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/west)
+"awr" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aws" = (/turf/simulated/wall,/area/station/crew_quarters/quarters)
"awt" = (/obj/closet/wardrobe/mixed,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
"awu" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
@@ -1170,10 +1170,10 @@
"awz" = (/obj/closet/emcloset,/turf/simulated/floor,/area/station/crew_quarters/locker)
"awA" = (/obj/item/storage/toilet,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
"awB" = (/obj/machinery/light/small,/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/station/crew_quarters/toilets)
-"awC" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"awD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"awE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"awF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/fore)
+"awC" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"awD" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/north)
+"awE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"awF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/north)
"awG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"awH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"awI" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1187,7 +1187,7 @@
"awQ" = (/obj/item/extinguisher{pixel_y = 8},/obj/reagent_dispensers/foamtank,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
"awR" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
"awS" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
-"awT" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"awT" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"awU" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
"awV" = (/obj/cable,/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
"awW" = (/obj/table,/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency2)
@@ -1216,8 +1216,8 @@
"axt" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"axu" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor,/area/station/crew_quarters/locker)
"axv" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/crew_quarters/locker)
-"axw" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"axx" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"axw" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"axx" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/north)
"axy" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"axz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"axA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1227,8 +1227,8 @@
"axE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/storage/emergency)
"axF" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
"axG" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
-"axH" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"axI" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"axH" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"axI" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"axJ" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/storage/emergency2)
"axK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency2)
"axL" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -1236,42 +1236,42 @@
"axN" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
"axO" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/station/chapel/main)
"axP" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/chapel/main)
-"axQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"axR" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"axQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"axR" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
"axS" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/station/crew_quarters/quarters)
"axT" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"axU" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"axV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor,/area/station/crew_quarters/locker)
-"axW" = (/turf/simulated/floor{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/station/hallway/primary/fore)
-"axX" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"axY" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"axZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"aya" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"ayb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"ayc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/fore)
-"ayd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/station/hallway/primary/fore)
-"aye" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ayf" = (/obj/machinery/vending/coffee,/obj/decal/cleanable/cobweb2,/turf/simulated/floor,/area/station/hallway/primary/fore)
+"axW" = (/turf/simulated/floor{tag = "icon-neutral (NORTHWEST)"; icon_state = "neutral"; dir = 9},/area/station/hallway/primary/north)
+"axX" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"axY" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"axZ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"aya" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"ayb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"ayc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/north)
+"ayd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/station/hallway/primary/north)
+"aye" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"ayf" = (/obj/machinery/vending/coffee,/obj/decal/cleanable/cobweb2,/turf/simulated/floor,/area/station/hallway/primary/north)
"ayg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"ayh" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
-"ayi" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
-"ayj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
+"ayh" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
+"ayi" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/north)
+"ayj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/engine/substation/north)
"ayk" = (/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"ayl" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aym" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"ayn" = (/obj/disposalpipe/segment,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
"ayo" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock{name = "Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor,/area/station/storage/emergency)
-"ayp" = (/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"ayq" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/fore)
-"ayr" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
-"ays" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/station/hallway/primary/fore)
+"ayp" = (/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"ayq" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/north)
+"ayr" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
+"ays" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (NORTHEAST)"; icon_state = "neutral"; dir = 5},/area/station/hallway/primary/north)
"ayt" = (/obj/machinery/camera{c_tag = "Chapel Entrance"; dir = 4},/turf/simulated/floor{icon_state = "carpetNW"},/area/station/chapel/main)
"ayu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "carpetNE"},/area/station/chapel/main)
"ayv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"ayw" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"ayx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/station/chapel/main)
"ayy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"ayz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"ayz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"ayA" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"ayB" = (/obj/burning_barrel,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"ayC" = (/obj/stool/chair{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
@@ -1279,13 +1279,13 @@
"ayE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"ayF" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/turf/simulated/floor,/area/station/crew_quarters/locker)
"ayG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/crew_quarters/locker)
-"ayH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ayI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/snack,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"ayJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/fore)
+"ayH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"ayI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/snack,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"ayJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/north)
"ayK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"ayL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"ayM" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/fore)
-"ayN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/fore)
+"ayM" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/north)
+"ayN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/north)
"ayO" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"ayP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/storage/emergency)
"ayQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
@@ -1293,21 +1293,21 @@
"ayS" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
"ayT" = (/obj/item/extinguisher{pixel_y = 8},/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
"ayU" = (/obj/closet/emcloset,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/emergency)
-"ayV" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Starboard"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"ayW" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"ayX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"ayV" = (/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Fore Hallway Starboard"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"ayW" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/north)
+"ayX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"ayY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"ayZ" = (/turf/simulated/floor{icon_state = "carpetW"},/area/station/chapel/main)
"aza" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpet2"},/area/station/chapel/main)
"azb" = (/turf/simulated/floor{icon_state = "carpetN"},/area/station/chapel/main)
"azc" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/chapel/main)
"azd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/station/chapel/main)
-"aze" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azh" = (/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"azi" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aze" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azh" = (/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"azi" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"azk" = (/obj/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 6},/obj/item/pen,/obj/machinery/light/small{dir = 1},/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"azl" = (/obj/machinery/door/window/northleft,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"azm" = (/obj/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
@@ -1316,13 +1316,13 @@
"azp" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"azq" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"azr" = (/obj/secure_closet/personal,/turf/simulated/floor,/area/station/crew_quarters/locker)
-"azs" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"azt" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"azu" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/fore)
-"azv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/fore)
+"azs" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/north)
+"azt" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"azu" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/north)
+"azv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/north)
"azw" = (/turf/simulated/wall,/area/station/maintenance/inner)
-"azx" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/fore)
-"azy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/fore)
+"azx" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/station/hallway/primary/north)
+"azy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/hallway/primary/north)
"azz" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/eastleft,/turf/simulated/floor,/area/station/chapel/main)
"azA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpet"},/area/station/chapel/main)
"azB" = (/turf/simulated/floor{icon_state = "carpet"},/area/station/chapel/main)
@@ -1331,11 +1331,11 @@
"azE" = (/obj/machinery/light/small,/obj/stool,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"azF" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
"azG" = (/obj/machinery/light/small,/obj/stool,/turf/simulated/floor{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/station/chapel/main)
-"azH" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azI" = (/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"azK" = (/obj/machinery/camera{c_tag = "Port Maintenance External Access"; dir = 4; name = "Security Camera"; network = "SS13"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"azL" = (/obj/cable,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"azH" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azI" = (/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"azK" = (/obj/machinery/camera{c_tag = "Port Maintenance External Access"; dir = 4; name = "Security Camera"; network = "SS13"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"azL" = (/obj/cable,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
"azM" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/stool/chair{dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"azN" = (/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"azO" = (/obj/stool/bed,/obj/item/clothing/suit/bedsheet,/obj/securearea{desc = "You have no idea who these people are. Who's poster is this, anyway?"; icon_state = "rush"; name = "historic artifact"; pixel_x = -32; pixel_y = 0},/obj/decal/skeleton{desc = "Um. Uh. Oh dear."},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
@@ -1345,19 +1345,19 @@
"azS" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/glass{name = "Crew Quarters"},/turf/simulated/floor{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/station/crew_quarters/quarters)
"azT" = (/obj/secure_closet/personal,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/crew_quarters/locker)
"azU" = (/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/eva)
-"azV" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/fore)
-"azW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/fore)
-"azX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"azV" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/north)
+"azW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/north)
+"azX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"azY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"azZ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"aAa" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAd" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aAe" = (/turf/simulated/floor{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/station/hallway/primary/fore)
-"aAf" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"aAg" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/fore)
-"aAh" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/fore)
+"aAe" = (/turf/simulated/floor{tag = "icon-neutral (SOUTHWEST)"; icon_state = "neutral"; dir = 10},/area/station/hallway/primary/north)
+"aAf" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"aAg" = (/turf/simulated/floor{tag = "icon-neutral"; icon_state = "neutral"},/area/station/hallway/primary/north)
+"aAh" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/north)
"aAi" = (/turf/simulated/wall,/area/station/crew_quarters/pool)
"aAj" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/eastright,/turf/simulated/floor,/area/station/chapel/main)
"aAk" = (/obj/stool,/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
@@ -1365,9 +1365,9 @@
"aAm" = (/obj/machinery/door{icon = 'Door1.dmi'; name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
"aAn" = (/obj/machinery/door/firedoor/border_only{tag = "icon-door0 (NORTH)"; icon_state = "door0"; dir = 1},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aAo" = (/turf/simulated/wall,/area/station/medical/morgue)
-"aAp" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aAq" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aAr" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aAp" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aAq" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aAr" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aAs" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"aAt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"aAu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/crew_quarters/quarters)
@@ -1378,7 +1378,7 @@
"aAz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aAA" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/crew_quarters/locker)
"aAB" = (/obj/secure_closet/personal,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
-"aAC" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Shuttle Bay Hallway"; location = "Cafeteria"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
+"aAC" = (/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Shuttle Bay Hallway"; location = "Cafeteria"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
"aAD" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "eva"; name = "EVA Blast Doors"; opacity = 0; p_open = 1},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
"aAE" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/storage/belt/utility,/obj/item/device/gps,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aAF" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/device/prox_sensor,/obj/item/device/prox_sensor,/obj/item/device/radio,/obj/item/device/t_scanner,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
@@ -1387,8 +1387,8 @@
"aAI" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/crate,/obj/item/dice,/obj/item/mousetrap,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aAL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/fore)
-"aAM" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
+"aAL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/substation/north)
+"aAM" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/engine/substation/north)
"aAN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/inner)
"aAO" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aAP" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1397,8 +1397,8 @@
"aAS" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/crew_quarters/pool)
"aAT" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/clothing/under/shorts/blue{desc = "In space?"; name = "swimming trunks"},/obj/decal/cleanable/cobweb,/turf/simulated/floor,/area/station/crew_quarters/pool)
"aAU" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/clothing/under/shorts/blue{desc = "In space?"; name = "swimming trunks"},/turf/simulated/floor,/area/station/crew_quarters/pool)
-"aAV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/fore)
-"aAW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bridge Hallway"; location = "Chapel Hallway"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"aAV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/north)
+"aAW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bridge Hallway"; location = "Chapel Hallway"},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"aAX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/chapel/main)
"aAY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetW"},/area/station/chapel/main)
"aAZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "carpet2"},/area/station/chapel/main)
@@ -1410,10 +1410,10 @@
"aBf" = (/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aBg" = (/obj/crematorium,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aBh" = (/obj/machinery/crema_switch{pixel_x = 24},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aBi" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBk" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aBl" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aBi" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBk" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aBl" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aBm" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/crew_quarters/quarters)
"aBn" = (/obj/machinery/camera{c_tag = "Crew Quarters"},/turf/simulated/floor{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/station/crew_quarters/quarters)
"aBo" = (/obj/landmark/halloween,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-greencorner (NORTH)"; icon_state = "greencorner"; dir = 1},/area/station/crew_quarters/quarters)
@@ -1431,17 +1431,17 @@
"aBA" = (/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aBB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aBC" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aBD" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
-"aBE" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/power/terminal,/obj/machinery/camera{c_tag = "Fore Electrical Substation"; dir = 8},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
-"aBF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"aBD" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/engine/substation/north)
+"aBE" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/machinery/power/terminal,/obj/machinery/camera{c_tag = "Fore Electrical Substation"; dir = 8},/turf/simulated/floor/plating,/area/station/engine/substation/north)
+"aBF" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"aBG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/inner)
"aBH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/inner)
"aBI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/crew_quarters/pool)
"aBJ" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor,/area/station/crew_quarters/pool)
"aBK" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/pool)
"aBL" = (/turf/simulated/floor,/area/station/crew_quarters/pool)
-"aBM" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "chapel"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aBN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"aBM" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "chapel"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aBN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"aBO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/chapel/main)
"aBP" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/chapel/main)
"aBQ" = (/obj/item/device/radio/intercom{frequency = 1443; name = "Confession Intercom"; pixel_x = -27; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
@@ -1450,30 +1450,30 @@
"aBT" = (/obj/table,/obj/item/device/radio/intercom{frequency = 1443; name = "Confession Intercom"; pixel_x = 27; pixel_y = 0},/obj/item/paper,/turf/simulated/floor{icon_state = "dark"},/area/station/chapel/main)
"aBU" = (/obj/machinery/camera{c_tag = "Morgue"; dir = 4},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aBV" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aBW" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBX" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aBY" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aBZ" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aCa" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aBW" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBX" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aBY" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aBZ" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aCa" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aCb" = (/obj/submachine/ATM{pixel_x = -30},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"aCc" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
"aCd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/quarters)
-"aCe" = (/obj/disposalpipe/segment,/obj/decal/cleanable/oil,/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aCe" = (/obj/disposalpipe/segment,/obj/decal/cleanable/oil,/turf/simulated/floor,/area/station/hallway/primary/north)
"aCf" = (/obj/cable,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "eva"; name = "EVA Blast Doors"; opacity = 0; p_open = 1},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/ai_monitored/storage/eva)
"aCg" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aCh" = (/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/glass/reinforced{amount = 50},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aCi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/crate/rcd,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aCj" = (/obj/machinery/dispenser{pltanks = 0},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aCk" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aCl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
-"aCm" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/fore)
-"aCn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"aCl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/substation/north)
+"aCm" = (/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/north)
+"aCn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"aCo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area)
"aCp" = (/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/crew_quarters/pool)
"aCq" = (/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/obj/item/beach_ball,/turf/simulated/floor{tag = "icon-green"; icon_state = "green"},/area/station/crew_quarters/pool)
-"aCr" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aCs" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aCt" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/fore)
+"aCr" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aCs" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/north)
+"aCt" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/north)
"aCu" = (/obj/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "chapel"},/area/station/chapel/main)
"aCv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Chapel"},/turf/simulated/floor{icon_state = "chapel"},/area/station/chapel/main)
"aCw" = (/turf/simulated/wall,/area/station/storage/tech)
@@ -1490,21 +1490,21 @@
"aCH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/crew_quarters/quarters)
"aCI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aCJ" = (/obj/shrub{tag = "icon-shrub (NORTH)"; icon_state = "shrub"; dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/locker)
-"aCK" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aCK" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/north)
"aCL" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aCM" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/storage/lightbox/tubes,/obj/item/storage/lightbox/tubes,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aCN" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/item/rods{amount = 50},/obj/item/sheet/glass{amount = 50},/obj/item/weldingtool,/obj/item/wrench,/obj/item/storage/firstaid/oxygen,/obj/machinery/camera{c_tag = "EVA"; dir = 8},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
-"aCO" = (/obj/decal/cleanable/blood,/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
-"aCP" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/decal/cleanable/blood{tag = "icon-floor5"; icon_state = "floor5"},/turf/simulated/floor/plating,/area/station/engine/substation/fore)
-"aCQ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/decal/cleanable/blood,/turf/simulated/floor/plating,/area/station/engine/substation/fore)
+"aCO" = (/obj/decal/cleanable/blood,/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
+"aCP" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/decal/cleanable/blood{tag = "icon-floor5"; icon_state = "floor5"},/turf/simulated/floor/plating,/area/station/engine/substation/north)
+"aCQ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/decal/cleanable/blood,/turf/simulated/floor/plating,/area/station/engine/substation/north)
"aCR" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aCS" = (/obj/pool{tag = "icon-pool (NORTHWEST)"; icon_state = "pool"; dir = 9},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aCT" = (/obj/pool{tag = "icon-pool (NORTH)"; icon_state = "pool"; dir = 1},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aCU" = (/obj/pool{tag = "icon-pool (NORTHEAST)"; icon_state = "pool"; dir = 5},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aCV" = (/obj/machinery/camera{c_tag = "Pool"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"aCW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCX" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aCY" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/starboard)
+"aCW" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCX" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aCY" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/east)
"aCZ" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/mail{mail_tag = "chapel"; name = "mail chute-'Chapel'"},/turf/simulated/floor{dir = 1; icon_state = "chapel"},/area/station/chapel/main)
"aDa" = (/turf/simulated/wall/r_wall,/area/station/chapel/main)
"aDb" = (/turf/simulated/wall/r_wall,/area/station/teleporter)
@@ -1514,11 +1514,11 @@
"aDf" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/disk/data/floppy/read_only/engine_prog,/obj/item/disk/data/floppy/read_only/medical_progs,/obj/item/disk/data/floppy/read_only/communications,/obj/item/disk/data/floppy/read_only/network_progs,/obj/item/disk/data/floppy/read_only/security_progs,/obj/item/disk/data/floppy/computer3boot,/turf/simulated/floor/plating,/area/station/storage/tech)
"aDg" = (/obj/morgue,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aDh" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/morgue)
-"aDi" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDj" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDk" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDl" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDm" = (/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aDi" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDj" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDk" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDl" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDm" = (/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aDn" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/crew_quarters/quarters)
"aDo" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/quarters)
"aDp" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = null; req_access_txt = "18"},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
@@ -1526,18 +1526,18 @@
"aDr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aDs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/ai_monitored/storage/eva)
"aDt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aDu" = (/obj/decal/cleanable/blood{tag = "icon-floor6"; icon_state = "floor6"},/turf/simulated/wall/r_wall,/area/station/engine/substation/fore)
+"aDu" = (/obj/decal/cleanable/blood{tag = "icon-floor6"; icon_state = "floor6"},/turf/simulated/wall/r_wall,/area/station/engine/substation/north)
"aDv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area)
"aDw" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aDx" = (/obj/pool{tag = "icon-pool (WEST)"; icon_state = "pool"; dir = 8},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aDy" = (/obj/poolwater,/turf/unsimulated/floor/pool,/area/station/crew_quarters/pool)
"aDz" = (/obj/pool{tag = "icon-pool (EAST)"; icon_state = "pool"; dir = 4},/obj/pool_springboard,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aDA" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"aDB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aDC" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aDD" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/starboard)
-"aDE" = (/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"aDF" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"aDB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aDC" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aDD" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/station/hallway/primary/east)
+"aDE" = (/turf/simulated/wall,/area/station/hallway/primary/east)
+"aDF" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"aDG" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer/teleporter,/turf/simulated/floor,/area/station/teleporter)
"aDH" = (/obj/machinery/teleport/portal_generator,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Teleporter"; dir = 2},/turf/simulated/floor,/area/station/teleporter)
"aDI" = (/obj/machinery/teleport/portal_ring,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/teleporter)
@@ -1546,15 +1546,15 @@
"aDL" = (/turf/simulated/floor/plating,/area/station/storage/tech)
"aDM" = (/obj/rack,/obj/item/circuitboard/robotics,/obj/item/circuitboard/teleporter,/obj/item/circuitboard/arcade,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/storage/tech)
"aDN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aDO" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aDP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aDQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aDR" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDS" = (/obj/disposalpipe/junction{dir = 0; icon_state = "pipe-y"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDV" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aDW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aDO" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aDP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aDQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aDR" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDS" = (/obj/disposalpipe/junction{dir = 0; icon_state = "pipe-y"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDT" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDV" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aDW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aDX" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aDY" = (/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/screwdriver,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aDZ" = (/obj/rack,/obj/item/tank/jetpack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
@@ -1562,11 +1562,11 @@
"aEb" = (/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aEc" = (/obj/poolwater,/obj/landmark/halloween,/turf/unsimulated/floor/pool,/area/station/crew_quarters/pool)
"aEd" = (/obj/pool{tag = "icon-pool (EAST)"; icon_state = "pool"; dir = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"aEe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Starboard Hallway Fore"; c_tag_order = 999; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aEf" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/starboard)
-"aEg" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/starboard)
-"aEh" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/starboard)
-"aEi" = (/obj/decal/cleanable/oil,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/starboard)
+"aEe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Starboard Hallway Fore"; c_tag_order = 999; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aEf" = (/turf/simulated/floor{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/station/hallway/primary/east)
+"aEg" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/east)
+"aEh" = (/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/east)
+"aEi" = (/obj/decal/cleanable/oil,/turf/simulated/floor{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/station/hallway/primary/east)
"aEj" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/teleporter)
"aEk" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/teleporter)
"aEl" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/teleporter)
@@ -1576,13 +1576,13 @@
"aEp" = (/obj/rack,/obj/item/circuitboard/cloning,/obj/item/circuitboard/aiupload,/obj/item/circuitboard/card,/turf/simulated/floor/plating,/area/station/storage/tech)
"aEq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aEr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aEs" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aEt" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aEu" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aEv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aEw" = (/turf/simulated/wall/r_wall,/area/station/maintenance/port)
+"aEs" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aEt" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aEu" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aEv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aEw" = (/turf/simulated/wall/r_wall,/area/station/maintenance/west)
"aEx" = (/turf/simulated/wall/r_wall,/area/station/medical/head)
-"aEy" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/port)
+"aEy" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/west)
"aEz" = (/obj/rack,/obj/item/clothing/suit/space,/obj/item/clothing/head/helmet/space,/obj/item/clothing/mask/breath,/obj/item/crowbar,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/ai_monitored/storage/eva)
"aEA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aEB" = (/obj/pool{tag = "icon-pool (SOUTHWEST)"; icon_state = "pool"; dir = 10},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
@@ -1590,11 +1590,11 @@
"aED" = (/obj/pool{density = 0},/obj/pool{density = 0; dir = 8; icon_state = "ladder"; name = "ladder"; tag = "icon-ladder (WEST)"},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aEE" = (/obj/pool{tag = "icon-pool (SOUTHEAST)"; icon_state = "pool"; dir = 6},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aEF" = (/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
-"aEG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aEH" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aEI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aEJ" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aEK" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
+"aEG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aEH" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aEI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aEJ" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aEK" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
"aEL" = (/obj/item/device/radio/beacon,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/teleporter)
"aEM" = (/turf/simulated/floor,/area/station/teleporter)
"aEN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/station/teleporter)
@@ -1607,21 +1607,21 @@
"aEU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/morgue,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aEV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "blobstart"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aEW" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aEX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"aEY" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aEZ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aFa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/port)
-"aFc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/wrench/monkey,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/maintenance/port)
+"aEX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"aEY" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aEZ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aFa" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/west)
+"aFc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/wrench/monkey,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/maintenance/west)
"aFe" = (/obj/item/storage/firstaid/regular,/obj/table,/obj/item/storage/firstaid/regular,/obj/item/hand_labeler,/obj/item/reagent_containers/food/snacks/cookie/jaffa,/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aFf" = (/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aFg" = (/obj/machinery/light{dir = 1},/obj/critter/bat/doctor,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aFh" = (/obj/closet/wardrobe/white{anchored = 1; desc = "A classic wooden dresser. Comes prestocked with 6 changes of clothes."; icon_closed = "dresser"; icon_opened = "dresser_open"; icon_state = "dresser"; name = "Medical Dresser"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aFi" = (/obj/stool/bed,/obj/disposalpipe/segment,/obj/item/clothing/suit/bedsheet,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
-"aFj" = (/turf/simulated/wall,/area/station/hallway/primary/port)
-"aFk" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/port)
-"aFl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/port)
+"aFj" = (/turf/simulated/wall,/area/station/hallway/primary/west)
+"aFk" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/west)
+"aFl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/west)
"aFm" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aFn" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aFo" = (/obj/spook,/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1629,36 +1629,36 @@
"aFq" = (/obj/stool,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aFr" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aFs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/pool)
-"aFt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aFu" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
+"aFt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aFu" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
"aFv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/turf/simulated/floor,/area/station/teleporter)
-"aFw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/starboard)
+"aFw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/hallway/primary/east)
"aFx" = (/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/turf/simulated/floor,/area/station/storage/tech)
"aFy" = (/obj/machinery/camera{c_tag = "Morgue"; dir = 10},/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
"aFz" = (/obj/item/storage/lglo_kit,/turf/simulated/floor{tag = "icon-dark"; icon_state = "dark"},/area/station/medical/morgue)
-"aFA" = (/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aFB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aFC" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aFD" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aFE" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aFA" = (/obj/landmark{name = "NASSA spawn"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aFB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aFC" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aFD" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aFE" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aFF" = (/turf/simulated/shuttle/wall{dir = 8; icon_state = "wall3_space"},/area/bee_trader)
"aFG" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/bee_trader)
"aFH" = (/obj/decal/fakeobjects/shuttleengine{dir = 4},/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/bee_trader)
"aFI" = (/obj/decal/fakeobjects/shuttlethruster{dir = 8},/turf/space,/area/bee_trader)
-"aFJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aFK" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aFJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aFK" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aFL" = (/turf/simulated/wall,/area/station/medical/robotics)
"aFM" = (/turf/simulated/wall/r_wall,/area/station/medical/robotics)
"aFN" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/medical/head)
"aFO" = (/obj/disposalpipe/segment,/obj/chem_sink,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
-"aFP" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aFQ" = (/obj/disposalpipe/segment,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aFR" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aFS" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aFT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aFU" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aFV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/fore)
-"aFW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/fore)
+"aFP" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aFQ" = (/obj/disposalpipe/segment,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aFR" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aFS" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aFT" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/north)
+"aFU" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aFV" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/north)
+"aFW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor,/area/station/hallway/primary/north)
"aFX" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aFY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aFZ" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
@@ -1667,20 +1667,20 @@
"aGc" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aGd" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/vending/coffee,/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/crew_quarters/pool)
"aGe" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/maintenance/inner)
-"aGf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aGg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aGh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aGi" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aGj" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aGk" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/maintenance/fsmaint)
-"aGl" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGm" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGn" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGo" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGp" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGq" = (/obj/machinery/camera{c_tag = "Comm Station"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aGs" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aGf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aGg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aGh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aGi" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aGj" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aGk" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/maintenance/NEmaint)
+"aGl" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGm" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGn" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGo" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGp" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGq" = (/obj/machinery/camera{c_tag = "Comm Station"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aGs" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aGt" = (/obj/machinery/power/data_terminal,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/communications_dish{tag = "MAIN_DISH_SS13"},/turf/simulated/floor/plating/airless,/area)
"aGu" = (/obj/lattice{tag = "icon-lattice-dir (NORTHWEST)"; icon_state = "lattice-dir"; dir = 9},/turf/simulated/shuttle/wall{dir = 8; icon_state = "wall3_space"},/area/bee_trader)
"aGv" = (/obj/stool/chair/couch{tag = "icon-chair_couch-brown (WEST)"; icon_state = "chair_couch-brown"; dir = 8},/obj/submachine/ATM{pixel_x = -32; pixel_y = 0},/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "caution_south"},/area/bee_trader)
@@ -1688,8 +1688,8 @@
"aGx" = (/obj/reagent_dispensers/beerkeg,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "caution_south"},/area/bee_trader)
"aGy" = (/obj/decal/fakeobjects/pipe{dir = 4},/obj/lattice{tag = "icon-lattice-dir (EAST)"; icon_state = "lattice-dir"; dir = 4},/turf/space,/area)
"aGz" = (/obj/lattice{tag = "icon-lattice-dir (NORTHEAST)"; icon_state = "lattice-dir"; dir = 5},/obj/decal/fakeobjects/pipe{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/space,/area)
-"aGA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aGB" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aGA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aGB" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aGC" = (/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance"; req_access_txt = "12;29"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aGD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"aGE" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
@@ -1702,8 +1702,8 @@
"aGL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aGM" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/head_surgeon,/turf/simulated/floor{icon_state = "white"},/area/station/medical/head)
"aGN" = (/obj/machinery/door/airlock/command{name = "Head Surgeon's Office"; req_access = null; req_access_txt = "53"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/station/medical/head)
-"aGO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aGP" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aGO" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aGP" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aGQ" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aGR" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aGS" = (/obj/machinery/camera{c_tag = "Inner Maintenance Fore Port"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -1712,45 +1712,45 @@
"aGV" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aGW" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/crew_quarters/pool)
"aGX" = (/obj/closet,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aGY" = (/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aGZ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aHa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aHb" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aHc" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHd" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 0},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHe" = (/obj/stool/chair{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHf" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aGY" = (/turf/simulated/floor,/area/station/hallway/primary/east)
+"aGZ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aHa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aHb" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aHc" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHd" = (/obj/machinery/camera{c_tag = "Fore Starboard Maintenance"; dir = 0},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHe" = (/obj/stool/chair{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHf" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/computer3frame{anchored = 1; state = 1},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aHg" = (/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "hive"},/turf/simulated/shuttle/wall{tag = "icon-diagonalWall3 (NORTHWEST)"; icon_state = "diagonalWall3"; dir = 9},/area/bee_trader)
"aHh" = (/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "hive"},/area/bee_trader)
"aHi" = (/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "hive"},/turf/simulated/shuttle/wall{tag = "icon-diagonalWall3 (SOUTHWEST)"; icon_state = "diagonalWall3"; dir = 10},/area/bee_trader)
"aHj" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/bee_trader)
"aHk" = (/turf/space,/obj/grille/catwalk{dir = 10},/turf/simulated/floor/plating/airless/catwalk{dir = 1; icon_state = "catwalk_cross"; layer = 2},/area/bee_trader)
"aHl" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/bee_trader)
-"aHm" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aHm" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aHn" = (/obj/crate,/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cable_coil,/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,/area/station/medical/robotics)
"aHo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"aHp" = (/turf/simulated/floor,/area/station/medical/robotics)
"aHq" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/circular_saw,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/circular_saw{pixel_x = 3; pixel_y = 12},/obj/item/scalpel,/obj/item/scalpel,/turf/simulated/floor,/area/station/medical/robotics)
"aHr" = (/obj/machinery/door/airlock/glass{name = "Head Surgeon's Office"; req_access_txt = "53"},/turf/simulated/floor{tag = "icon-whitehall (NORTH)"; icon_state = "whitehall"; dir = 1},/area/station/medical/head)
"aHs" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/head)
-"aHt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aHu" = (/turf/simulated/floor,/area/station/hallway/primary/port)
+"aHt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aHu" = (/turf/simulated/floor,/area/station/hallway/primary/west)
"aHv" = (/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHw" = (/obj/machinery/camera{c_tag = "Inner Maintenance"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHx" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Inner Maintenance"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aHz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aHA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aHB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aHC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aHD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/starboard)
-"aHE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/starboard)
-"aHF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHI" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHJ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aHK" = (/obj/decal/cleanable/robot_debris,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aHA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aHB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aHC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aHD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/east)
+"aHE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/east)
+"aHF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHG" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark{name = "kudzustart"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHI" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHJ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aHK" = (/obj/decal/cleanable/robot_debris,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aHL" = (/obj/grille/steel,/obj/window/crystal/reinforced,/obj/window/crystal/reinforced/east,/obj/window/crystal/reinforced/west,/obj/window/crystal/reinforced/north,/obj/window/crystal/reinforced/south,/turf/simulated/shuttle/floor{icon_state = "floor2"},/area/bee_trader)
"aHM" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/npc/trader/bee,/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "hive"},/area/bee_trader)
"aHN" = (/obj/decal/fakeobjects/cargopad,/obj/marker/supplymarker,/turf/simulated/shuttle/floor{tag = "icon-delivery"; icon = 'icons/turf/floors.dmi'; icon_state = "delivery"},/area/bee_trader)
@@ -1766,35 +1766,35 @@
"aHX" = (/obj/landmark/start{name = "Roboticist"},/turf/simulated/floor,/area/station/medical/robotics)
"aHY" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"aHZ" = (/obj/item/extinguisher{pixel_y = 8},/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
-"aIa" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aIb" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIc" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aIa" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aIb" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIc" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/west)
"aId" = (/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aIe" = (/obj/cable,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aIf" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aIg" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aIh" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aIh" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/east)
"aIi" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aIj" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aIk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
-"aIl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"aIm" = (/obj/machinery/camera{c_tag = "Starboard Hallway MidFore"; c_tag_order = 999; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
-"aIn" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/starboard)
-"aIo" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/starboard)
+"aIl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/east)
+"aIm" = (/obj/machinery/camera{c_tag = "Starboard Hallway MidFore"; c_tag_order = 999; dir = 4},/turf/simulated/floor/plating,/area/station/hallway/primary/east)
+"aIn" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/east)
+"aIo" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/east)
"aIp" = (/turf/simulated/wall,/area/station/security/detectives_office)
"aIq" = (/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
-"aIr" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
-"aIs" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aIr" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
+"aIs" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aIt" = (/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aIu" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/command{name = "AI Module Storage"; req_access_txt = "16"},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
-"aIv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/fsmaint)
+"aIv" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/NEmaint)
"aIw" = (/obj/machinery/beacon{anchored = 1; sname = "Station"},/turf/simulated/floor/plating/airless,/area)
"aIx" = (/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "hive"},/turf/simulated/shuttle/wall{tag = "icon-diagonalWall3 (SOUTHEAST)"; icon_state = "diagonalWall3"; dir = 6},/area/bee_trader)
"aIy" = (/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "hive"},/turf/simulated/shuttle/wall{tag = "icon-diagonalWall3 (WEST)"; icon_state = "diagonalWall3"; dir = 8},/area/bee_trader)
"aIz" = (/turf/space,/obj/grille/catwalk{dir = 10; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 10; layer = 2},/area/bee_trader)
"aIA" = (/turf/space,/obj/grille/catwalk{dir = 6},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area/bee_trader)
"aIB" = (/turf/space,/obj/grille/catwalk{dir = 6; icon_state = "catwalk_cross"},/turf/simulated/floor/plating/airless/catwalk{dir = 6; layer = 2},/area/bee_trader)
-"aIC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/spook,/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aIC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/spook,/turf/simulated/floor/plating,/area/station/maintenance/west)
"aID" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aIE" = (/obj/machinery/manufacturer/robotics,/turf/simulated/floor,/area/station/medical/robotics)
"aIF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1802,8 +1802,8 @@
"aIH" = (/obj/machinery/optable,/turf/simulated/floor,/area/station/medical/robotics)
"aII" = (/obj/machinery/computer/operating,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"aIJ" = (/obj/submachine/robomoduler,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
-"aIK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aIL" = (/obj/machinery/camera{c_tag = "Port Hallway Fore"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aIK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aIL" = (/obj/machinery/camera{c_tag = "Port Hallway Fore"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/station/hallway/primary/west)
"aIM" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aIN" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aIO" = (/obj/lattice{tag = "icon-lattice-dir-b (NORTHWEST)"; icon_state = "lattice-dir-b"; dir = 9},/turf/space,/area)
@@ -1818,7 +1818,7 @@
"aIX" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/crew_quarters/fitness)
"aIY" = (/obj/machinery/camera{c_tag = "Fitness Room"; dir = 0},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/crew_quarters/fitness)
"aIZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/machinery/computer/arcade,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/crew_quarters/fitness)
-"aJa" = (/turf/simulated/floor/plating,/area/station/hallway/primary/starboard)
+"aJa" = (/turf/simulated/floor/plating,/area/station/hallway/primary/east)
"aJb" = (/obj/machinery/computer/secure_data/detective_computer,/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aJc" = (/obj/item/reagent_containers/food/drinks/bottle/bojackson{desc = "One of my best friends. He's seen me through a lot of trouble. I need him just as much as I need my hat and coat."; name = "Ol' Scotch"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aJd" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
@@ -1834,20 +1834,20 @@
"aJn" = (/obj/stool/chair/comfy{tag = "icon-chair_comfy (WEST)"; icon_state = "chair_comfy"; dir = 8},/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "caution_north"},/area/bee_trader)
"aJo" = (/obj/shrub,/obj/machinery/light/small,/turf/simulated/shuttle/floor{icon = 'icons/turf/floors.dmi'; icon_state = "caution_north"},/area/bee_trader)
"aJp" = (/obj/lattice{tag = "icon-lattice-dir (NORTHEAST)"; icon_state = "lattice-dir"; dir = 5},/obj/decal/fakeobjects/pipe{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/space,/area)
-"aJq" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aJr" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aJs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aJt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aJq" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aJr" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aJs" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aJt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aJu" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/robotics)
"aJv" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/medical/robotics)
"aJw" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/medical/robotics)
"aJx" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/medical/robotics)
"aJy" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/medical/robotics)
"aJz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/medical/robotics)
-"aJA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/port)
-"aJB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/port)
-"aJD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aJA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/west)
+"aJB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/west)
+"aJD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aJE" = (/turf/simulated/wall/r_wall,/area/station/engine/hotloop)
"aJF" = (/obj/lattice,/obj/grille/steel,/turf/space,/area)
"aJG" = (/turf/simulated/wall/r_wall,/obj/cable,/obj/structure/girder,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area)
@@ -1859,7 +1859,7 @@
"aJM" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/crew_quarters/fitness)
"aJN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/crew_quarters/fitness)
"aJO" = (/obj/machinery/door/window/westright,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/crew_quarters/fitness)
-"aJP" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
+"aJP" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
"aJQ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aJR" = (/turf/simulated/floor{icon_state = "carpetNW"},/area/station/security/detectives_office)
"aJS" = (/obj/table/woodentable{dir = 9},/obj/item/hand_labeler,/obj/item/device/audio_log{pixel_x = 3; pixel_y = -3},/turf/simulated/floor{icon_state = "carpetN"},/area/station/security/detectives_office)
@@ -1872,7 +1872,7 @@
"aJZ" = (/turf/simulated/floor/grid,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aKa" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aKb" = (/turf/simulated/shuttle/wall{icon_state = "wall3_space"},/area/bee_trader)
-"aKc" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aKc" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aKd" = (/obj/landmark/start{name = "Roboticist"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/medical/robotics)
"aKe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{tag = "icon-caution_east (WEST)"; icon_state = "caution_east"; dir = 8},/area/station/medical/robotics)
"aKf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/submachine/cargopad{name = "Robotics Pad"},/turf/simulated/floor,/area/station/medical/robotics)
@@ -1887,8 +1887,8 @@
"aKo" = (/obj/decal/boxingropeenter{dir = 4; icon_state = "ringrope"; pixel_x = 0; tag = "icon-ringrope (EAST)"},/obj/stool,/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aKp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/fitness)
"aKq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/westleft,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/fitness)
-"aKr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aKs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aKr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aKs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/east)
"aKt" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1485; name = "Station Intercom (Security)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aKu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "carpetSW"},/area/station/security/detectives_office)
"aKv" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table/woodentable{dir = 10},/obj/deskclutter,/obj/machinery/light/lamp/green,/turf/simulated/floor{icon_state = "carpetS"},/area/station/security/detectives_office)
@@ -1918,7 +1918,7 @@
"aKT" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/fitness)
"aKU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/fitness)
"aKV" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
-"aKW" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/starboard)
+"aKW" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/east)
"aKX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aKY" = (/turf/simulated/floor{icon_state = "carpetSW"},/area/station/security/detectives_office)
"aKZ" = (/turf/simulated/floor{icon_state = "carpetSE"},/area/station/security/detectives_office)
@@ -1935,8 +1935,8 @@
"aLk" = (/obj/stool/bed,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aLl" = (/obj/secure_closet/medical2,/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aLm" = (/obj/stool/bed,/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
-"aLn" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/port)
-"aLo" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aLn" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/west)
+"aLo" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aLp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/engine/vacuum,/area/station/engine/hotloop)
"aLq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/engine/vacuum,/area/station/engine/hotloop)
"aLr" = (/turf/simulated/wall,/area/station/engine/hotloop)
@@ -1950,9 +1950,9 @@
"aLz" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/crew_quarters/fitness)
"aLA" = (/obj/stool,/obj/decal/boxingropeenter{dir = 8; icon_state = "ringrope"; pixel_x = 0; tag = "icon-ringrope (WEST)"},/turf/simulated/floor{icon_state = "boxing"},/area/station/crew_quarters/fitness)
"aLB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{dir = 0; pixel_x = 27},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/fitness)
-"aLC" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/starboard)
-"aLD" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/starboard)
-"aLE" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/starboard)
+"aLC" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/east)
+"aLD" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/east)
+"aLE" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/east)
"aLF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/security/detectives_office)
"aLG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Detective"; req_access_txt = "4"},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
"aLH" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "grimy"},/area/station/security/detectives_office)
@@ -1968,7 +1968,7 @@
"aLR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aLS" = (/obj/machinery/door/window/westleft{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aLT" = (/obj/machinery/camera{c_tag = "Medbay Cell #2"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
-"aLU" = (/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
+"aLU" = (/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
"aLV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/engine/vacuum,/area/station/engine/hotloop)
"aLW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/power/data_terminal,/obj/machinery/networked/test_apparatus/gas_sensor{setup_tag = "ENGINE"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/engine/vacuum,/area/station/engine/hotloop)
"aLX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine/vacuum,/area/station/engine/hotloop)
@@ -1991,17 +1991,17 @@
"aMo" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/decal/cleanable/cobweb,/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/engine/gas)
"aMp" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/engine/gas)
"aMq" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/engine/gas)
-"aMr" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/starboard)
-"aMs" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/starboard)
-"aMt" = (/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/hallway/primary/starboard)
-"aMu" = (/turf/simulated/floor{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/station/hallway/primary/starboard)
+"aMr" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/east)
+"aMs" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/east)
+"aMt" = (/turf/simulated/floor{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/station/hallway/primary/east)
+"aMu" = (/turf/simulated/floor{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/station/hallway/primary/east)
"aMv" = (/turf/simulated/wall/r_wall,/area/station/security/detectives_office)
"aMw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area/station/turret_protected/ai_upload{name = "AI Module Storage"})
"aMx" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/card/id/captains_spare,/obj/item/pinpointer,/obj/item/hand_tele,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/captain)
"aMy" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/machinery/recharger{pixel_y = 3},/obj/item/storage/photo_album{pixel_y = -10},/obj/item/camera_test,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/captain)
"aMz" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/captain)
-"aMA" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aMB" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aMA" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aMB" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aMC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/medical/medbay)
"aMD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/item/port_a_medbay_remote,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aME" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
@@ -2030,8 +2030,8 @@
"aNb" = (/obj/machinery/light,/turf/simulated/floor/plating,/area/station/crew_quarters/fitness)
"aNc" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/crew_quarters/fitness)
"aNd" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/clothing/gloves/boxing,/obj/item/clothing/gloves/boxing,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/black,/turf/simulated/floor,/area/station/crew_quarters/fitness)
-"aNe" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aNf" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aNe" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aNf" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aNg" = (/turf/simulated/wall/r_wall,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aNh" = (/obj/item/reagent_containers/food/drinks/bottle/thegoodstuff,/obj/shrub/captainshrub{pixel_y = 9},/obj/machinery/door/window/southleft{pixel_y = 2; req_access_txt = "20"},/turf/simulated/floor,/area/station/crew_quarters/captain)
"aNi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/crew_quarters/captain)
@@ -2095,8 +2095,8 @@
"aOo" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/lattice{tag = "icon-lattice-dir (NORTHEAST)"; icon_state = "lattice-dir"; dir = 5},/turf/space,/area)
"aOp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aOq" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aOr" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"aOs" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aOr" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"aOs" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aOt" = (/obj/machinery/light_switch{name = "W light switch"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Head of Research's Office"; dir = 4},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aOu" = (/obj/landmark/start{name = "Chief Engineer"},/obj/stool,/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aOv" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/eva{name = "Chief Engineer's Office"})
@@ -2111,7 +2111,7 @@
"aOE" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aOF" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/table,/obj/bedsheetbin,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aOG" = (/obj/stool/bed,/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
-"aOH" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
+"aOH" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
"aOI" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 6},/obj/machinery/meter,/obj/machinery/door_control{id = "combustion"; name = "Combustion Chamber Vent"; pixel_y = 28},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aOJ" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aOK" = (/obj/machinery/atmospherics/pipe/simple/insulated{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
@@ -2131,7 +2131,7 @@
"aOY" = (/obj/machinery/atmospherics/pipe/manifold{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4; level = 2},/turf/simulated/floor/plating,/area/station/engine/core)
"aOZ" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor{icon_state = "bot"},/area/station/engine/gas)
"aPa" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/camera{c_tag = "Inner Maintenance"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aPb" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aPb" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aPc" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/eva{name = "Chief Engineer's Office"})
"aPd" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/eva{name = "Chief Engineer's Office"})
"aPe" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "black"; tag = "icon-dark"},/area/station/crew_quarters/captain)
@@ -2165,9 +2165,9 @@
"aPG" = (/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/engine,/area/station/engine/core)
"aPH" = (/obj/table,/obj/item/storage/firstaid/toxin,/obj/item/wrench,/obj/item/device/analyzer,/obj/item/device/transfer_valve,/obj/item/device/transfer_valve,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/gas)
"aPI" = (/obj/disposalpipe/segment,/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor{icon_state = "bot"},/area/station/engine/gas)
-"aPJ" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aPK" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security Hallway"; location = "Bridge Hallway"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aPL" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aPJ" = (/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aPK" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security Hallway"; location = "Bridge Hallway"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aPL" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aPM" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/eva{name = "Chief Engineer's Office"})
"aPN" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aPO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access = null; req_access_txt = "19"},/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/engine/eva{name = "Chief Engineer's Office"})
@@ -2188,12 +2188,12 @@
"aQd" = (/obj/table,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aQe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "medbay"; name = "mail chute-'Medbay'"},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aQf" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aQg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
-"aQh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aQi" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aQg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
+"aQh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aQi" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aQj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aQk" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aQl" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/port)
+"aQl" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/west)
"aQm" = (/obj/machinery/atmospherics/pipe/simple/insulated{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aQn" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aQo" = (/obj/machinery/atmospherics/pipe/simple/insulated{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
@@ -2216,9 +2216,9 @@
"aQF" = (/obj/machinery/camera{c_tag = "Inner Maintenance Starboard Airlock"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aQG" = (/obj/machinery/door/firedoor/border_only,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aQH" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aQI" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aQJ" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aQK" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aQI" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aQJ" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aQK" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "starboard blast"; name = "Starboard Lockdown Doors"; opacity = 0; req_access_txt = "99"},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aQL" = (/turf/simulated/wall,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aQM" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aQN" = (/turf/simulated/floor{icon_state = "carpetNW"},/area/station/bridge)
@@ -2227,7 +2227,7 @@
"aQQ" = (/turf/simulated/floor{icon_state = "carpetNE"},/area/station/bridge)
"aQR" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aQS" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aQT" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aQT" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aQU" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/medical/medbay)
"aQV" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aQW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
@@ -2237,11 +2237,11 @@
"aRa" = (/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Medbay Lobby"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aRb" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aRc" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aRd" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aRd" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aRe" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aRf" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aRg" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/engine/substation/port)
-"aRh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/substation/port)
+"aRf" = (/obj/machinery/power/monitor,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aRg" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor,/area/station/engine/substation/west)
+"aRh" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/engine/substation/west)
"aRi" = (/obj/machinery/atmospherics/pipe/simple/insulated{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aRj" = (/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aRk" = (/turf/simulated/floor{tag = "icon-corner_nwest (WEST)"; icon_state = "corner_nwest"; dir = 8},/area/station/engine/hotloop)
@@ -2259,7 +2259,7 @@
"aRw" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/machinery/atmospherics/pipe/simple/junction{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/engine/coldloop)
"aRx" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/space,/area)
"aRy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/space,/area)
-"aRz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aRz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/east)
"aRA" = (/obj/secure_closet/engineering_chief,/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aRB" = (/obj/table,/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_y = 11},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 4},/turf/simulated/floor,/area/station/engine/eva{name = "Chief Engineer's Office"})
"aRC" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/engine/eva{name = "Chief Engineer's Office"})
@@ -2274,8 +2274,8 @@
"aRL" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aRM" = (/obj/machinery/door/window/westright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aRN" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aRO" = (/obj/landmark/start{name = "Engineer"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aRP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/port)
+"aRO" = (/obj/landmark/start{name = "Engineer"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aRP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/west)
"aRQ" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/storage/firstaid/fire,/obj/item/wrench,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/item/chem_grenade/firefighting,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/engine/hotloop)
"aRR" = (/obj/machinery/atmospherics/portables_connector{name = "Mixing Port"},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/engine/hotloop)
"aRS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/engine/hotloop)
@@ -2296,8 +2296,8 @@
"aSh" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/east,/obj/window/reinforced/south,/obj/machinery/atmospherics/pipe/simple/junction{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/turf/simulated/floor/plating,/area/station/engine/coldloop)
"aSi" = (/obj/lattice{tag = "icon-lattice-dir-b (SOUTHWEST)"; icon_state = "lattice-dir-b"; dir = 10},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/space,/area)
"aSj" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/space,/area)
-"aSk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aSl" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aSk" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aSl" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aSm" = (/turf/simulated/wall/r_wall,/area/station/bridge)
"aSn" = (/turf/simulated/wall,/area/station/bridge)
"aSo" = (/turf/simulated/wall,/area/station/crew_quarters/captain)
@@ -2313,10 +2313,10 @@
"aSy" = (/obj/machinery/door/window/westleft{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aSz" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aSA" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aSB" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
-"aSC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aSD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/substation/port)
-"aSE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/port)
+"aSB" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
+"aSC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aSD" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/station/engine/substation/west)
+"aSE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/west)
"aSF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area)
"aSG" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aSH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
@@ -2345,8 +2345,8 @@
"aTe" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area)
"aTf" = (/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area)
"aTg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/wall/r_wall,/area)
-"aTh" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/starboard)
-"aTi" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"aTh" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/east)
+"aTi" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/hallway/primary/east)
"aTj" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = null; req_access_txt = "19"},/turf/simulated/floor,/area/station/bridge)
"aTk" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/bridge)
"aTl" = (/obj/machinery/camera{c_tag = "Bridge Entrance"; dir = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/bridge)
@@ -2358,15 +2358,15 @@
"aTr" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "carpet"},/area/station/bridge)
"aTs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpetE"},/area/station/bridge)
"aTt" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer3/generic/secure_data{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aTu" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aTu" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aTv" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aTw" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aTx" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aTy" = (/obj/machinery/camera{c_tag = "Port Hallway Center"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
+"aTy" = (/obj/machinery/camera{c_tag = "Port Hallway Center"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
"aTz" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Inner Maintenance Port"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aTA" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aTB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/port)
-"aTC" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Port Electrical Substation"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/port)
+"aTB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/west)
+"aTC" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Port Electrical Substation"; dir = 8},/turf/simulated/floor,/area/station/engine/substation/west)
"aTD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area)
"aTE" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aTF" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor,/area/station/engine/hotloop)
@@ -2395,12 +2395,12 @@
"aUc" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
"aUd" = (/obj/structure/girder,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area)
"aUe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall,/area)
-"aUf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/starboard)
-"aUg" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/machinery/camera{c_tag = "Starboard Electrical Substation"; dir = 4},/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aUh" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aUf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/substation/east)
+"aUg" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/machinery/camera{c_tag = "Starboard Electrical Substation"; dir = 4},/turf/simulated/floor,/area/station/engine/substation/east)
+"aUh" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/east)
"aUi" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aUj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Starboard Hallway Center"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aUk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aUj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Starboard Hallway Center"; c_tag_order = 999; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aUk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aUl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = null; req_access_txt = "19"},/turf/simulated/floor,/area/station/bridge)
"aUm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/bridge)
"aUn" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window/eastright{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/bridge)
@@ -2418,9 +2418,9 @@
"aUz" = (/obj/machinery/door/window/southright{name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aUA" = (/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aUB" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Cafeteria"; location = "Medical Hallway"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aUC" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aUD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/engine/substation/port)
-"aUE" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal,/turf/simulated/floor,/area/station/engine/substation/port)
+"aUC" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aUD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/engine/substation/west)
+"aUE" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal,/turf/simulated/floor,/area/station/engine/substation/west)
"aUF" = (/obj/closet/firecloset,/turf/simulated/floor{tag = "icon-caution_south"; icon_state = "caution_south"},/area/station/engine/hotloop)
"aUG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/hotloop)
"aUH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/hotloop)
@@ -2441,8 +2441,8 @@
"aUW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/engine/coldloop)
"aUX" = (/obj/lattice{tag = "icon-lattice-dir-b (NORTHEAST)"; icon_state = "lattice-dir-b"; dir = 5},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/space,/area)
"aUY" = (/obj/lattice,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/space,/area)
-"aUZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aVa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aUZ" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/station/engine/substation/east)
+"aVa" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light_switch{name = "E light switch"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/east)
"aVb" = (/obj/machinery/camera{c_tag = "Inner Maintenance Starboard"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aVc" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/bridge)
"aVd" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/bridge)
@@ -2456,7 +2456,7 @@
"aVl" = (/obj/table/reinforced{dir = 9; icon_state = "reinf_tabledir"; tag = "icon-reinf_tabledir (SOUTHWEST)"},/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/reagent_containers/hypospray,/obj/item/clothing/glasses/healthgoggles,/obj/item/clothing/glasses/healthgoggles,/obj/item/clothing/glasses/healthgoggles,/obj/item/clothing/glasses/healthgoggles,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aVm" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (NORTH)"; icon_state = "reinf_tabledir"; dir = 1},/obj/item/reagent_containers/glass/beaker/antitox,/obj/item/reagent_containers/glass/beaker/brute,/obj/item/reagent_containers/glass/beaker/burn,/obj/item/reagent_containers/glass/beaker/epinephrine,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aVn" = (/obj/table{dir = 5; icon_state = "tabledir"},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aVo" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/port)
+"aVo" = (/obj/machinery/power/smes{charge = 5e+006; chargelevel = 5000; chargemode = 0; online = 1; output = 2500; tag = ""},/turf/simulated/floor,/area/station/engine/substation/west)
"aVp" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Hot Loop Gas Supply 1"},/turf/simulated/floor{icon_state = "fullred"; tag = "icon-dark"},/area/station/engine/hotloop)
"aVq" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/hotloop)
"aVr" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor,/area/station/engine/hotloop)
@@ -2474,10 +2474,10 @@
"aVD" = (/obj/machinery/camera{c_tag = "autotag"; dir = 9; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/obj/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/engine/core)
"aVE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Engineering Intercom"; pixel_x = -28; pixel_y = 0},/obj/crate/furnacefuel,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/coldloop)
"aVF" = (/turf/simulated/wall,/area/station/engine/coldloop)
-"aVG" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aVH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aVG" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/substation/east)
+"aVH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/substation/east)
"aVI" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aVJ" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/starboard)
+"aVJ" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/east)
"aVK" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/bridge)
"aVL" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/table,/turf/simulated/floor,/area/station/bridge)
"aVM" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/data_terminal,/obj/machinery/computer3/generic/secure_data,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/bridge)
@@ -2491,8 +2491,8 @@
"aVU" = (/obj/stool/chair{dir = 4},/obj/landmark/start{name = "Medical Doctor"},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aVV" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/machinery/door/window/eastleft{name = "Pharmacy"; req_access_txt = "5"},/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aVW" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/inner)
-"aVX" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/substation/port)
-"aVY" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/port)
+"aVX" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/substation/west)
+"aVY" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor,/area/station/engine/substation/west)
"aVZ" = (/obj/machinery/atmospherics/portables_connector{dir = 4; name = "Hot Loop Gas Supply 2"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor{icon_state = "fullred"; tag = "icon-dark"},/area/station/engine/hotloop)
"aWa" = (/obj/machinery/atmospherics/binary/pump{dir = 4; frequency = 1225; icon_state = "intact_on"; id = "Hot Loop Gas Supply 2"; on = 1; tag = "icon-intact_on (EAST)"; target_pressure = 1000},/obj/machinery/camera{c_tag = "autotag"; dir = 1; icon_state = "camera"; name = "autoname - SS13"; tag = ""},/turf/simulated/floor,/area/station/engine/hotloop)
"aWb" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated{dir = 9},/turf/simulated/floor,/area/station/engine/hotloop)
@@ -2509,8 +2509,8 @@
"aWm" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/engine/core)
"aWn" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/engine/core)
"aWo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/crate/furnacefuel,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/coldloop)
-"aWp" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/substation/starboard)
-"aWq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aWp" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/substation/east)
+"aWq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/engine/substation/east)
"aWr" = (/obj/cable,/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aWs" = (/obj/cable,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/bridge)
"aWt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{dir = 1},/turf/simulated/floor,/area/station/bridge)
@@ -2522,7 +2522,7 @@
"aWz" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "carpetSE"},/area/station/bridge)
"aWA" = (/obj/machinery/vending/medical,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
"aWB" = (/obj/table{icon_state = "tabledir"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/glass/bottle/morphine,/turf/simulated/floor{icon_state = "white"},/area/station/medical/medbay)
-"aWC" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/port)
+"aWC" = (/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/west)
"aWD" = (/turf/simulated/floor{tag = "icon-delivery"; icon_state = "delivery"},/area/station/engine/hotloop)
"aWE" = (/obj/table{contents = newlist(); dir = 1; icon_state = "tabledir"},/obj/item/tank/air,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor{icon_state = "dark"},/area/station/engine/hotloop)
"aWF" = (/obj/securearea,/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0; dir = 10; icon_state = "intact"; tag = "icon-intact (SOUTHWEST)"},/turf/simulated/wall/r_wall,/area/station/engine/core)
@@ -2533,7 +2533,7 @@
"aWK" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/engine/core)
"aWL" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/manufacturer/gas,/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/coldloop)
"aWM" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/coldloop)
-"aWN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/starboard)
+"aWN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"},/turf/simulated/floor,/area/station/engine/substation/east)
"aWO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/bridge)
"aWP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/glass{name = "Bridge Checkpoint"; req_access_txt = "19"},/turf/simulated/floor{icon_state = "black"; tag = "icon-dark"},/area/station/bridge)
"aWQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -2551,9 +2551,9 @@
"aXc" = (/obj/machinery/sleep_console,/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aXd" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/medbay)
"aXe" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/medbay)
-"aXf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
-"aXg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/port)
-"aXh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/port)
+"aXf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
+"aXg" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/west)
+"aXh" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/west)
"aXi" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/switch_junction{dir = 1; icon_state = "pipe-sj2"; mail_tag = "medbay"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aXj" = (/turf/simulated/wall/r_wall,/area/station/engine/engineering)
"aXk" = (/obj/table/woodentable{dir = 5},/obj/deskclutter,/obj/item/paper_bin,/obj/item/pen,/obj/item/paper/engine,/obj/item/clipboard,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/engine/engineering)
@@ -2572,14 +2572,14 @@
"aXx" = (/obj/reagent_dispensers/fueltank,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aXy" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aXz" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aXA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aXB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aXA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/east)
+"aXB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aXC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/bridge)
"aXD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/vehicle/segway,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aXE" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aXF" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"aXF" = (/obj/machinery/door/firedoor/border_only,/obj/disposalpipe/segment,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
"aXG" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/medical/medbay)
-"aXH" = (/obj/joeq/spooky{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
+"aXH" = (/obj/joeq/spooky{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
"aXI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aXJ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aXK" = (/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/table/woodentable{tag = "icon-woodentable (SOUTHEAST)"; icon_state = "woodentable"; dir = 6},/obj/machinery/networked/printer{print_id = "Engineering"},/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/cable,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/engine/engineering)
@@ -2596,15 +2596,15 @@
"aXV" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/engine/coldloop)
"aXW" = (/obj/machinery/atmospherics/portables_connector{dir = 8; name = "Cold Loop Gas Supply 1"},/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/engine/coldloop)
"aXX" = (/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 10},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"aXY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"aXZ" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "bridge"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"aXY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/station/hallway/primary/east)
+"aXZ" = (/obj/disposalpipe/switch_junction{dir = 2; icon_state = "pipe-sj2"; mail_tag = "bridge"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"aYa" = (/obj/disposalpipe/segment{tag = "icon-pipe-s (EAST)"; icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/r_wall,/area/station/bridge)
"aYb" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/mail{mail_tag = "bridge"; name = "mail chute-'Bridge'"},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aYc" = (/obj/machinery/camera{c_tag = "Bridge Aft"; dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aYd" = (/obj/machinery/power/data_terminal,/obj/cable,/obj/machinery/computer3/generic/communications{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
-"aYe" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYf" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/port)
-"aYg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/port)
+"aYe" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYf" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/west)
+"aYg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/west)
"aYh" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/engine/engineering)
"aYi" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/engineering)
"aYj" = (/obj/landmark/start{name = "Engineer"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/engineering)
@@ -2619,7 +2619,7 @@
"aYs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/engineering{name = "Cold Loop Equipment Room"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "delivery"},/area/station/engine/coldloop)
"aYt" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{dir = 5; icon_state = "intact"; level = 2; tag = "icon-intact (NORTHEAST)"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/coldloop)
"aYu" = (/obj/machinery/atmospherics/portables_connector{dir = 8; name = "Cold Loop Gas Supply 2"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-fullblue"; icon_state = "fullblue"},/area/station/engine/coldloop)
-"aYv" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"aYv" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/east)
"aYw" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/machinery/camera{c_tag = "Bridge"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aYx" = (/obj/cable,/obj/machinery/computer/bank_data{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aYy" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -2628,11 +2628,11 @@
"aYB" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/machinery/light,/obj/item/wrapping_paper,/obj/item/wirecutters,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aYC" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/machinery/recharger{pixel_y = 3},/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"aYD" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/bridge)
-"aYE" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYF" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aYG" = (/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aYH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/cobweb,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aYI" = (/obj/machinery/camera{c_tag = "Kitchen"},/obj/decal/cleanable/cobweb2,/obj/decal/cleanable/dirt,/obj/decal/cleanable/robot_debris,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/port)
+"aYE" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYF" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aYG" = (/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aYH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/cobweb,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aYI" = (/obj/machinery/camera{c_tag = "Kitchen"},/obj/decal/cleanable/cobweb2,/obj/decal/cleanable/dirt,/obj/decal/cleanable/robot_debris,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/west)
"aYJ" = (/turf/simulated/floor{dir = 10; icon_state = "yellow"; tag = "icon-yellow (SOUTHWEST)"},/area/station/engine/engineering)
"aYK" = (/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/engine/engineering)
"aYL" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/obj/machinery/light,/obj/table/woodentable{dir = 9},/obj/machinery/recharger,/turf/simulated/floor{icon_state = "yellow"; tag = "icon-yellow"},/area/station/engine/engineering)
@@ -2652,13 +2652,13 @@
"aYZ" = (/obj/machinery/door/airlock/command{name = "Head Office"; req_access = null; req_access_txt = "19"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-black (NORTH)"; icon_state = "black"; dir = 1},/area/station/crew_quarters/heads)
"aZa" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/space,/area)
"aZb" = (/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/lattice{tag = "icon-lattice-dir"; icon_state = "lattice-dir"; dir = 2},/turf/space,/area)
-"aZc" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZd" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZg" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/port)
-"aZh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/port)
-"aZi" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/port)
+"aZc" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZd" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZe" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZg" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/maintenance/west)
+"aZh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/hallway/primary/west)
+"aZi" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/west)
"aZj" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aZk" = (/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"aZl" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/wall/r_wall,/area/station/engine/engineering)
@@ -2687,23 +2687,23 @@
"aZI" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/computer/ATM{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/heads)
"aZJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/crew_quarters/heads)
"aZK" = (/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/lattice{tag = "icon-lattice-dir (EAST)"; icon_state = "lattice-dir"; dir = 4},/turf/space,/area)
-"aZL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZN" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/space_heater,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/port)
-"aZQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/port)
-"aZR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/port)
-"aZS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/port)
-"aZT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hallway/primary/port)
-"aZU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"aZL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZM" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZN" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/space_heater,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/west)
+"aZQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/west)
+"aZR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light,/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/west)
+"aZS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/station/hallway/primary/west)
+"aZT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/station/hallway/primary/west)
+"aZU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"aZV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/engine/engineering)
"aZW" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering,/turf/simulated/floor{tag = "icon-caution_north (WEST)"; icon_state = "caution_north"; dir = 8},/area/station/engine/engineering)
"aZX" = (/obj/securearea{tag = "icon-space"; name = "VACUUM AREA"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"},/turf/simulated/wall,/area/station/engine/engineering)
"aZY" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/wall/r_wall,/area/station/engine/engineering)
-"aZZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/starboard)
-"baa" = (/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"bab" = (/obj/disposalpipe/segment,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/starboard)
+"aZZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/east)
+"baa" = (/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"bab" = (/obj/disposalpipe/segment,/obj/landmark{name = "kudzustart"},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/east)
"bac" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/PDAbox,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"bad" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/machinery/cell_charger,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
"bae" = (/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/device/timer,/turf/simulated/floor{icon_state = "dark"},/area/station/bridge)
@@ -2718,8 +2718,8 @@
"ban" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bao" = (/obj/machinery/atmospherics/pipe/simple/insulated{can_rupture = 0},/turf/simulated/wall,/area/station/engine/engineering)
"bap" = (/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0},/turf/simulated/wall,/area/station/engine/engineering)
-"baq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"bar" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/starboard)
+"baq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"bar" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/east)
"bas" = (/obj/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor,/area/station/crew_quarters/heads)
"bat" = (/obj/secure_closet/highsec,/turf/simulated/floor,/area/station/crew_quarters/heads)
"bau" = (/obj/table/woodentable{dir = 10},/obj/machinery/light/lamp,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor,/area/station/crew_quarters/heads)
@@ -2734,7 +2734,7 @@
"baD" = (/turf/simulated/wall/r_wall,/area/station/medical/research)
"baE" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/medical/research)
"baF" = (/turf/simulated/wall,/area/station/medical/research)
-"baG" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/port)
+"baG" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/west)
"baH" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"baI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"baJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -2743,18 +2743,18 @@
"baM" = (/obj/lattice{tag = "icon-lattice-dir (SOUTHWEST)"; icon_state = "lattice-dir"; dir = 10},/obj/machinery/atmospherics/pipe/simple/insulated/cold{can_rupture = 0; dir = 4},/turf/space,/area)
"baN" = (/obj/lattice{tag = "icon-lattice-dir-b (NORTHEAST)"; icon_state = "lattice-dir-b"; dir = 5},/obj/machinery/atmospherics/pipe/vent{dir = 8},/turf/space,/area)
"baO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"baP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"baQ" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"baR" = (/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"baS" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"baT" = (/turf/simulated/wall/r_wall,/area/station/maintenance/starboard)
-"baU" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"baV" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"baP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"baQ" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"baR" = (/turf/simulated/floor/plating,/area/station/maintenance/east)
+"baS" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"baT" = (/turf/simulated/wall/r_wall,/area/station/maintenance/east)
+"baU" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"baV" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/east)
"baW" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
"baX" = (/obj/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
"baY" = (/obj/disposalpipe/segment{tag = "icon-pipe-c"; icon_state = "pipe-c"; dir = 2},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
"baZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/crew_quarters/heads)
-"bba" = (/turf/simulated/wall,/area/station/maintenance/starboard)
+"bba" = (/turf/simulated/wall,/area/station/maintenance/east)
"bbb" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/research)
"bbc" = (/obj/machinery/clone_scanner,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bbd" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/data_terminal,/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
@@ -2775,16 +2775,16 @@
"bbs" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bbt" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bbu" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bbv" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbx" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bby" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbz" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbD" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bbE" = (/obj/machinery/light/small{dir = 8},/obj/decal/skeleton{desc = "The partially decomposed corpse of some poor chump."; icon = 'icons/misc/hstation.dmi'; icon_state = "body3"; name = "corpse"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bbv" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbw" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbx" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bby" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbz" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbA" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbB" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbD" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bbE" = (/obj/machinery/light/small{dir = 8},/obj/decal/skeleton{desc = "The partially decomposed corpse of some poor chump."; icon = 'icons/misc/hstation.dmi'; icon_state = "body3"; name = "corpse"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bbF" = (/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/space,/area)
"bbG" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bbH" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/stool/chair{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
@@ -2796,8 +2796,8 @@
"bbN" = (/obj/disposalpipe/segment,/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/medical/research)
"bbO" = (/turf/simulated/floor,/area/station/medical/research)
"bbP" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor,/area/station/medical/research)
-"bbQ" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/port)
-"bbR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/oil,/obj/decal/cleanable/machine_debris,/turf/simulated/floor/plating,/area/station/hallway/primary/port)
+"bbQ" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/station/hallway/primary/west)
+"bbR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/oil,/obj/decal/cleanable/machine_debris,/turf/simulated/floor/plating,/area/station/hallway/primary/west)
"bbS" = (/obj/disposalpipe/segment,/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bbT" = (/obj/machinery/camera{c_tag = "Inner Maintenance Aft Fore"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bbU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/decal/cleanable/blood/splatter{tag = "icon-floor2"; icon_state = "floor2"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -2809,14 +2809,14 @@
"bca" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bcb" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bcc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bcd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/starboard)
-"bce" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
-"bcf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "Starboard Maintenance Access"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcg" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bch" = (/obj/machinery/camera{c_tag = "Starboard Maintenance Fore"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bci" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bck" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bcd" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/east)
+"bce" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
+"bcf" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/camera{c_tag = "Starboard Maintenance Access"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcg" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bch" = (/obj/machinery/camera{c_tag = "Starboard Maintenance Fore"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bci" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bck" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bcl" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"bcm" = (/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/research)
"bcn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
@@ -2824,7 +2824,7 @@
"bcp" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/research)
"bcq" = (/obj/stool/chair,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bcr" = (/obj/stool/chair,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1445; name = "Station Intercom (Medical)"; pixel_x = 0; pixel_y = 26},/obj/landmark/halloween,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"bcs" = (/obj/machinery/camera{c_tag = "Port Hallway Aft"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/port)
+"bcs" = (/obj/machinery/camera{c_tag = "Port Hallway Aft"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/west)
"bct" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/decal/cleanable/blood/splatter{tag = "icon-gibbl2"; icon_state = "gibbl2"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bcu" = (/obj/decal/cleanable/blood/splatter{tag = "icon-floor5"; icon_state = "floor5"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bcv" = (/obj/decal/cleanable/blood/splatter{tag = "icon-floor4"; icon_state = "floor4"},/obj/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)"; icon_state = "tracks"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/inner)
@@ -2838,23 +2838,23 @@
"bcD" = (/turf/space,/obj/grille/catwalk{tag = "icon-catwalk (SOUTHWEST)"; icon_state = "catwalk"; dir = 10},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
"bcE" = (/turf/space,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille/catwalk{tag = "icon-catwalk (NORTHEAST)"; icon_state = "catwalk"; dir = 5},/turf/simulated/floor/plating/airless/catwalk{dir = 2; icon_state = "catwalk_cross"; layer = 2},/area)
"bcF" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bcG" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcH" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcI" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcJ" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcK" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcL" = (/obj/crate,/obj/item/paper{info = "is a pain in the ass to get onto your station!!! god damn
-contractor bob"; name = "your new security room"},/obj/item/clothing/head/XComHair,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bcM" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bcG" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcH" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcI" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/item/crowbar,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcJ" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcK" = (/obj/rack,/obj/item/clothing/mask/gas/emergency,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcL" = (/obj/crate,/obj/item/paper{info = "is a pain in the ass to get onto your station!!! god damn
-contractor bob"; name = "your new security room"},/obj/item/clothing/head/XComHair,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bcM" = (/obj/closet/emcloset,/turf/simulated/floor/plating,/area/station/maintenance/east)
"bcN" = (/obj/disposalpipe/segment,/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"bcO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"bcP" = (/obj/machinery/door/window/southleft{name = "Monkey Pen"; req_access_txt = "9"},/mob/living/carbon/human/monkey,/turf/simulated/floor,/area/station/medical/research)
"bcQ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/medical/research)
"bcR" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass{name = "Med-Sci"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bcS" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/research)
-"bcT" = (/turf/simulated/wall,/area/station/hallway/primary/aft)
-"bcU" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/aft)
+"bcT" = (/turf/simulated/wall,/area/station/hallway/primary/south)
+"bcU" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/hallway/primary/south)
"bcV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/maintenance/inner)
-"bcW" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/aft)
+"bcW" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/hallway/primary/south)
"bcX" = (/turf/space,/obj/grille/catwalk,/turf/simulated/floor/plating/airless/catwalk,/area)
"bcY" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless/catwalk,/area)
"bcZ" = (/obj/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/cable,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area)
@@ -2873,28 +2873,28 @@
"bdm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/research)
"bdn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/research)
"bdo" = (/obj/machinery/door/window/eastright,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime-w (WEST)"; icon_state = "floorgrime-w"; dir = 8},/area/station/medical/research)
-"bdp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/port)
-"bdq" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/port)
-"bdr" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bds" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdt" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdu" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/aft)
-"bdv" = (/obj/decal/cleanable/blood/splatter{tag = "icon-gibbl2"; icon_state = "gibbl2"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdw" = (/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdx" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bdy" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bdz" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bdA" = (/obj/submachine/ATM{pixel_x = 0; pixel_y = 32},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/door/window/southright,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"bdp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/west)
+"bdq" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/west)
+"bdr" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bds" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdt" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdu" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/hallway/primary/south)
+"bdv" = (/obj/decal/cleanable/blood/splatter{tag = "icon-gibbl2"; icon_state = "gibbl2"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdw" = (/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdx" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bdy" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bdz" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bdA" = (/obj/submachine/ATM{pixel_x = 0; pixel_y = 32},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/machinery/door/window/southright,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bdB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
"bdC" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "44"},/turf/simulated/floor,/area/station/engine/substation/pylon)
"bdD" = (/obj/grille/steel,/turf/simulated/wall/r_wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"bdE" = (/turf/simulated/floor{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/hallway/primary/aft)
-"bdF" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bdG" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bdH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"bdI" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/starboard)
-"bdJ" = (/obj/machinery/camera{c_tag = "Starboard Hallway Aft"; network = "SS13"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
-"bdK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/starboard)
+"bdE" = (/turf/simulated/floor{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/hallway/primary/south)
+"bdF" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bdG" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bdH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"bdI" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/east)
+"bdJ" = (/obj/machinery/camera{c_tag = "Starboard Hallway Aft"; network = "SS13"},/turf/simulated/floor,/area/station/hallway/primary/east)
+"bdK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/halloween,/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/east)
"bdL" = (/obj/decal/skeleton{desc = "Um. Uh. Oh dear."},/turf/simulated/floor/plating,/area/station/security/brig)
"bdM" = (/turf/simulated/floor/plating,/area/station/security/brig)
"bdN" = (/obj/stool,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/security/brig)
@@ -2914,14 +2914,14 @@
"beb" = (/obj/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bec" = (/obj/machinery/door/window/eastleft{name = "Medical Research"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bed" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"bee" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bef" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"beg" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bee" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bef" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"beg" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
"beh" = (/obj/critter/roach,/turf/simulated/floor/plating,/area/station/maintenance/inner)
"bei" = (/turf/simulated/wall/r_wall,/area/station/engine/substation/pylon)
"bej" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 1},/turf/simulated/floor,/area/station/engine/substation/pylon)
"bek" = (/turf/simulated/wall/r_wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"bel" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Engineering Hallway"; location = "Security Hallway"},/turf/simulated/floor,/area/station/hallway/primary/starboard)
+"bel" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Engineering Hallway"; location = "Security Hallway"},/turf/simulated/floor,/area/station/hallway/primary/east)
"bem" = (/obj/machinery/sparker{id = "securitychamber"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/security/brig)
"ben" = (/obj/machinery/atmospherics/pipe/vent,/obj/stool/chair,/turf/simulated/floor/plating,/area/station/security/brig)
"beo" = (/obj/machinery/camera{c_tag = "Gas Chamber"; dir = 8; network = "Gas Chamber"},/turf/simulated/floor/plating,/area/station/security/brig)
@@ -2941,10 +2941,10 @@
"beC" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/medical/research)
"beD" = (/obj/machinery/door/window/eastright{name = "Medical Research"; req_access_txt = "9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"beE" = (/obj/stool/chair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"beF" = (/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"beG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"beH" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"beI" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"beF" = (/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"beG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"beH" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
+"beI" = (/obj/machinery/light,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"beJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/decal/cleanable/blood/splatter{tag = "icon-floor4"; icon_state = "floor4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
"beK" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor,/area/station/engine/substation/pylon)
"beL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/substation/pylon)
@@ -2954,12 +2954,12 @@
"beP" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"beQ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/computer/aiupload,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"beR" = (/obj/machinery/sim/transmitter{network = "prison"},/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"beS" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/aft)
-"beT" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/aft)
-"beU" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"beV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"beW" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/starboard)
-"beX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/starboard)
+"beS" = (/turf/simulated/floor{dir = 2; icon_state = "redcorner"; tag = "icon-redcorner (NORTHEAST)"},/area/station/hallway/primary/south)
+"beT" = (/obj/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/south)
+"beU" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"beV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"beW" = (/obj/machinery/firealarm{dir = 1; layer = 3.5; pixel_y = -24},/turf/simulated/floor{tag = "icon-red"; icon_state = "red"},/area/station/hallway/primary/east)
+"beX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-red (SOUTHEAST)"; icon_state = "red"; dir = 6},/area/station/hallway/primary/east)
"beY" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; level = 2},/turf/simulated/floor/plating,/area/station/security/brig)
"beZ" = (/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/security/brig)
"bfa" = (/obj/secure_closet/brig{id = "solitary1"},/turf/simulated/floor,/area/station/security/brig)
@@ -2991,17 +2991,17 @@
"bfA" = (/turf/simulated/wall,/area/station/crew_quarters/bar)
"bfB" = (/obj/machinery/status_display,/turf/simulated/wall,/area/station/crew_quarters/bar)
"bfC" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/crew_quarters/bar)
-"bfD" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfE" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"bfD" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfE" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bfF" = (/obj/lattice{tag = "icon-lattice-dir-b (NORTH)"; icon_state = "lattice-dir-b"; dir = 1},/turf/space,/area)
"bfG" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/engine/substation/pylon)
"bfH" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_east"},/area/station/engine/substation/pylon)
"bfI" = (/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bfJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bfK" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Inner Maintenance"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bfL" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfM" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bfN" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"bfL" = (/obj/machinery/vending/cigarette,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfM" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bfN" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"bfO" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/security/main)
"bfP" = (/turf/simulated/wall/r_wall,/area/station/security/main)
"bfQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/security/main)
@@ -3019,7 +3019,7 @@
"bgc" = (/obj/cable,/obj/machinery/power/data_terminal,/obj/machinery/computer/genetics,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bgd" = (/obj/table,/obj/item/storage/firstaid/toxin,/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
"bge" = (/obj/machinery/door/airlock/maintenance{name = "Med-Sci Maintenance"; req_access_txt = "14;9"},/turf/simulated/floor{icon_state = "white"},/area/station/medical/research)
-"bgf" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bgf" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bgg" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/chem_dispenser,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bgh" = (/obj/item/reagent_containers/food/snacks/yoghurt/frozen,/obj/item/kitchen/utensil/spoon{pixel_x = 9; pixel_y = -3},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bgi" = (/obj/machinery/door/airlock{name = "Booze Storage"; req_access_txt = "25"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
@@ -3047,8 +3047,8 @@
"bgE" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bgF" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bgG" = (/obj/machinery/turret,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"bgH" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bgI" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"bgH" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bgI" = (/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"bgJ" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/station/security/main)
"bgK" = (/obj/noticeboard{pixel_y = 32},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/security/main)
"bgL" = (/obj/machinery/light{dir = 1},/obj/table,/obj/machinery/recharger{pixel_y = 3},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
@@ -3070,12 +3070,12 @@
"bhb" = (/obj/machinery/door_timer{id = "solitary2"; name = "Solitary Cell 2"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/station/security/brig)
"bhc" = (/obj/machinery/door/window/brigdoor/eastleft{id = "solitary2"; name = "Solitary Cell 2"; req_access_txt = "2"},/turf/simulated/floor,/area/station/security/brig)
"bhd" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/obj/stool,/turf/simulated/floor,/area/station/security/brig)
-"bhe" = (/turf/simulated/wall/r_wall,/area/station/maintenance/apmaint)
-"bhf" = (/obj/machinery/light/small{dir = 1},/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bhg" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bhh" = (/obj/disposalpipe/junction,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bhi" = (/obj/item/mousetrap,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bhj" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bhe" = (/turf/simulated/wall/r_wall,/area/station/maintenance/SWmaint)
+"bhf" = (/obj/machinery/light/small{dir = 1},/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bhg" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bhh" = (/obj/disposalpipe/junction,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bhi" = (/obj/item/mousetrap,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bhj" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bhk" = (/obj/machinery/door/airlock/maintenance{name = "Culinary Maintenance"; req_access_txt = "25"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bhl" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bhm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/obj/item/storage/glassbox,/obj/item/storage/glassbox,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -3085,7 +3085,7 @@
"bhq" = (/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bhr" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bhs" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "kitchen"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"bht" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"bht" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bhu" = (/obj/rack,/obj/item/clothing/mask/horse_mask,/obj/decal/cleanable/cobweb,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/market)
"bhv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/market)
"bhw" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "store2"; layer = 4; name = "Market #2"; opacity = 0; p_open = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/market)
@@ -3098,11 +3098,11 @@
"bhD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/engine/substation/pylon)
"bhE" = (/obj/lattice{tag = "icon-lattice-dir-b (NORTHEAST)"; icon_state = "lattice-dir-b"; dir = 5},/turf/space,/area)
"bhF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"bhG" = (/obj/machinery/camera{c_tag = "Aft Hallway Starboard"; c_tag_order = 999; dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bhH" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bhI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bhJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bhK" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "security"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/aft)
+"bhG" = (/obj/machinery/camera{c_tag = "Aft Hallway Starboard"; c_tag_order = 999; dir = 4},/obj/landmark{name = "kudzustart"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bhH" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bhI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bhJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bhK" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "security"},/turf/simulated/floor{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/station/hallway/primary/south)
"bhL" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/station/security/main)
"bhM" = (/obj/machinery/disposal/mail{mail_tag = "security"; name = "mail chute-'Security'"},/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/station/security/main)
"bhN" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
@@ -3124,13 +3124,13 @@
"bid" = (/obj/grille/steel,/obj/machinery/light/small{dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/security/brig)
"bie" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/secure_closet/brig{id = "solitary2"},/turf/simulated/floor,/area/station/security/brig)
"bif" = (/obj/machinery/floorflusher{id = "solitary2"},/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/station/security/brig)
-"big" = (/turf/simulated/wall,/area/station/maintenance/apmaint)
-"bih" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bii" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bij" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bik" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bil" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bim" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"big" = (/turf/simulated/wall,/area/station/maintenance/SWmaint)
+"bih" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bii" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bij" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bik" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bil" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bim" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bin" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/crew_quarters/kitchen)
"bio" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bip" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/closet/gmcloset,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -3182,10 +3182,10 @@
"bjj" = (/obj/machinery/camera/motion{c_tag = "AI Upload"; dir = 8},/turf/simulated/floor/grid,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bjk" = (/turf/simulated/wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bjl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bjm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"bjn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bjo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bjp" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bjm" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hallway/primary/south)
+"bjn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bjo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bjp" = (/obj/disposalpipe/segment,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"bjq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/security/main)
"bjr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/vending/security,/turf/simulated/floor,/area/station/security/main)
"bjs" = (/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/station/security/main)
@@ -3203,7 +3203,7 @@
"bjE" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor,/area/station/security/brig)
"bjF" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/brig)
"bjG" = (/obj/stool/bed,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/brig)
-"bjH" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bjH" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bjI" = (/obj/disposalpipe/trunk,/obj/machinery/disposal/mail{mail_tag = "kitchen"; name = "mail chute-'Kitchen'"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bjJ" = (/obj/submachine/chef_sink,/obj/item/plate,/obj/item/plate,/obj/item/reagent_containers/food/drinks/bowl,/obj/item/reagent_containers/food/drinks/bowl,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bjK" = (/obj/submachine/chef_oven,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -3214,7 +3214,7 @@
"bjP" = (/obj/landmark{name = "peststart"},/obj/stool,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bjQ" = (/obj/table/reinforced/bar{tag = "icon-bar (NORTHWEST)"; icon_state = "bar"; dir = 9},/obj/item/plate,/mob/living/carbon/human/monkey{icon_state = "muggles"; name = "Mr. Muggles"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bjR" = (/obj/table/reinforced/bar{dir = 5},/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"bjS" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"bjS" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bjT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/crew_quarters/market)
"bjU" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/crew_quarters/market)
"bjV" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/r_wall,/area/station/crew_quarters/market)
@@ -3222,8 +3222,8 @@
"bjX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/simulated/floor/plating,/area/station/crew_quarters/market)
"bjY" = (/obj/lattice{tag = "icon-lattice-dir-b (SOUTHWEST)"; icon_state = "lattice-dir-b"; dir = 10},/turf/space,/area/station/crew_quarters/market)
"bjZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{name = "AI Upload Station"; req_access_txt = "16"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"bka" = (/obj/decal/cleanable/oil,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/aft)
-"bkb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"bka" = (/obj/decal/cleanable/oil,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/south)
+"bkb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bkc" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/machinery/power/data_terminal,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/computer3/generic/secure_data,/turf/simulated/floor,/area/station/security/main)
"bkd" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/security/main)
"bke" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/security/main)
@@ -3236,10 +3236,10 @@
"bkl" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1; level = 2},/turf/simulated/floor{tag = "icon-caution_west"; icon_state = "caution_west"},/area/station/security/brig)
"bkm" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/brig)
"bkn" = (/obj/secure_closet/brig{id = "genpop2"},/turf/simulated/floor,/area/station/security/brig)
-"bko" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bkp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bkq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bkr" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bko" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bkp" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bkq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bkr" = (/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bks" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bkt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bku" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -3260,8 +3260,8 @@
"bkJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light/small{dir = 4},/obj/decal/cleanable/cobweb2,/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bkK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall/r_wall,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"bkL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/station/maintenance/inner)
-"bkM" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/aft)
-"bkN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/aft)
+"bkM" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/hallway/primary/south)
+"bkN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/south)
"bkO" = (/obj/machinery/computer/security,/turf/simulated/floor,/area/station/security/main)
"bkP" = (/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/security/main)
"bkQ" = (/obj/machinery/light,/obj/disposalpipe/segment,/obj/machinery/port_a_brig,/turf/simulated/floor,/area/station/security/main)
@@ -3291,8 +3291,8 @@
"blo" = (/obj/lattice{tag = "icon-lattice-dir (NORTH)"; icon_state = "lattice-dir"; dir = 1},/turf/space,/area/station/crew_quarters/market)
"blp" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
"blq" = (/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"blr" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"bls" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"blr" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"bls" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"blt" = (/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "1"},/turf/simulated/floor,/area/station/security/main)
"blu" = (/obj/disposalpipe/segment,/obj/decal/cleanable/rust,/turf/simulated/wall/r_wall,/area/station/security/main)
"blv" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/security/main)
@@ -3310,14 +3310,14 @@
"blH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/table/reinforced/bar{dir = 10},/obj/item/plate,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"blI" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/stool,/obj/machinery/bot/guardbot/gunner,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"blJ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"blK" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"blK" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
"blL" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor,/area/station/crew_quarters/market)
"blM" = (/turf/simulated/wall,/area/station/engine/storage)
"blN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Engineering Pylon Aft"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
"blO" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/command{name = "AI Upload Station"; req_access_txt = "16"},/turf/simulated/floor,/area/station/turret_protected/AIbasecore1{name = "Upload Station"})
-"blP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"blQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/aft)
-"blR" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/aft)
+"blP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor,/area/station/hallway/primary/south)
+"blQ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hallway/primary/south)
+"blR" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/hallway/primary/south)
"blS" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"blT" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
"blU" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
@@ -3331,11 +3331,11 @@
"bmc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/computer/security,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bmd" = (/obj/machinery/light/small{dir = 1},/obj/vehicle/segway,/obj/disposalpipe/segment,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bme" = (/obj/secure_closet/courtroom,/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
-"bmf" = (/obj/machinery/ignition_switch{id = "securitychamber"; name = "Solitary Sparker Switch"; pixel_x = -24; pixel_y = 0},/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/starboard)
-"bmg" = (/obj/machinery/computer/security/telescreen{name = "Chamber View"; network = "Gas Chamber"; pixel_y = 32},/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/station/maintenance/starboard)
-"bmh" = (/turf/simulated/floor{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/maintenance/starboard)
-"bmi" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Gas Control"; req_access_txt = "37"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bmj" = (/obj/disposalpipe/segment,/obj/securearea{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bmf" = (/obj/machinery/ignition_switch{id = "securitychamber"; name = "Solitary Sparker Switch"; pixel_x = -24; pixel_y = 0},/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/east)
+"bmg" = (/obj/machinery/computer/security/telescreen{name = "Chamber View"; network = "Gas Chamber"; pixel_y = 32},/obj/machinery/atmospherics/valve,/turf/simulated/floor,/area/station/maintenance/east)
+"bmh" = (/turf/simulated/floor{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/maintenance/east)
+"bmi" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Gas Control"; req_access_txt = "37"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bmj" = (/obj/disposalpipe/segment,/obj/securearea{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/caution{desc = "Caution! Construction Zone!"; name = "caution sign"},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bmk" = (/obj/secure_closet/fridge,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bml" = (/obj/critter/mouse/remy,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bmm" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
@@ -3343,20 +3343,20 @@
"bmo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bmp" = (/obj/stool,/obj/landmark/start{name = "Clown"},/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bmq" = (/obj/table/reinforced/bar{dir = 10},/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/clothing/head/cakehat,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"bmr" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bms" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bmt" = (/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"bmu" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Bar Exterior"},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"bmv" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
+"bmr" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bms" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bmt" = (/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"bmu" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Bar Exterior"},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"bmv" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
"bmw" = (/obj/machinery/door/window/westleft{name = "Delivery"; req_access_txt = "34"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; location = "Engineering"},/turf/simulated/floor{icon_state = "bot"},/area/station/engine/storage)
"bmx" = (/obj/machinery/door/window/eastright{dir = 4; name = "Engineering Delivery"; req_access_txt = "40"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/engine/storage)
"bmy" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/storage)
"bmz" = (/obj/closet/emcloset,/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/storage)
"bmA" = (/obj/closet/emcloset,/obj/machinery/camera{c_tag = "Engineering Storage"; dir = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/storage)
"bmB" = (/obj/machinery/light/small{dir = 1},/obj/reagent_dispensers/fueltank,/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/storage)
-"bmC" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"bmD" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
-"bmE" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/hallway/primary/aft)
+"bmC" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"bmD" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/turf/simulated/floor/plating,/area/station/hallway/primary/south)
+"bmE" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/station/hallway/primary/south)
"bmF" = (/turf/simulated/wall,/area/station/crew_quarters/courtroom)
"bmG" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
"bmH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
@@ -3367,11 +3367,11 @@
"bmM" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bmN" = (/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/disposalpipe/segment,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bmO" = (/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
-"bmP" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/starboard)
-"bmQ" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5; level = 2},/turf/simulated/floor,/area/station/maintenance/starboard)
-"bmR" = (/obj/machinery/atmospherics/portables_connector{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bmS" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bmT" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bmP" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/east)
+"bmQ" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5; level = 2},/turf/simulated/floor,/area/station/maintenance/east)
+"bmR" = (/obj/machinery/atmospherics/portables_connector{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bmS" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bmT" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bmU" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/crew_quarters/kitchen)
"bmV" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bmW" = (/obj/submachine/foodprocessor,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
@@ -3382,9 +3382,9 @@
"bnb" = (/obj/machinery/power/apc{dir = 2; name = "S APC"; pixel_y = -24},/obj/cable,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bnc" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
"bnd" = (/obj/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bar"},/area/station/crew_quarters/bar)
-"bne" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Medical Hallway"; location = "Bar Hallway"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bnf" = (/obj/decal/cleanable/machine_debris,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/aft)
-"bng" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/aft)
+"bne" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Medical Hallway"; location = "Bar Hallway"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bnf" = (/obj/decal/cleanable/machine_debris,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/hallway/primary/south)
+"bng" = (/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/south)
"bnh" = (/obj/grille/steel,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/engine/storage)
"bni" = (/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/light/small{dir = 1},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/item/sheet/steel{amount = 50},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor,/area/station/engine/storage)
"bnj" = (/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/obj/item/sheet/glass{amount = 50},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/storage)
@@ -3393,10 +3393,10 @@
"bnm" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
"bnn" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/r_wall,/area/station/engine/engineering)
"bno" = (/turf/simulated/wall/r_wall,/area/station/storage/autolathe)
-"bnp" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"bnq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bnr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bns" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bnp" = (/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"bnq" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bnr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bns" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/hallway/primary/south)
"bnt" = (/obj/machinery/door/airlock/glass{name = "Courtroom"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/crew_quarters/courtroom)
"bnu" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
"bnv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
@@ -3406,16 +3406,16 @@
"bnz" = (/obj/table/reinforced{tag = "icon-reinf_tabledir (SOUTHEAST)"; icon_state = "reinf_tabledir"; dir = 6},/obj/machinery/recharger{pixel_y = 3},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bnA" = (/obj/closet/lawcloset,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bnB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
-"bnC" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bnD" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/station/maintenance/starboard)
-"bnE" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/starboard)
-"bnF" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bnG" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bnC" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bnD" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor,/area/station/maintenance/east)
+"bnE" = (/turf/simulated/floor{tag = "icon-floorgrime"; icon_state = "floorgrime"},/area/station/maintenance/east)
+"bnF" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bnG" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bnH" = (/obj/kitchenspike,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bnI" = (/obj/table/reinforced/bar,/obj/machinery/door/window/southleft{req_access_txt = "35"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/crew_quarters/bar)
"bnJ" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/crew_quarters/bar)
-"bnK" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bnL" = (/obj/machinery/light,/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
+"bnK" = (/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bnL" = (/obj/machinery/light,/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
"bnM" = (/obj/grille/steel,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/engine/storage)
"bnN" = (/obj/table{icon_state = "tabledir"; dir = 8},/obj/item/clothing/glasses/meson,/obj/item/crowbar,/obj/item/device/t_scanner,/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/engine/storage)
"bnO" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/storage)
@@ -3428,7 +3428,7 @@
"bnV" = (/obj/machinery/camera{c_tag = "Autolathe"},/turf/simulated/floor,/area/station/storage/autolathe)
"bnW" = (/obj/table,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/storage/autolathe)
"bnX" = (/turf/simulated/wall,/area/station/storage/autolathe)
-"bnY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bnY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
"bnZ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/crew_quarters/courtroom)
"boa" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
"bob" = (/obj/stool/chair{dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/courtroom)
@@ -3438,10 +3438,10 @@
"bof" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"bog" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/security/checkpoint2)
"boh" = (/turf/simulated/wall,/area/station/security/checkpoint2)
-"boi" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Controls"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"boj" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/starboard)
-"bok" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bol" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"boi" = (/obj/machinery/door/airlock/maintenance{name = "Solitary Controls"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"boj" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/east)
+"bok" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bol" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bom" = (/obj/machinery/deep_fryer,/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"bon" = (/obj/machinery/camera{c_tag = "Kitchen South"; dir = 1},/turf/simulated/floor{tag = "icon-freezerfloor"; icon_state = "freezerfloor"},/area/station/crew_quarters/kitchen)
"boo" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/table,/obj/machinery/door/window/westleft{req_access_txt = "28"},/turf/simulated/floor,/area/station/crew_quarters/kitchen)
@@ -3479,9 +3479,9 @@
"boU" = (/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
"boV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
"boW" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
-"boX" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"boY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"boZ" = (/obj/reagent_dispensers/fueltank,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"boX" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"boY" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"boZ" = (/obj/reagent_dispensers/fueltank,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bpa" = (/obj/grille/steel,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/hangar/main)
"bpb" = (/turf/simulated/wall,/area/station/hangar/main)
"bpc" = (/obj/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 2.5; name = "VACUUM AREA"; pixel_x = 0; tag = "icon-space"},/turf/simulated/wall,/area/station/hangar/main)
@@ -3489,7 +3489,7 @@
"bpe" = (/turf/simulated/shuttle/wall{dir = 8; icon_state = "wall3_space"},/area/wizard_station)
"bpf" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/wizard_station)
"bpg" = (/turf/simulated/shuttle/wall{dir = 1; icon_state = "wall3_space"},/area/wizard_station)
-"bph" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bph" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bpi" = (/turf/simulated/wall/r_wall,/area/station/crew_quarters/kitchen)
"bpj" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hydroponics)
"bpk" = (/obj/crate,/turf/simulated/floor,/area/station/hydroponics)
@@ -3503,7 +3503,7 @@
"bps" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 2; icon_state = "grass1"; name = "astroturf"; tag = "icon-grass1"},/area/station/hydroponics)
"bpt" = (/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
"bpu" = (/obj/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/food/drinks/bowl,/turf/simulated/floor,/area/station/hydroponics)
-"bpv" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"bpv" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bpw" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/clothing/glasses/meson,/obj/item/crowbar,/obj/item/device/t_scanner,/obj/item/storage/toolbox/electrical,/turf/simulated/floor,/area/station/engine/storage)
"bpx" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/station/engine/storage)
"bpy" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/engine/storage)
@@ -3516,8 +3516,8 @@
"bpF" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/storage/autolathe)
"bpG" = (/turf/simulated/floor,/area/station/storage/autolathe)
"bpH" = (/obj/item/extinguisher{pixel_y = 8},/turf/simulated/floor,/area/station/storage/autolathe)
-"bpI" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"bpJ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bpI" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"bpJ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/station/hallway/primary/south)
"bpK" = (/obj/item/mop,/obj/item/storage/lightbox,/turf/simulated/floor,/area/station/janitor)
"bpL" = (/obj/item/mop,/obj/item/storage/lightbox/tubes,/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor,/area/station/janitor)
"bpM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/janitor)
@@ -3532,7 +3532,7 @@
"bpV" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/crew_quarters/juryroom)
"bpW" = (/obj/machinery/door/airlock/glass{name = "Rehabilitation Release"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"bpX" = (/obj/machinery/light/small{dir = 4},/obj/disposalpipe/trunk{dir = 1},/obj/disposaloutlet{desc = "An outlet for the safe release of rehabilitated individuals."; name = "rehabilitation delivery vent"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
-"bpY" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bpY" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/station/maintenance/east)
"bpZ" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
"bqa" = (/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"; tag = "icon-Stairs_alone (WEST)"},/area/station/hangar/main)
"bqb" = (/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/hangar/main)
@@ -3550,7 +3550,7 @@
"bqn" = (/obj/table,/obj/machinery/light/lamp,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bqo" = (/obj/closet/wizard,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bqp" = (/obj/machinery/vending/magivend,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"bqq" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bqq" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bqr" = (/obj/machinery/door/airlock{name = "Hydroponics Maintenance"; req_access_txt = "35"},/turf/simulated/floor/plating,/area/station/hydroponics)
"bqs" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/station/hydroponics)
"bqt" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hydroponics)
@@ -3576,8 +3576,8 @@
"bqN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/window,/turf/simulated/floor,/area/station/storage/autolathe)
"bqO" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/autolathe)
"bqP" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/autolathe)
-"bqQ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"bqR" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bqQ" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"bqR" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor,/area/station/hallway/primary/south)
"bqS" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Janitor's Closet"; dir = 4},/obj/crate/trashcart,/turf/simulated/floor,/area/station/janitor)
"bqT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/station/janitor)
"bqU" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/janitor)
@@ -3594,11 +3594,11 @@
"brf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"brg" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/storage{name = "Renovation Area"})
"brh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/wall/r_wall,/area/station/maintenance/storage{name = "Renovation Area"})
-"bri" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"brj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"brk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/starboard)
-"brl" = (/obj/machinery/door/airlock/external,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"brm" = (/obj/item/device/multitool,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bri" = (/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"brj" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"brk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/maintenance/east)
+"brl" = (/obj/machinery/door/airlock/external,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"brm" = (/obj/item/device/multitool,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
"brn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hangar/main)
"bro" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "Stairs_alone"; tag = "icon-Stairs_alone (WEST)"},/area/station/hangar/main)
"brp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/hangar/main)
@@ -3606,7 +3606,7 @@
"brr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"brs" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoormid1"; id = "hangar_main"; name = "Mechanic's Bay"; tag = "icon-bdoormid1 (NORTH)"},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"brt" = (/obj/table/woodentable{dir = 4},/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"bru" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bru" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"brv" = (/obj/table,/obj/item/paper_bin{pixel_x = -7; pixel_y = 6},/obj/item/pen,/obj/item/hand_labeler,/obj/item/screwdriver,/obj/item/reagent_containers/food/drinks/bowl,/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor,/area/station/hydroponics)
"brw" = (/obj/machinery/light,/turf/simulated/floor,/area/station/hydroponics)
"brx" = (/obj/machinery/disposal/mail{mail_tag = "hydroponics"; name = "mail chute-'Hydroponics'"},/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/station/hydroponics)
@@ -3617,29 +3617,29 @@
"brC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
"brD" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/secure_closet/hydroponics,/turf/simulated/floor,/area/station/hydroponics)
"brE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hydroponics)
-"brF" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "electronics"},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"brG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"brH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"brI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"; tag = "icon-yellowcorner (EAST)"},/area/station/hallway/primary/aft)
-"brJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"brK" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"brL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"brM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"brN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Aft Primary Hallway Midport"; dir = 9},/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/station/hallway/primary/aft)
+"brF" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj2"; mail_tag = "electronics"},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"brG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"brH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"brI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"; tag = "icon-yellowcorner (EAST)"},/area/station/hallway/primary/south)
+"brJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"brK" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"brL" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"brM" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"brN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Aft Primary Hallway Midport"; dir = 9},/obj/decal/cleanable/cobweb2,/turf/simulated/floor{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/station/hallway/primary/south)
"brO" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 8},/obj/secure_closet/engineering_stru,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
"brP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
"brQ" = (/obj/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
-"brR" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/hallway/primary/aft)
-"brS" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"brT" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"brU" = (/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/aft)
+"brR" = (/turf/simulated/floor{dir = 9; icon_state = "yellow"; tag = "icon-yellow (NORTHWEST)"},/area/station/hallway/primary/south)
+"brS" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"brT" = (/obj/machinery/light{dir = 1; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"brU" = (/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/south)
"brV" = (/obj/mopbucket,/turf/simulated/floor,/area/station/janitor)
"brW" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/obj/machinery/light,/turf/simulated/floor,/area/station/janitor)
"brX" = (/obj/closet/jcloset,/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/janitor)
"brY" = (/obj/closet/l3closet,/turf/simulated/floor,/area/station/janitor)
"brZ" = (/obj/stool,/obj/item/device/radio/intercom{pixel_y = -24},/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/chem_grenade/cleaner,/obj/item/sponge,/turf/simulated/floor,/area/station/janitor)
"bsa" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bsb" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
+"bsb" = (/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
"bsc" = (/obj/machinery/manufacturer/hangar,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bsd" = (/obj/landmark{icon_state = "x3"; name = "peststart"},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bse" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
@@ -3656,28 +3656,28 @@
"bsp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
"bsq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/secure_closet/hydroponics,/turf/simulated/floor,/area/station/hydroponics)
"bsr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/wall,/area/station/hydroponics)
-"bss" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Hydroponics"},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"bst" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"bsu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bsv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bss" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; location = "Hydroponics"},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"bst" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"bsu" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bsv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment,/turf/simulated/floor,/area/station/hallway/primary/south)
"bsw" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "W APC"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
"bsx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/landmark/start{name = "Engineer"},/turf/simulated/floor,/area/station/engine/engineering)
"bsy" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/engine/engineering)
"bsz" = (/obj/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
-"bsA" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/aft)
-"bsB" = (/obj/submachine/ATM{pixel_x = 32},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window/westleft,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bsA" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"; tag = "icon-yellow (WEST)"},/area/station/hallway/primary/south)
+"bsB" = (/obj/submachine/ATM{pixel_x = 32},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/machinery/door/window/westleft,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor,/area/station/hallway/primary/south)
"bsC" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/janitor)
"bsD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/janitor)
"bsE" = (/obj/machinery/disposal_pipedispenser,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bsF" = (/turf/simulated/wall,/area/station/maintenance/disposal)
-"bsG" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/screwdriver,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsH" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/storage/toolbox/mechanical,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsI" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/machinery/cell_charger,/obj/item/device/flashlight,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsM" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bsN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
+"bsG" = (/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/screwdriver,/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsH" = (/obj/table{icon_state = "tabledir"; dir = 2},/obj/item/storage/toolbox/mechanical,/obj/disposalpipe/segment,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsI" = (/obj/table{icon_state = "tabledir"; dir = 6},/obj/machinery/cell_charger,/obj/item/device/flashlight,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsL" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsM" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bsN" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
"bsO" = (/obj/machinery/portable_reclaimer,/turf/simulated/floor{tag = "icon-black (EAST)"; icon_state = "black"; dir = 4},/area/station/hangar/main)
"bsP" = (/obj/machinery/light/emergency,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bsQ" = (/obj/machinery/door/poddoor/blast{autoclose = 1; dir = 1; icon_state = "bdoorright1"; id = "hangar_main"; name = "Mechanic's Bay"; tag = "icon-bdoorright1 (NORTH)"},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
@@ -3686,14 +3686,14 @@
"bsT" = (/obj/grille/steel,/obj/window/crystal/reinforced/east,/obj/window/crystal/reinforced/north,/obj/window/crystal/reinforced/west,/obj/window/crystal/reinforced/south,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bsU" = (/obj/grille/steel,/obj/window/crystal/reinforced/east,/obj/window/crystal/reinforced/north,/obj/window/crystal/reinforced/south,/obj/window/crystal/reinforced/west,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bsV" = (/obj/table/woodentable{dir = 9},/obj/item/paper_bin{pixel_x = -5; pixel_y = 3},/obj/item/pen{desc = "Enchanted to write in several shades of grey!"; name = "magic pen"},/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"bsW" = (/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bsX" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bsW" = (/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bsX" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bsY" = (/obj/reagent_dispensers/watertank/big,/turf/simulated/floor,/area/station/hydroponics)
"bsZ" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/station/hydroponics)
"bta" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/station/hydroponics)
-"btb" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"btc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/aft)
-"btd" = (/obj/machinery/light,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
+"btb" = (/obj/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"btc" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating{tag = "icon-default"; icon_state = ""},/area/station/hallway/primary/south)
+"btd" = (/obj/machinery/light,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
"bte" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/monitor,/turf/simulated/floor,/area/station/engine/engineering)
"btf" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/secure_closet/engineering_welding,/turf/simulated/floor,/area/station/engine/engineering)
"btg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/secure_closet/engineering_stru,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/engineering)
@@ -3705,14 +3705,14 @@
"btm" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"btn" = (/obj/disposalpipe/segment,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bto" = (/obj/machinery/door/airlock/maintenance,/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"btp" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"btq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"btr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/starboard)
-"bts" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"btt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Starboard Maintenance Solar"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"btu" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"btv" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"btw" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"btp" = (/obj/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j2 (EAST)"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"btq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"btr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/maintenance/east)
+"bts" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"btt" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{c_tag = "Starboard Maintenance Solar"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"btu" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"btv" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"btw" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"btx" = (/obj/submachine/cargopad{name = "Pod Bay Pad"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bty" = (/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/table,/obj/item/storage/toolbox/electrical,/obj/item/crowbar,/obj/item/hand_labeler,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"btz" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
@@ -3736,12 +3736,12 @@
"btR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/engine/elect)
"btS" = (/obj/machinery/door/airlock/engineering{name = "Engineering Electronics Lab"; req_access_txt = "45"},/turf/simulated/floor,/area/station/engine/elect)
"btT" = (/turf/simulated/wall,/area/station/engine/elect)
-"btU" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"btV" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/aft)
+"btU" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"btV" = (/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"; tag = "icon-yellow (EAST)"},/area/station/hallway/primary/south)
"btW" = (/obj/machinery/door/airlock/engineering{req_access_txt = "40"},/turf/simulated/floor,/area/station/engine/engineering)
"btX" = (/obj/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/station/engine/engineering)
-"btY" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"btZ" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"btY" = (/obj/stool/chair,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"btZ" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/turf/simulated/floor,/area/station/hallway/primary/south)
"bua" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bub" = (/obj/disposalpipe/junction{icon_state = "pipe-j2"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"buc" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3751,20 +3751,20 @@
"bug" = (/obj/disposalpipe/switch_junction,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"buh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bui" = (/obj/machinery/door/airlock/maintenance,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"buj" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"buk" = (/turf/simulated/wall,/area/station/maintenance/starboardsolar)
-"bul" = (/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bum" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/starboardsolar)
-"bun" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"buo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bup" = (/obj/cable,/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
+"buj" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"buk" = (/turf/simulated/wall,/area/station/maintenance/eastsolar)
+"bul" = (/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bum" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/maintenance/eastsolar)
+"bun" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"buo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bup" = (/obj/cable,/obj/machinery/power/solar{id = "solar_starboard"; name = "Starboard Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
"buq" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bur" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bus" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/emergency{tag = "icon-ebulb1 (NORTH)"; icon_state = "ebulb1"; dir = 1},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"but" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"buu" = (/obj/machinery/bot/medbot,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"buv" = (/obj/table/woodentable{dir = 10},/obj/item/reagent_containers/food/drinks/tea/mugwort,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"buw" = (/obj/overlay{anchored = 1; density = 1; desc = "It wont budge."; icon = 'Door1.dmi'; icon_state = "o_door1"; layer = 6; name = "broken door"; opacity = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"buw" = (/obj/overlay{anchored = 1; density = 1; desc = "It wont budge."; icon = 'Door1.dmi'; icon_state = "o_door1"; layer = 6; name = "broken door"; opacity = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bux" = (/obj/disposalpipe/junction{tag = "icon-pipe-j2 (EAST)"; icon_state = "pipe-j2"; dir = 4},/turf/simulated/wall,/area/station/hydroponics)
"buy" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/hydroponics)
"buz" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/station/hydroponics)
@@ -3773,19 +3773,19 @@
"buC" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
"buD" = (/obj/disposalpipe/junction{dir = 4},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
"buE" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/engine/elect)
-"buF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"buG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/hallway/primary/aft)
-"buH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"buI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"buJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"buK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"buL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/camera{c_tag = "Aft Primary Hallway"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"buM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/aft)
-"buN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/aft)
-"buO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/cola/blue,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"buP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"buQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 6},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"buR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/aft)
+"buF" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"buG" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall/r_wall,/area/station/hallway/primary/south)
+"buH" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"buI" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"buJ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"buK" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"buL" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/light{dir = 1; pixel_x = -1},/obj/machinery/camera{c_tag = "Aft Primary Hallway"},/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"buM" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "yellow"; tag = "icon-yellow(NORTH)"},/area/station/hallway/primary/south)
+"buN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"; tag = "icon-yellowcorner (NORTH)"},/area/station/hallway/primary/south)
+"buO" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/vending/cola/blue,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"buP" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/firstaid/regular{pixel_x = -6; pixel_y = 5},/turf/simulated/floor,/area/station/hallway/primary/south)
+"buQ" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 6},/turf/simulated/floor,/area/station/hallway/primary/south)
+"buR" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/wall,/area/station/hallway/primary/south)
"buS" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"buT" = (/obj/disposalpipe/junction,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"buU" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/spook,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
@@ -3793,20 +3793,20 @@
"buW" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"buX" = (/obj/disposalpipe/segment,/turf/simulated/wall,/area/station/maintenance/disposal)
"buY" = (/obj/machinery/door/airlock/maintenance{name = "Crusher Access"; req_access_txt = "26;12"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"buZ" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bva" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bvb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Starboard Solar Control"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bvc" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/item/device/igniter,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bvd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
+"buZ" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bva" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bvb" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{c_tag = "Starboard Solar Control"},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bvc" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "N APC"; pixel_y = 24},/obj/item/device/igniter,/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bvd" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/east)
"bve" = (/obj/reagent_dispensers/foamtank,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bvf" = (/obj/machinery/vehicle/miniputt,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bvg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/vehicle/miniputt,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
"bvh" = (/turf/simulated/shuttle/wall{icon_state = "wall3_space"},/area/wizard_station)
-"bvi" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bvj" = (/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bvk" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/table,/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bvl" = (/obj/stool/chair,/obj/item/raw_material/shard/glass{tag = "icon-small"; icon_state = "small"},/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bvm" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bvi" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bvj" = (/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bvk" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/table,/obj/item/wrench,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bvl" = (/obj/stool/chair,/obj/item/raw_material/shard/glass{tag = "icon-small"; icon_state = "small"},/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bvm" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bvn" = (/obj/table,/obj/machinery/cell_charger,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
"bvo" = (/obj/machinery/rkit,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
"bvp" = (/obj/table,/obj/item/electronics/soldering,/turf/simulated/floor,/area/station/engine/elect)
@@ -3818,11 +3818,11 @@
"bvv" = (/turf/simulated/floor,/area/station/engine/elect)
"bvw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor,/area/station/engine/elect)
"bvx" = (/obj/disposalpipe/segment,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
-"bvy" = (/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bvz" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/aft)
-"bvA" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bvB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar Hallway"; location = "Engineering Hallway"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bvC" = (/obj/decal/cleanable/oil,/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bvy" = (/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bvz" = (/turf/simulated/wall/r_wall,/area/station/hallway/primary/south)
+"bvA" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bvB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar Hallway"; location = "Engineering Hallway"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bvC" = (/obj/decal/cleanable/oil,/turf/simulated/floor,/area/station/hallway/primary/south)
"bvD" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/storage/tools)
"bvE" = (/obj/machinery/door/airlock/maintenance{name = "Tool Storage"},/turf/simulated/floor,/area/station/storage/tools)
"bvF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
@@ -3836,18 +3836,18 @@
"bvN" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bvO" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bvP" = (/obj/machinery/conveyor{id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bvQ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bvR" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bvS" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bvT" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control{id = "solar_starboard"; name = "Starboard Solar Control"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"bvQ" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/camera{c_tag = "Starboard Maintenance"; dir = 6; icon_state = "camera"; tag = "icon-camera (SOUTHEAST)"},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bvR" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bvS" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bvT" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control{id = "solar_starboard"; name = "Starboard Solar Control"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"bvU" = (/obj/closet/emcloset,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bvV" = (/obj/stool/chair,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bvW" = (/turf/simulated/shuttle/wall{dir = 4; icon_state = "wall3_space"},/area/wizard_station)
-"bvX" = (/obj/rack,/obj/machinery/light/small{dir = 8},/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bvY" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bvZ" = (/obj/item/tile,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bwa" = (/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/obj/item/rods{amount = 10},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bwb" = (/obj/item/raw_material/shard/glass,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bvX" = (/obj/rack,/obj/machinery/light/small{dir = 8},/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bvY" = (/obj/landmark/halloween,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bvZ" = (/obj/item/tile,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bwa" = (/obj/grille/steel{density = 0; icon_state = "brokengrille"; tag = "icon-brokengrille"},/obj/item/rods{amount = 10},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bwb" = (/obj/item/raw_material/shard/glass,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bwc" = (/obj/machinery/door/airlock/maintenance{name = "Electronics Maintenance"; req_access_txt = "45"},/turf/simulated/floor/plating,/area/station/engine/elect)
"bwd" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/station/engine/elect)
"bwe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor,/area/station/engine/elect)
@@ -3855,13 +3855,13 @@
"bwg" = (/obj/disposalpipe/segment{dir = 4},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/station/engine/elect)
"bwh" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/station/engine/elect)
"bwi" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
-"bwj" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bwk" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bwl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/reagent_dispensers/foamtank,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/aft)
-"bwm" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bwn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/caution{desc = "Caution! Room full of death!"; name = "decompression hazard sign"},/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bwo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/aft)
-"bwp" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor,/area/station/hallway/primary/aft)
+"bwj" = (/obj/machinery/alarm{dir = 4; name = "Local Air Monitor"; pixel_x = 29},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bwk" = (/obj/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bwl" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/reagent_dispensers/foamtank,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/hallway/primary/south)
+"bwm" = (/obj/machinery/door/firedoor/border_only{dir = 8},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bwn" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/item/caution{desc = "Caution! Room full of death!"; name = "decompression hazard sign"},/turf/simulated/floor,/area/station/hallway/primary/south)
+"bwo" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/machinery/light,/turf/simulated/floor,/area/station/hallway/primary/south)
+"bwp" = (/obj/disposalpipe/switch_junction{dir = 8; icon_state = "pipe-sj1"; mail_tag = "engineering"; tag = "icon-pipe-sj1 (WEST)"},/turf/simulated/floor,/area/station/hallway/primary/south)
"bwq" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/storage/tools)
"bwr" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/station/storage/tools)
"bws" = (/obj/disposalpipe/segment{dir = 4; pixel_y = 0},/obj/table{icon_state = "tabledir"; dir = 10},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/storage/tools)
@@ -3874,12 +3874,12 @@
"bwz" = (/obj/cable,/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bwA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/disposalpipe/segment,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bwB" = (/obj/machinery/conveyor{id = "garbage"},/obj/machinery/door/poddoor{id = "disp-vent"; name = "Disposal Vents"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bwC" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bwD" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"bwE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bwF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bwG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
-"bwH" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/starboardsolar)
+"bwC" = (/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bwD" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"bwE" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bwF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bwG" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
+"bwH" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/eastsolar)
"bwI" = (/obj/closet/weldsupply,/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/station/hangar/main)
"bwJ" = (/obj/machinery/light_switch{name = "S light switch"; pixel_y = -24},/turf/simulated/floor{icon_state = "caution_east"; tag = "icon-caution_west"},/area/station/hangar/main)
"bwK" = (/obj/machinery/light,/turf/simulated/floor/shuttlebay,/area/station/hangar/main)
@@ -3889,10 +3889,10 @@
"bwO" = (/obj/table/woodentable{tag = "icon-woodentable (NORTH)"; icon_state = "woodentable"; dir = 1},/obj/item/kitchen/everyflavor_box,/obj/item/kitchen/everyflavor_box,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bwP" = (/obj/table/woodentable{dir = 5},/obj/item/reagent_containers/food/drinks/cola,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
"bwQ" = (/obj/stool/bed,/turf/simulated/shuttle/floor{icon_state = "floor5"},/area/wizard_station)
-"bwR" = (/obj/stool/bed,/obj/landmark{name = "NASSA spawn"},/obj/item/game_kit,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bwS" = (/obj/decal/skeleton{desc = "Human remains in the fittings of a Head of Personnel. Judging by the missing skull chunks, they didn't win."; icon = 'icons/misc/hstation.dmi'; icon_state = "body8"},/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bwT" = (/obj/machinery/camera{c_tag = "Assistant Lounge"; dir = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bwU" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
+"bwR" = (/obj/stool/bed,/obj/landmark{name = "NASSA spawn"},/obj/item/game_kit,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bwS" = (/obj/decal/skeleton{desc = "Human remains in the fittings of a Head of Personnel. Judging by the missing skull chunks, they didn't win."; icon = 'icons/misc/hstation.dmi'; icon_state = "body8"},/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bwT" = (/obj/machinery/camera{c_tag = "Assistant Lounge"; dir = 8},/obj/stool/chair{dir = 8},/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bwU" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
"bwV" = (/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
"bwW" = (/obj/machinery/light,/turf/simulated/floor,/area/station/engine/elect)
"bwX" = (/obj/machinery/camera{c_tag = "Electronics"; dir = 1},/turf/simulated/floor,/area/station/engine/elect)
@@ -3912,20 +3912,20 @@
"bxl" = (/obj/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bxm" = (/obj/machinery/camera{c_tag = "Waste Disposal"; dir = 9},/obj/machinery/door_control{id = "disp-vent"; name = "Disposal Vent Control"; pixel_x = 25; pixel_y = 5},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bxn" = (/obj/machinery/crusher,/obj/machinery/conveyor{id = "garbage"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"bxo" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/solar/starboard)
-"bxp" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bxq" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/cable_coil/cut,/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bxr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bxs" = (/obj/cable,/obj/item/cable_coil/cut{tag = "icon-coil1"; icon_state = "coil1"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
+"bxo" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/station/solar/east)
+"bxp" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bxq" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/item/cable_coil/cut,/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bxr" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bxs" = (/obj/cable,/obj/item/cable_coil/cut{tag = "icon-coil1"; icon_state = "coil1"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
"bxt" = (/obj/grille/steel,/obj/window/reinforced/west,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/hangar/main)
"bxu" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/hangar/main)
"bxv" = (/obj/grille/steel,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/station/hangar/main)
-"bxw" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bxx" = (/obj/machinery/vending/standard,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bxy" = (/obj/item/rods{amount = 10},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bxz" = (/obj/closet/wardrobe/grey,/turf/simulated/floor,/area/station/maintenance/apmaint)
-"bxA" = (/turf/simulated/wall,/area/station/maintenance/aft)
-"bxB" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bxw" = (/obj/reagent_dispensers/fueltank,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bxx" = (/obj/machinery/vending/standard,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bxy" = (/obj/item/rods{amount = 10},/obj/reagent_dispensers/foamtank,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bxz" = (/obj/closet/wardrobe/grey,/turf/simulated/floor,/area/station/maintenance/SWmaint)
+"bxA" = (/turf/simulated/wall,/area/station/maintenance/south)
+"bxB" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bxC" = (/obj/decal/cleanable/rust,/turf/simulated/wall,/area/station/engine/elect)
"bxD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/engine/elect)
"bxE" = (/obj/disposalpipe/segment,/obj/table{tag = "icon-tabledir (SOUTHEAST)"; icon_state = "tabledir"; dir = 6},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/gloves/yellow,/obj/item/device/t_scanner,/turf/simulated/floor,/area/station/engine/elect)
@@ -3946,15 +3946,15 @@
"bxT" = (/obj/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bxU" = (/obj/machinery/conveyor_switch{id = "garbage"},/obj/machinery/light/small{dir = 4},/obj/machinery/door_control{id = "Disposal Exit"; name = "Exterior Vent Control"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bxV" = (/obj/machinery/camera,/turf/space,/area)
-"bxW" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bxX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bxY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/apmaint)
-"bxZ" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bya" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"byb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"byc" = (/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bxW" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bxX" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bxY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/SWmaint)
+"bxZ" = (/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bya" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"byb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"byc" = (/obj/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/station/maintenance/south)
"byd" = (/obj/disposalpipe/segment,/obj/machinery/light{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/engine/elect)
-"bye" = (/obj/landmark{name = "SR Welder"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bye" = (/obj/landmark{name = "SR Welder"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"byf" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{dir = 8; name = "Local Air Monitor"; pixel_x = -29},/turf/simulated/floor/airless,/area/station/atmos)
"byg" = (/obj/stool/chair{dir = 4},/turf/simulated/floor/airless,/area/station/atmos)
"byh" = (/obj/table{icon_state = "tabledir"; dir = 10},/turf/simulated/floor/airless,/area/station/atmos)
@@ -3963,12 +3963,12 @@
"byk" = (/obj/reagent_dispensers/watertank,/turf/simulated/floor,/area/station/storage/tools)
"byl" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"bym" = (/obj/machinery/door/airlock/external{name = "Crusher Airlock"; req_access_txt = "26;12"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"byn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"byo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"byp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"byn" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"byo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"byp" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
"byq" = (/obj/disposalpipe/segment,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor,/area/station/engine/elect)
"byr" = (/obj/machinery/vending/electronics,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/engine/elect)
-"bys" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bys" = (/obj/rack,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/fire,/obj/item/clothing/mask/gas/emergency,/turf/simulated/floor/plating,/area/station/maintenance/south)
"byt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/window{dir = 2},/turf/simulated/floor/airless,/area/station/atmos)
"byu" = (/obj/machinery/door/window/southright{name = "Atmospherics Control"; req_access_txt = "46"},/turf/simulated/floor/airless,/area/station/atmos)
"byv" = (/obj/window{dir = 2},/turf/simulated/floor/airless,/area/station/atmos)
@@ -3979,11 +3979,11 @@
"byA" = (/obj/item/tank/emergency_oxygen,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"byB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"byC" = (/obj/machinery/launcher_loader,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"byD" = (/obj/item/sheet/steel{amount = 50},/turf/simulated/floor/plating,/area/station/maintenance/starboard)
-"byE" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"byF" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/starboard)
-"byG" = (/turf/simulated/wall,/area/station/maintenance/aftsolar)
-"byH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
+"byD" = (/obj/item/sheet/steel{amount = 50},/turf/simulated/floor/plating,/area/station/maintenance/east)
+"byE" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"byF" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/east)
+"byG" = (/turf/simulated/wall,/area/station/maintenance/southsolar)
+"byH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/engineering{name = "Solar Substation"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
"byI" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/station/engine/elect)
"byJ" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/station/atmos)
"byK" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/airless,/area/station/atmos)
@@ -4000,12 +4000,12 @@
"byV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"byW" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/disposalpipe/segment,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
"byX" = (/obj/machinery/mass_driver{id = "Disposal Exit"},/turf/simulated/floor/plating,/area/station/maintenance/disposal)
-"byY" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/aft)
-"byZ" = (/obj/machinery/power/apc{dir = 1; name = "Aft Solar Control APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bza" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzb" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzc" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzd" = (/obj/crate,/obj/item/weldingtool,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"byY" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/south)
+"byZ" = (/obj/machinery/power/apc{dir = 1; name = "Aft Solar Control APC"; pixel_y = 24},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bza" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1441; name = "Station Intercom (Engineering)"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzb" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzc" = (/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/obj/machinery/power/smes{chargelevel = 5000; chargemode = 0; online = 0; output = 2500; tag = ""},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzd" = (/obj/crate,/obj/item/weldingtool,/obj/item/storage/belt/utility,/turf/simulated/floor/plating,/area/station/maintenance/south)
"bze" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/airless,/area/station/atmos)
"bzf" = (/turf/simulated/floor/airless,/area/station/atmos)
"bzg" = (/turf/simulated/floor/airless{tag = "icon-floorscorched2"; icon_state = "floorscorched2"},/area/station/atmos)
@@ -4022,19 +4022,19 @@
"bzr" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/tools)
"bzs" = (/obj/machinery/camera{c_tag = "General Storage"; dir = 8},/obj/item/device/multitool{pixel_x = -7; pixel_y = 1},/obj/item/crowbar,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/tools)
"bzt" = (/obj/disposalpipe/trunk{dir = 1},/obj/disposaloutlet,/turf/simulated/floor/plating/airless,/area)
-"bzu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
+"bzu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
"bzv" = (/obj/item/cable_coil/cut,/turf/space,/area)
-"bzw" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bzx" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bzy" = (/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bzz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bzA" = (/obj/machinery/power/solar_control{id = "solar_aft"; name = "Aft Solar Control"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bzF" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bzG" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bzw" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bzx" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bzy" = (/obj/cable,/obj/cable{d2 = 4; icon_state = "0-4"; pixel_y = 0},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bzz" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bzA" = (/obj/machinery/power/solar_control{id = "solar_aft"; name = "Aft Solar Control"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzB" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzC" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzD" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{tag = "icon-term (NORTH)"; icon_state = "term"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bzF" = (/obj/machinery/door/firedoor/border_only{dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bzG" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "E APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bzH" = (/obj/machinery/light,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/airless,/area/station/atmos)
"bzI" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/airless{tag = "icon-floorscorched2"; icon_state = "floorscorched2"},/area/station/atmos)
"bzJ" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/alarm{dir = 1; name = "Local Air Monitor"; pixel_y = -29},/turf/simulated/floor/airless{tag = "icon-floorscorched1"; icon_state = "floorscorched1"},/area/station/atmos)
@@ -4049,52 +4049,52 @@
"bzS" = (/obj/machinery/light,/obj/table{icon_state = "tabledir"; dir = 9},/obj/machinery/cell_charger,/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/obj/item/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/storage/tools)
"bzT" = (/obj/table{icon_state = "tabledir"; dir = 1},/obj/item/device/radio/signaler,/obj/item/device/radio/intercom{pixel_y = -24},/obj/item/device/radio/signaler{pixel_x = 2; pixel_y = -2},/turf/simulated/floor,/area/station/storage/tools)
"bzU" = (/obj/table{icon_state = "tabledir"; dir = 5},/obj/item/device/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/igniter,/obj/item/screwdriver,/turf/simulated/floor,/area/station/storage/tools)
-"bzV" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/starboard)
-"bzW" = (/obj/cable,/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/aft)
-"bzX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bzY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/clothing/under/misc/clown,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/mask/clown_hat,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bzZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bAa" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bAb" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aftsolar)
-"bAc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAd" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bzV" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/east)
+"bzW" = (/obj/cable,/obj/machinery/power/solar{id = "solar_aft"; name = "Aft Solars"},/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/south)
+"bzX" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bzY" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/item/clothing/under/misc/clown,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/mask/clown_hat,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bzZ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bAa" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bAb" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/southsolar)
+"bAc" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAd" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAe" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bAf" = (/obj/machinery/door/firedoor/border_only{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Atmospherics Access"; req_access_txt = "46"},/turf/simulated/floor/plating,/area/station/atmos)
"bAg" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/wall,/area/station/storage/tools)
"bAh" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/station/storage/tools)
-"bAi" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/starboard)
-"bAj" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/starboard)
-"bAk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAl" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAm" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAs" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAt" = (/obj/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/starboard)
-"bAu" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAx" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bAz" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
-"bAA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAC" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAD" = (/obj/machinery/door/airlock/engineering{name = "Engineering Shuttle"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bAi" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/east)
+"bAj" = (/obj/cable,/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/station/solar/east)
+"bAk" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAl" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAm" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAn" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAo" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/firealarm{pixel_y = 24; text = "NF"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAq" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{name = "Local Air Monitor"; pixel_y = 29},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAs" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAt" = (/obj/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"; name = "solar paneling"},/area/station/solar/east)
+"bAu" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/data_terminal,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAv" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAx" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAy" = (/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bAz" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/station/solar/south)
+"bAA" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAB" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/cable,/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAC" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAD" = (/obj/machinery/door/airlock/engineering{name = "Engineering Shuttle"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bAE" = (/obj/machinery/camera,/turf/simulated/floor/plating/airless,/area)
-"bAF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAG" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAH" = (/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAK" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAM" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/aft)
-"bAN" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/aft)
-"bAO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
+"bAF" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAG" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAH" = (/obj/machinery/computer/mining_shuttle,/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAI" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAJ" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAK" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAL" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAM" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/station/solar/south)
+"bAN" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/station/maintenance/south)
+"bAO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/station/solar/south)
"bAP" = (/turf/simulated/wall/r_wall,/area/station/quartermaster/refinery)
"bAQ" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/refinery)
"bAR" = (/obj/grille/steel,/obj/window/reinforced/west{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/obj/window/reinforced/west{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/simulated/floor/plating,/area/station/quartermaster/refinery)
@@ -4102,15 +4102,15 @@
"bAT" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/north,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/refinery)
"bAU" = (/obj/decal/cleanable/cobweb,/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/quartermaster/refinery)
"bAV" = (/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/quartermaster/refinery)
-"bAW" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bAW" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bAX" = (/obj/grille/steel,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/refinery)
"bAY" = (/turf/space,/obj/grille/catwalk,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/simulated/floor/plating/airless/catwalk,/area)
"bAZ" = (/turf/space,/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area)
"bBa" = (/turf/space,/obj/grille/catwalk{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area)
-"bBb" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/aft)
+"bBb" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating,/area/station/maintenance/south)
"bBc" = (/obj/grille/steel,/obj/window/reinforced/south,/obj/window/reinforced/east,/obj/window/reinforced/west,/turf/simulated/floor/plating,/area/station/quartermaster/refinery)
"bBd" = (/obj/machinery/smelter,/turf/simulated/floor/shuttlebay{name = "reinforced plating"},/area/station/quartermaster/refinery)
-"bBe" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/aft)
+"bBe" = (/obj/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/station/solar/south)
"bBf" = (/obj/securearea{desc = ""; icon_state = "shock"; name = "Danger: High Voltage"; pixel_x = 0; tag = "icon-shock"},/turf/simulated/wall/r_wall,/area/station/quartermaster/refinery)
"bBg" = (/obj/machinery/light/small{dir = 8},/obj/item/slag_shovel,/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/quartermaster/refinery)
"bBh" = (/turf/simulated/floor{icon_state = "caution_north"; tag = "icon-caution_east"},/area/station/quartermaster/refinery)
@@ -4119,7 +4119,7 @@
"bBk" = (/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/quartermaster/refinery)
"bBl" = (/obj/stool,/turf/simulated/floor{tag = "icon-floorgrime (WEST)"; icon_state = "floorgrime"; dir = 8},/area/station/quartermaster/refinery)
"bBm" = (/obj/machinery/computer/magnet,/turf/simulated/floor/plating/airless,/area/station/quartermaster/refinery)
-"bBn" = (/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/station/solar/aft)
+"bBn" = (/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/station/solar/south)
"bBo" = (/obj/grille/catwalk{dir = 9; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 1; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 9; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 9; layer = 2},/area/mining/magnet)
"bBp" = (/obj/grille/catwalk{dir = 4},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/turf/simulated/floor/plating/airless/catwalk{dir = 4; intact = 0},/area/mining/magnet)
"bBq" = (/turf/space,/obj/grille/catwalk{dir = 5; icon_state = "catwalk_cross"},/obj/landmark/magnet_shield,/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 4; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning that demarcates where the magnetic area begins."; dir = 5; icon_state = "magwarning"; name = "Magnet Area Boundary"},/obj/securearea{desc = "A warning sign. I guess this area is dangerous."; icon_state = "magwarning2"; name = "ACTIVE MAGNET AREA"},/turf/simulated/floor/plating/airless/catwalk{dir = 5; layer = 2},/area/mining/magnet)
@@ -9179,7 +9179,7 @@
"duA" = (/obj/decal/sink,/obj/decal/cleanable/cobweb,/turf/simulated/floor{tag = "icon-cafeteria (NORTH)"; icon_state = "cafeteria"; dir = 1},/area/evilreaver/bar)
"duB" = (/obj/decal/oven,/obj/item/reagent_containers/food/snacks/cake/meat,/obj/item/crowbar,/turf/simulated/floor{tag = "icon-cafeteria (NORTH)"; icon_state = "cafeteria"; dir = 1},/area/evilreaver/bar)
"duC" = (/obj/table/woodentable{tag = "icon-woodentable (SOUTHWEST)"; icon_state = "woodentable"; dir = 10},/obj/decal/cleanable/blood,/obj/item/knife_butcher,/obj/landmark{name = "evilchef_corpse"},/obj/item/electronics/battery,/turf/simulated/floor{tag = "icon-cafeteria (NORTH)"; icon_state = "cafeteria"; dir = 1},/area/evilreaver/bar)
-"duD" = (/obj/table/woodentable,/obj/item/plate,/obj/item/skull{pixel_y = 7},/obj/item/paper{info = "W. Anckarström
22 - 10 - 2041
Nanotrasen forced us to start using monkey meat instead of space cow meat today, what the hell? monkey meat tastes awful, I know that Nanotrasen likes to cut corners, but this is going too far, how am I going to feed the crew with ape meat?!"; name = "Diary - IV"},/obj/item/paper{info = "W. Anckarström
23 - 10 - 2041
A stupid assistant tried to hack his way into my kitchen today, the electrocution killed him, if I don't get rid of his body soon, security will probably arrest me for suspected murder.. "; name = "Diary - V"},/obj/item/paper{info = "Although there are bloodstains covering the words, you seem to be able to understand some of it. W. Anc---ström
24 - 10 - 2041
I don't know why I d-- this, but it was --dly delicious and makes a nice change from money meat, I'll need to make sure nob--y finds -ut."; name = "Diary - VI"},/obj/item/paper{info = "we need more iCANTLIVEWITHOUTIT"; name = "Diary - 00"},/turf/simulated/floor{tag = "icon-cafeteria (NORTH)"; icon_state = "cafeteria"; dir = 1},/area/evilreaver/bar)
+"duD" = (/obj/table/woodentable,/obj/item/plate,/obj/item/skull{pixel_y = 7},/obj/item/paper{info = "W. Anckarstr?m
22 - 10 - 2041
Nanotrasen forced us to start using monkey meat instead of space cow meat today, what the hell? monkey meat tastes awful, I know that Nanotrasen likes to cut corners, but this is going too far, how am I going to feed the crew with ape meat?!"; name = "Diary - IV"},/obj/item/paper{info = "W. Anckarstr?m
23 - 10 - 2041
A stupid assistant tried to hack his way into my kitchen today, the electrocution killed him, if I don't get rid of his body soon, security will probably arrest me for suspected murder.. "; name = "Diary - V"},/obj/item/paper{info = "Although there are bloodstains covering the words, you seem to be able to understand some of it. W. Anc---str?m
24 - 10 - 2041
I don't know why I d-- this, but it was --dly delicious and makes a nice change from money meat, I'll need to make sure nob--y finds -ut."; name = "Diary - VI"},/obj/item/paper{info = "we need more iCANTLIVEWITHOUTIT"; name = "Diary - 00"},/turf/simulated/floor{tag = "icon-cafeteria (NORTH)"; icon_state = "cafeteria"; dir = 1},/area/evilreaver/bar)
"duE" = (/obj/stool,/turf/simulated/shuttle/floor{icon_state = "floor2"},/area/evilreaver)
"duF" = (/obj/morgue,/turf/simulated/shuttle/floor{icon_state = "floor2"},/area/evilreaver)
"duG" = (/obj/grille/steel,/obj/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/window/reinforced{tag = "icon-rwindow"; icon_state = "rwindow"; dir = 2},/turf/simulated/floor/plating,/area/evilreaver/genetics)